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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    max-width: 800px;
    width: 90%;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.game-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.player-section, .computer-section {
    flex: 1;
    min-width: 200px;
}

.vs-section {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.choice-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 15px;
    padding: 15px 25px;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.choice-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ff5252, #d63031);
}

.choice-btn:active {
    transform: translateY(-1px);
}

.choice-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.player-choice, .computer-choice {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    font-size: 1.1rem;
    font-weight: bold;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-section {
    margin-top: 30px;
}

.result {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 20px 0;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result.win {
    background: linear-gradient(45deg, #00b894, #00a085);
    color: white;
}

.result.lose {
    background: linear-gradient(45deg, #e17055, #d63031);
    color: white;
}

.result.tie {
    background: linear-gradient(45deg, #fdcb6e, #e17055);
    color: white;
}

.score {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.score-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    min-width: 120px;
}

.reset-btn {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    margin-top: 20px;
}

.reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #5f3dc4, #9775fa);
}

.reset-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .game-area {
        flex-direction: column;
    }
    
    .vs-section {
        order: 2;
    }
    
    .computer-section {
        order: 3;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .choice-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
}
