@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle at 50% 50%, #151537, #1c1436);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.container {
    text-align: center;
    background: #4c48ff;
    padding: 40px;
    border-radius: 15px;
    width: 1000px; 
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(10px);
}

.header {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon {
    width: 100px; 
    height: 100px;
}

h1 {
    font-size: 48px; 
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
}

h1 span {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0;
    color: #ffb932;
}

.tagline {
    font-size: 20px;
    margin-bottom: 25px;
    color: #ecf0f1;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn {
    padding: 20px 30px;
    font-size: 22px;
    font-weight: bold;
    color: white;
    background: #1c1436;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn:hover {
    transform: translateY(-5px);
    background: #372a61;
}

.game-screen h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.scoreboard {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.player-score, .opponent-score {
    text-align: center;
}

.stars {
    font-size: 50px; 
}

.game-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.game-icon {
    width: 120px; 
    height: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.game-icon:hover {
    transform: scale(1.2);
}

.game-icon.selected {
    animation: bounce 0.5s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.pick-message, .opponent-message {
    font-size: 22px;
    margin-top: 15px;
    color: #ecf0f1;
}

.game-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.play-again, .back-to-home {
    display: none;
}

