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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #87CEEB, #98FB98);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen {
    display: none;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.screen.active {
    display: block;
}

h1 {
    font-size: 3em;
    color: #2F4F4F;
    margin-bottom: 20px;
}

.btn {
    background: #FFD700;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.1);
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.character-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.character-card:hover {
    transform: translateY(-5px);
}

.character-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.character-card h3 {
    color: #2F4F4F;
}

.game-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.player-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #FFD700;
}

.challenge-area {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    min-height: 300px;
}

.challenge-content {
    text-align: left;
}

.challenge-question {
    font-size: 1.3em;
    margin-bottom: 20px;
}

.choice-btn {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    background: #E6E6FA;
    border: 2px solid #9370DB;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1em;
}

.choice-btn:hover {
    background: #DDA0DD;
}

.score-display {
    display: flex;
    gap: 30px;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
}

.voting-area {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
}

.voting-option {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background: #FFE4B5;
    border: 2px solid #DEB887;
    border-radius: 20px;
    cursor: pointer;
}

.voting-option.selected {
    background: #FFA500;
}

.hidden {
    display: none;
}

#results-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
}

.eliminated {
    text-decoration: line-through;
    opacity: 0.5;
}

