/* Season Personality Quiz CSS */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.app-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #f0f4f8;
}

.app-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd89b, #1992e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.app-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.begin-button, .restart-button {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2d3436;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.restart-button {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.nav-button, {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    font-weight: 600;
    color: #2d3436;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.begin-button:hover, .nav-button:hover, .restart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
}

.progress-container {
    margin-bottom: 2rem;
}

.quiz-counter {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.question-container {
}

.question {
    text-align: center;
    line-height: 1.4;
}

.answer-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.answer-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.answer-option.selected {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(254, 202, 87, 0.3));
    border-color: #feca57;
}

.nav-button {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: #2d3436;
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.result-screen {
    display: none;
    text-align: center;
}

.result-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffd89b, #3e97d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-season {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.result-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.result-traits {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem;
    backdrop-filter: blur(10px);
}

.traits-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.traits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: left;
}

.trait-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #feca57;
}

@media screen and (max-width: 480px) {
    .result-traits {
        padding: 0.5rem;
        margin: 0rem;
    }
}