* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(0, 255, 128, 0.03) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0.5; transform: translate(0, 0) scale(1); }
    33% { opacity: 0.8; transform: translate(10px, -10px) scale(1.1); }
    66% { opacity: 0.6; transform: translate(-5px, 5px) scale(0.9); }
}

.container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 100px rgba(0, 255, 255, 0.1);
    padding: 35px;
    max-width: 650px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.03) 0%, rgba(255, 0, 255, 0.03) 100%);
    border-radius: 25px;
    pointer-events: none;
}

header h1 {
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 50%, #00ff80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 2.8em;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.5)); }
}

header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.2em;
    font-weight: 300;
}

.score-board {
    margin-bottom: 35px;
}

.score {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

.player-score, .computer-score {
    text-align: center;
    position: relative;
}

.player-score h3, .computer-score h3 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 500;
}

.player-score span, .computer-score span {
    font-size: 3em;
    font-weight: 800;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    display: block;
}

.choices {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.choice-section {
    flex: 1;
}

.choice-section h4 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: 500;
}

.player-choice, .computer-choice {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(0, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.player-choice::before, .computer-choice::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffff, #ff00ff, #00ff80);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.player-choice.active::before, .computer-choice.active::before {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.player-choice span, .computer-choice span {
    font-size: 2.8em;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.vs {
    font-size: 1.8em;
    font-weight: 800;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 25px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.result {
    margin-bottom: 35px;
}

.result h3 {
    font-size: 1.6em;
    color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.result.win h3 {
    background: rgba(0, 255, 128, 0.1);
    border-color: rgba(0, 255, 128, 0.3);
    color: #00ff80;
    box-shadow: 
        inset 0 1px 0 rgba(0, 255, 128, 0.2),
        0 0 30px rgba(0, 255, 128, 0.2);
    animation: winPulse 1s ease-in-out;
}

.result.lose h3 {
    background: rgba(255, 64, 129, 0.1);
    border-color: rgba(255, 64, 129, 0.3);
    color: #ff4081;
    box-shadow: 
        inset 0 1px 0 rgba(255, 64, 129, 0.2),
        0 0 30px rgba(255, 64, 129, 0.2);
}

.result.draw h3 {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffc107;
    box-shadow: 
        inset 0 1px 0 rgba(255, 193, 7, 0.2),
        0 0 30px rgba(255, 193, 7, 0.2);
}

@keyframes winPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.choice-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 130px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.choice-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.choice-btn:hover::before {
    left: 100%;
}

.choice-btn:hover, .choice-btn:focus {
    border-color: rgba(0, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 30px rgba(0, 255, 255, 0.3);
    outline: none;
}

.choice-btn:active {
    transform: translateY(-2px) scale(0.98);
    transition: all 0.1s ease;
}

.choice-btn.selected {
    border-color: rgba(0, 255, 128, 0.8);
    background: rgba(0, 255, 128, 0.1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(0, 255, 128, 0.3),
        0 0 40px rgba(0, 255, 128, 0.4);
    animation: selectedPulse 0.6s ease-out;
}

@keyframes selectedPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.choice-btn .emoji {
    font-size: 2.8em;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.choice-btn:hover .emoji {
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
    transform: scale(1.1);
}

.choice-btn .text {
    font-size: 1.2em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.controls {
    margin-bottom: 25px;
}

.reset-btn {
    background: linear-gradient(135deg, #ff4081 0%, #ff6b6b 100%);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px 35px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 
        0 10px 30px rgba(255, 64, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.reset-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.reset-btn:hover::before {
    left: 100%;
}

.reset-btn:hover, .reset-btn:focus {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4081 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(255, 64, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 64, 129, 0.3);
    outline: none;
}

.reset-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.rules {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.rules h4 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3em;
    font-weight: 600;
}

.rules ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rules li {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.rules li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
}

.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.pulse {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(0, 255, 255, 0.5); }
    100% { transform: scale(1); }
}

.glow-cyan {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4) !important;
    animation: glowCyan 2s ease-in-out infinite alternate;
}

.glow-magenta {
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.4) !important;
    animation: glowMagenta 2s ease-in-out infinite alternate;
}

@keyframes glowCyan {
    from { box-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
    to { box-shadow: 0 0 40px rgba(0, 255, 255, 0.6); }
}

@keyframes glowMagenta {
    from { box-shadow: 0 0 20px rgba(255, 0, 255, 0.3); }
    to { box-shadow: 0 0 40px rgba(255, 0, 255, 0.6); }
}

.victory-celebration {
    animation: victoryBounce 1s ease-out, victoryGlow 2s ease-in-out infinite alternate;
}

@keyframes victoryBounce {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    75% { transform: scale(1.15) rotate(-3deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@keyframes victoryGlow {
    from { 
        box-shadow: 
            0 0 30px rgba(0, 255, 128, 0.6),
            inset 0 0 20px rgba(0, 255, 128, 0.2);
        filter: brightness(1.2);
    }
    to { 
        box-shadow: 
            0 0 60px rgba(0, 255, 128, 0.9),
            inset 0 0 30px rgba(0, 255, 128, 0.4);
        filter: brightness(1.5);
    }
}

.defeat-effect {
    animation: defeatShake 0.8s ease-in-out, defeatFade 1.5s ease-out;
}

@keyframes defeatShake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10% { transform: translateX(-10px) rotate(-2deg); }
    20% { transform: translateX(10px) rotate(2deg); }
    30% { transform: translateX(-8px) rotate(-1deg); }
    40% { transform: translateX(8px) rotate(1deg); }
    50% { transform: translateX(-6px) rotate(-0.5deg); }
    60% { transform: translateX(6px) rotate(0.5deg); }
    70% { transform: translateX(-4px) rotate(0deg); }
    80% { transform: translateX(4px) rotate(0deg); }
    90% { transform: translateX(-2px) rotate(0deg); }
}

@keyframes defeatFade {
    0% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.6; filter: brightness(0.7) saturate(0.5); }
    100% { opacity: 1; filter: brightness(1); }
}

.confetti-burst::before,
.confetti-burst::after {
    content: '🎉';
    position: absolute;
    font-size: 2em;
    animation: confettiFall 1.5s ease-out;
    pointer-events: none;
    z-index: 100;
}

.confetti-burst::before {
    top: -20px;
    left: 20%;
    animation-delay: 0s;
}

.confetti-burst::after {
    top: -20px;
    right: 20%;
    animation-delay: 0.3s;
}

@keyframes confettiFall {
    0% { 
        transform: translateY(-50px) rotate(0deg) scale(0);
        opacity: 0;
    }
    20% { 
        transform: translateY(0px) rotate(180deg) scale(1);
        opacity: 1;
    }
    100% { 
        transform: translateY(100px) rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

.score-sparkle {
    animation: sparkle 0.8s ease-out;
    position: relative;
}

.score-sparkle::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5em;
    animation: sparkleFloat 1s ease-out;
    pointer-events: none;
}

@keyframes sparkle {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); color: #00ff80; }
    100% { transform: scale(1); }
}

@keyframes sparkleFloat {
    0% { 
        transform: translateX(-50%) translateY(0) scale(0);
        opacity: 0;
    }
    50% { 
        transform: translateX(-50%) translateY(-10px) scale(1);
        opacity: 1;
    }
    100% { 
        transform: translateX(-50%) translateY(-30px) scale(0);
        opacity: 0;
    }
}

.dramatic-lose {
    animation: dramaticLose 1.2s ease-out;
}

@keyframes dramaticLose {
    0% { 
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    25% { 
        transform: scale(0.95) rotate(-2deg);
        filter: brightness(0.8) saturate(0.8);
    }
    50% { 
        transform: scale(0.9) rotate(2deg);
        filter: brightness(0.6) saturate(0.6);
    }
    75% { 
        transform: scale(0.95) rotate(-1deg);
        filter: brightness(0.8) saturate(0.8);
    }
    100% { 
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
}

.screen-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(45deg, rgba(0, 255, 128, 0.2), rgba(0, 255, 255, 0.2));
    pointer-events: none;
    z-index: 50;
    animation: flash 0.5s ease-out;
}

@keyframes flash {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.emoji-rain {
    position: fixed;
    top: -50px;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 60;
}

.emoji-rain span {
    position: absolute;
    font-size: 2em;
    animation: emojiRain 3s linear;
}

@keyframes emojiRain {
    0% { 
        transform: translateY(-50px) rotate(0deg);
        opacity: 1;
    }
    100% { 
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 15px;
        margin: 5px;
        border-radius: 15px;
    }
    
    .keyboard-hint {
        display: none !important;
    }
    
    header h1 {
        font-size: 1.8em;
        margin-bottom: 5px;
    }
    
    header p {
        font-size: 1em;
        margin-bottom: 20px;
    }
    
    .score {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .player-score span, .computer-score span {
        font-size: 2em;
    }
    
    .choices {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .choice-section h4 {
        font-size: 1em;
        margin-bottom: 10px;
    }
    
    .player-choice, .computer-choice {
        width: 60px;
        height: 60px;
    }
    
    .player-choice span, .computer-choice span {
        font-size: 2em;
    }
    
    .vs {
        margin: 0;
        transform: rotate(90deg);
        font-size: 1.2em;
    }
    
    .result h3 {
        font-size: 1.2em;
        padding: 12px;
    }
    
    .buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .choice-btn {
        min-width: calc(50% - 5px);
        max-width: 120px;
        padding: 15px 10px;
        flex: 1;
    }
    
    .choice-btn .emoji {
        font-size: 2em;
    }
    
    .choice-btn .text {
        font-size: 0.9em;
    }
    
    .rules {
        padding: 15px;
    }
    
    .rules h4 {
        font-size: 1em;
        margin-bottom: 10px;
    }
    
    .rules li {
        padding: 8px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }
    
    .container {
        padding: 12px;
        margin: 0;
        border-radius: 10px;
        min-height: calc(100vh - 10px);
    }
    
    header h1 {
        font-size: 1.6em;
    }
    
    header p {
        font-size: 0.9em;
        margin-bottom: 15px;
    }
    
    .score {
        flex-direction: row;
        gap: 10px;
        padding: 12px;
    }
    
    .player-score h3, .computer-score h3 {
        font-size: 1em;
        margin-bottom: 5px;
    }
    
    .player-score span, .computer-score span {
        font-size: 1.8em;
    }
    
    .choices {
        padding: 12px;
        gap: 12px;
    }
    
    .choice-section h4 {
        font-size: 0.9em;
        margin-bottom: 8px;
    }
    
    .player-choice, .computer-choice {
        width: 50px;
        height: 50px;
    }
    
    .player-choice span, .computer-choice span {
        font-size: 1.8em;
    }
    
    .vs {
        font-size: 1em;
    }
    
    .result h3 {
        font-size: 1em;
        padding: 10px;
    }
    
    .buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .choice-btn {
        min-width: 100%;
        max-width: none;
        padding: 12px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    
    .choice-btn .emoji {
        font-size: 1.8em;
    }
    
    .choice-btn .text {
        font-size: 1em;
        font-weight: bold;
    }
    
    .reset-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    
    .rules {
        padding: 12px;
    }
    
    .rules h4 {
        font-size: 0.9em;
        margin-bottom: 8px;
    }
    
    .rules li {
        padding: 6px;
        font-size: 0.8em;
    }
    
    .choice-btn {
        min-height: 50px;
        touch-action: manipulation;
    }
    
    .reset-btn {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .keyboard-hint {
        display: none !important;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 8px;
    }
    
    header h1 {
        font-size: 1.4em;
    }
    
    .choice-btn .emoji {
        font-size: 1.6em;
    }
    
    .choice-btn .text {
        font-size: 0.9em;
    }
    
    .player-choice, .computer-choice {
        width: 45px;
        height: 45px;
    }
    
    .player-choice span, .computer-choice span {
        font-size: 1.6em;
    }
}
