* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body, p, .screen, .container, .stat-label, .story-text, .choices, .feedback, .final-stats, .end-story {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #fff6fa;
}

h1, h2, .role-btn {
    font-family: 'Orbitron', Arial, sans-serif;
    letter-spacing: 1px;
    color: #ffe066;
}

body {
    min-height: 100vh;
    background: url('city-pixel-bg.gif') center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #fff0f6;
}

.container {
    background: rgba(40, 0, 40, 0.82);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(80, 0, 80, 0.4);
    max-width: 800px;
    width: 95%;
    backdrop-filter: blur(3px);
}

.screen {
    text-align: center;
}

.hidden {
    display: none;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.author {
    color: #ffe3f7;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

p {
    color: #fff6fa;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn {
    background: linear-gradient(90deg, #ffb3c6 0%, #b85c9e 60%, #a259c6 100%);
    color: #fff6fa;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    margin: 1rem 0;
    font-weight: bold;
    box-shadow: none;
    text-shadow: none;
}

.btn:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.04);
    background: linear-gradient(90deg, #ffb3c6 0%, #b85c9e 60%, #a259c6 100%);
    color: #fff6fa;
}

.btn:disabled {
    background: #f8bbd0;
    color: #b48ca7;
    cursor: not-allowed;
}

.character-select {
    margin: 2rem 0;
}

.character-select h3 {
    color: #ffe066;
    margin-bottom: 1rem;
}

.roles {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.role-btn, .choice-btn {
    background: linear-gradient(90deg, #ffb3c6 0%, #b85c9e 60%, #a259c6 100%);
    border: 2px solid #a259c6;
    color: #ffe066;
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: bold;
}

.role-btn:hover, .role-btn.selected, .choice-btn:hover {
    background: linear-gradient(90deg, #ffb3c6 0%, #b85c9e 60%, #a259c6 100%);
    color: #ffe066;
    border-color: #ffe066;
}

.choice-btn {
    font-size: 1.25rem;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: left;
}

.stat-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffe066;
}

.progress-bar {
    background: rgba(255, 179, 198, 0.2);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    background: linear-gradient(90deg, #ffe3f7 0%, #ffb3c6 100%);
    height: 100%;
    transition: width 0.3s ease;
}

.story-container {
    background: rgba(255, 179, 198, 0.08);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #fff6fa;
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feedback {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 179, 198, 0.08);
    text-align: left;
    color: #fff6fa;
}

.feedback.positive {
    background: rgba(255, 227, 247, 0.18);
    color: #ffe066;
}

.feedback.negative {
    background: rgba(255, 179, 198, 0.18);
    color: #ffb3c6;
}

.end-story {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 2rem 0;
    text-align: left;
    color: #fff6fa;
}

.final-stats {
    background: rgba(255, 179, 198, 0.08);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
    color: #fff6fa;
}

.final-stats h3 {
    color: #ffe066;
    margin-bottom: 1rem;
}

.question-progress {
    font-size: 1.1rem;
    color: #ffe066;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .roles {
        flex-direction: column;
    }

    .story-text {
        font-size: 1.1rem;
    }
} 