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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #f6eee1;
    color: #2C2C2C;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #374f39;
}

.logo-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #374f39;
    opacity: 0.7;
    margin-top: 5px;
}

h1 {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    color: #374f39;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-text {
    text-align: center;
    color: #374f39;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.start-screen,
.question-screen,
.result-screen {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(107, 93, 79, 0.08);
}

.btn {
    background: #374f39;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 500;
    letter-spacing: 1px;
}

.btn:hover {
    background: #2a3a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 79, 57, 0.2);
}

.progress {
    width: 100%;
    height: 4px;
    background: #E8E4DF;
    margin-bottom: 30px;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #374f39 0%, #5a7a5c 100%);
    transition: width 0.3s ease;
}

.question-number {
    color: #374f39;
    opacity: 0.7;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.question-text {
    font-size: 20px;
    color: #2C2C2C;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.5;
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.answer {
    background: white;
    border: 2px solid #d4c9b8;
    padding: 18px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #2C2C2C;
    text-align: left;
    line-height: 1.6;
}

.answer:hover {
    border-color: #374f39;
    background: #fafaf8;
    transform: translateX(5px);
}

.answer.selected {
    border-color: #374f39;
    background: #374f39;
    color: white;
}

.navigation {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-secondary {
    background: transparent;
    color: #374f39;
    border: 2px solid #374f39;
}

.btn-secondary:hover {
    background: #374f39;
    color: white;
}

.score-display {
    text-align: center;
    margin: 40px 0;
}

.score-number {
    font-size: 72px;
    font-weight: 300;
    color: #374f39;
    line-height: 1;
}

.score-label {
    font-size: 18px;
    color: #374f39;
    opacity: 0.7;
    margin-top: 10px;
    letter-spacing: 2px;
}

.score-interpretation {
    background: white;
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #374f39;
}

.score-interpretation h3 {
    color: #374f39;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.score-interpretation p {
    color: #2C2C2C;
    line-height: 1.8;
}

.themes {
    margin: 40px 0;
}

.themes h3 {
    color: #374f39;
}

.theme-item {
    margin-bottom: 25px;
}

.theme-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2C2C2C;
}

.theme-percentage {
    font-weight: 600;
    color: #374f39;
}

.theme-bar {
    width: 100%;
    height: 10px;
    background: #d4c9b8;
    border-radius: 5px;
    overflow: hidden;
}

.theme-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #374f39 0%, #5a7a5c 100%);
    transition: width 1s ease;
    border-radius: 5px;
}

.cta-section {
    background: linear-gradient(135deg, #374f39 0%, #2a3a2b 100%);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
    color: white;
}

.cta-section h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.8;
}

.btn-white {
    background: white;
    color: #374f39;
}

.btn-white:hover {
    background: #fafaf8;
    transform: translateY(-2px);
}

.hidden {
    display: none;
}

.footer {
    margin-top: 30px;
    padding: 20px 0 10px 0;
    text-align: center;
    color: #374f39;
    font-size: 13px;
    opacity: 0.8;
}

.btn-instagram {
    max-width: 260px;
    margin: 0 auto 10px auto;
    display: inline-block;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .start-screen,
    .question-screen,
    .result-screen {
        padding: 25px;
    }

    h1 {
        font-size: 26px;
    }

    .question-text {
        font-size: 18px;
    }

    .score-number {
        font-size: 56px;
    }

    .cta-section {
        padding: 30px 20px;
    }
}