:root {
    --primary: #c026d3;
    --primary-light: #f0abfc;
    --bg-gradient: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
    --card-bg: rgba(255, 255, 255, 0.8);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-gradient);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

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

.progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.question-meta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.question-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

.option-btn {
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.option-btn:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.option-btn:active {
    transform: translateY(0);
}

.option-btn.selected {
    border-color: var(--primary);
    background: #fdf4ff;
}

.actions {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-secondary {
    background: #e2e8f0;
    color: var(--text-main);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Results Component */
.results-view {
    text-align: center;
}

.chart-container {
    margin: 3rem auto;
    max-width: 650px;
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-scores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.wp-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.wp-card h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.wp-card .score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.hidden {
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .question-text {
        font-size: 1.2rem;
    }

    .wp-scores {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .wp-card {
        padding: 1rem;
    }

    .chart-container {
        padding: 0.5rem;
        margin: 1.5rem auto;
        border-radius: 20px;
    }

    .results-view .actions {
        flex-direction: column !important;
        gap: 1rem;
        align-items: center;
    }

    .results-view .actions .btn {
        margin: 0 !important;
        width: 100%;
        max-width: 300px;
        padding: 1rem;
    }
}