/* Modern Dark Theme */
:root {
    --primary: #6c5ce7;
    --secondary: #a29bfe;
    --accent: #fd79a8;
    --dark: #1a1a2e;
    --darker: #16213e;
    --light: #f1f1f1;
    --success: #00b894;
    --danger: #ff7675;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    background-color: var(--darker);
    color: var(--light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Game Intro */
.game-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.game-intro h1 {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.game-intro p {
    color: var(--secondary);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Game Area */
.game-area {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.score-board {
    border: 3px solid var(--primary);
    border-radius: 12px;
    width: 200px;
    margin: 0 auto 2rem;
    color: var(--light);
    font-size: 2.5rem;
    text-align: center;
    padding: 1rem;
    position: relative;
    font-weight: 600;
}

.badge {
    background: var(--accent);
    color: var(--darker);
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#user-label {
    left: -25px;
}

#computer-label {
    right: -30px;
}

.result {
    text-align: center;
    font-size: 1.3rem;
    margin: 2rem 0;
    min-height: 2rem;
    font-weight: 500;
}

.choices {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.choice {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(108, 92, 231, 0.1);
    border: 3px solid var(--primary);
    color: var(--primary);
}

.choice:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.choice.win {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.choice.lose {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
}

.choice.draw {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--darker);
}

#reset-btn {
    display: block;
    margin: 0 auto;
    padding: 0.8rem 1.8rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

#reset-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 121, 168, 0.3);
}

/* Minimal Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    color: var(--secondary);
    font-size: 0.9rem;
}

footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

footer a:hover {
    text-decoration: underline;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }
    
    .game-intro h1 {
        font-size: 2.2rem;
    }
    
    .game-area {
        padding: 1.5rem;
    }
    
    .choices {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .choice {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .score-board {
        width: 160px;
        font-size: 2rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    #user-label {
        left: -20px;
    }
    
    #computer-label {
        right: -25px;
    }
}