/* 🎨 SınavımHazır - Modern Website CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #4facfe;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --danger-color: #f44336;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e1e5e9;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    background: #ffffff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-img {
    width: 200px;
    height: 40px;
    margin-right: 10px;
}

/* 📱 Responsive Logo */
.logo-desktop {
    display: block;
    width: 250px;
    height: 40px;
}

.logo-mobile {
    display: none;
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.btn-header {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border-color);
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* Main Content */
.main-content {
    flex: 1;
    padding-top: 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    margin-bottom: 3rem;
    border-radius: 20px;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-desc {
    font-size: 1.2em;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255,255,255,0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-title2 {
    text-align: center;
    font-size: 1.5em;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05em;
    margin-top: -2rem;
    text-align: center;
}

.page-head {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(102,126,234,0.08), rgba(118,75,162,0.12));
    border-radius: 24px;
    border: 1px solid rgba(102,126,234,0.15);
}

.page-head__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page-eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--primary-color);
}

.page-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-head__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
}

.metric-card {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(102,126,234,0.12);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.08em;
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-hint {
    color: var(--text-light);
    font-size: 0.9rem;
}

.section-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.filters-inline {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(102,126,234,0.12);
    color: var(--primary-color);
}

.chip.muted {
    background: rgba(33, 37, 41, 0.05);
    color: var(--text-dark);
}

.chip.success {
    background: rgba(76, 175, 80, 0.12);
    color: var(--success-color);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.btn-back:hover {
    text-decoration: underline;
}

.exam-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(102,126,234,0.12);
    color: var(--primary-color);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.exam-hero {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.18));
    border-radius: 28px;
    padding: 2.75rem;
    border: 1px solid rgba(102, 126, 234, 0.18);
    margin-bottom: 2.5rem;
}

.exam-hero__content h1 {
    font-size: 2.35rem;
    margin-bottom: 0.75rem;
}

.exam-hero__desc {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.exam-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.exam-stat {
    background: white;
    border-radius: 18px;
    padding: 1.25rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.stat-value {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-hint {
    color: var(--text-light);
    font-size: 0.9rem;
}

.exam-hero__badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.exam-highlight {
    background: white;
    border-radius: 22px;
    padding: 2rem 2.5rem;
    text-align: center;
    box-shadow: 0 18px 35px rgba(102,126,234,0.2);
    border: 1px solid rgba(102,126,234,0.2);
    display: grid;
    gap: 0.5rem;
}

.highlight-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--text-light);
}

.highlight-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.highlight-hint {
    color: var(--text-light);
    font-size: 0.9rem;
}

.exam-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.6fr);
    gap: 2rem;
    align-items: start;
}

.exam-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 1.5rem;
}

.exam-progress-card {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow);
    display: grid;
    gap: 1rem;
}

.progress-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(102,126,234,0.12);
    overflow: hidden;
}

.progress-track__fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.progress-track__legend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.1rem;
    border-radius: 12px;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(102,126,234,0.08);
    transform: translateY(-1px);
}

.question-nav-card {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow);
}

.question-nav-card h4 {
    margin-bottom: 1rem;
}

.question-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
    gap: 0.5rem;
}

.question-nav-item {
    border: none;
    background: rgba(102,126,234,0.08);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.6rem 0;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.question-nav-item.answered {
    background: rgba(76, 175, 80, 0.18);
    color: var(--success-color);
}

.question-nav-item:hover {
    transform: translateY(-2px);
}

.exam-content {
    display: grid;
    gap: 1.5rem;
}

.question-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.question-index {
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(102,126,234,0.1);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.question-sub {
    color: var(--text-light);
    font-size: 0.9rem;
}

.question-card.question-answered {
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.12);
}

.answer-options {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.answer-option {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 1rem;
    background: rgba(248, 249, 252, 0.9);
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.answer-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.answer-option:hover {
    border-color: rgba(102,126,234,0.45);
    background: rgba(102,126,234,0.08);
}

.answer-option.is-selected {
    border-color: var(--primary-color);
    background: rgba(102,126,234,0.12);
}

.answer-bullet {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(102,126,234,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
}

.answer-option.is-selected .answer-bullet {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.answer-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.exam-submit-card {
    background: white;
    border-radius: 22px;
    padding: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow);
    display: grid;
    gap: 1rem;
}

.exam-submit-card h3 {
    margin-bottom: 0.35rem;
}

.exam-submit-actions {
    display: flex;
    align-items: center;
    gap: 1rem;

    .result-hero {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .result-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .result-score-ring {
        margin-left: 0;
    }

    .result-action-bar {
        width: 100%;
    }

    .result-layout {
        grid-template-columns: 1fr;
    }

    .result-sidebar {
        position: static;
    }
    flex-wrap: wrap;
}

.submit-hint {
    color: var(--text-light);
    font-size: 0.9rem;
}

.media-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.media-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.result-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    padding: 2.75rem;
    background: linear-gradient(135deg, rgba(102,126,234,0.14), rgba(118,75,162,0.22));
    border-radius: 30px;
    border: 1px solid rgba(102,126,234,0.18);
    margin-bottom: 2.5rem;
}

.result-hero__info h1 {
    font-size: 2.4rem;
    margin: 0.75rem 0;
}

.result-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.result-score-ring {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 25px 45px rgba(102,126,234,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 6px solid rgba(102,126,234,0.18);
    margin-bottom: 1.5rem;
}

.result-score-main {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.result-score-label {
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.result-description {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.result-action-bar {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.result-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.result-chip--excellent { background: rgba(76, 175, 80, 0.18); color: var(--success-color); }
.result_chip--good { background: rgba(3, 169, 244, 0.18); color: #0288d1; }
.result_chip--average { background: rgba(255, 193, 7, 0.2); color: #b28704; }
.result_chip--low { background: rgba(244, 67, 54, 0.18); color: var(--danger-color); }

.result-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.result-stat {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.result-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.result-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 1rem;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.result-card {
    background: white;
    border-radius: 14px;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: grid;
    gap: 0.5rem;
    height: 180px;
    overflow-y: auto;
}

.result-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
}

.result-meta-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
    align-items: center;
}

.result-meta-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

.result-tip {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    background: rgba(102, 126, 234, 0.05);
    padding: 0.6rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102,126,234,0.15);
}

.share-btn.twitter { background: rgba(29, 155, 240, 0.18); color: #1d9bf0; }
.share-btn.whatsapp { background: rgba(37, 211, 102, 0.18); color: #128c7e; }

.result-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.result-content {
    display: grid;
    gap: 1.5rem;
}

.result-breakdown-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: grid;
    gap: 1rem;
}

.progress-meter {
    height: 12px;
    background: rgba(102,126,234,0.12);
    border-radius: 999px;
    overflow: hidden;
}

.progress-meter__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s ease;
}

.progress-meter__legend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.95rem;
}

.result-metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.result-metric-grid > div {
    background: rgba(102,126,234,0.08);
    border-radius: 14px;
    padding: 1rem;
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.wrong-section {
    display: grid;
    gap: 1.5rem;
}

.wrong-header h3 {
    margin-bottom: 0.4rem;
}

.wrong-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.wrong-card {
    background: white;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow);
    display: grid;
    gap: 1.25rem;
}

.wrong-card__header {
    display: grid;
    gap: 0.75rem;
}

.review-options {
    display: grid;
    gap: 0.75rem;
}

.review-option {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 0.9rem;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    border: 2px solid rgba(226, 232, 240, 0.9);
    background: rgba(247, 248, 251, 0.9);
}

.review-option.is-correct {
    border-color: rgba(76, 175, 80, 0.45);
    background: rgba(76, 175, 80, 0.1);
}

.review-option.is-user {
    border-color: rgba(244, 67, 54, 0.4);
    background: rgba(244, 67, 54, 0.08);
}

.review-bullet {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    background: white;
    border: 2px solid rgba(102,126,234,0.25);
}

.review-option.is-correct .review-bullet {
    border-color: var(--success-color);
    color: var(--success-color);
}

.review-option.is-user .review-bullet {
    border-color: var(--danger-color);
    color: var(--danger-color);
}

.review-text strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.review-text small {
    color: var(--text-light);
}

.explanation-card {
    background: rgba(3, 169, 244, 0.12);
    border: 1px solid rgba(3, 169, 244, 0.3);
    padding: 1rem 1.2rem;
    border-radius: 14px;
    color: #01579b;
    line-height: 1.5;
}

.result-perfect-card {
    background: linear-gradient(135deg, rgba(102,126,234,0.9), rgba(118,75,162,0.95));
    color: white;
    border-radius: 22px;
    padding: 2.5rem;
    text-align: center;
    display: grid;
    gap: 1rem;
    box-shadow: 0 30px 60px rgba(102,126,234,0.3);
}

.exam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.exam-card {
    background: white;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition);
}

.exam-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(102,126,234,0.15);
    border-color: rgba(102,126,234,0.4);
}

.exam-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.exam-icon {
    font-size: 1.6rem;
}

.badge-tonal {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(102,126,234,0.12);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
}

.exam-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.exam-link {
    text-decoration: none;
    color: inherit;
}

.exam-link:hover {
    color: var(--primary-color);
}

.exam-meta {
    color: var(--text-light);
    font-size: 0.95rem;
}

.exam-description {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.exam-card__footer {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.selector-panel {
    display: grid;
    gap: 1.75rem;
    margin-top: 1.75rem;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(226,232,240,0.9);
    padding: 2rem;
    box-shadow: 0 18px 35px rgba(15,30,70,0.08);
}

.selector-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.selector-header h2,
.selector-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-weight: 700;
}

.selector-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.selector-grid.subject-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.selector-option {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.1rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(226,232,240,0.9);
    background: rgba(248,249,252,0.9);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.selector-option:hover {
    transform: translateY(-3px);
    border-color: rgba(102,126,234,0.4);
    box-shadow: 0 14px 28px rgba(102,126,234,0.12);
}

.selector-option.is-active {
    border-color: rgba(102,126,234,0.65);
    background: rgba(102,126,234,0.12);
    box-shadow: 0 16px 32px rgba(102,126,234,0.18);
}

.selector-option__title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.selector-option__meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

.selector-reset {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.selector-reset:hover {
    text-decoration: underline;
}

.selector-hint {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.selector-subpanel {
    border-top: 1px solid rgba(226,232,240,0.8);
    padding-top: 1.25rem;
    display: grid;
    gap: 1.25rem;
}

.curriculum-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.grade-card {
    background: white;
    border-radius: 22px;
    border: 1px solid rgba(226,232,240,0.9);
    padding: 2rem;
    box-shadow: 0 18px 35px rgba(15,30,70,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.grade-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.grade-card__header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.grade-icon {
    background: rgba(102,126,234,0.12);
    color: var(--primary-color);
    padding: 0.6rem;
    border-radius: 14px;
    font-size: 1.4rem;
    margin-right: 0.75rem;
}

.grade-card__body {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.subject-card {
    background: rgba(248,249,252,0.85);
    border-radius: 16px;
    padding: 1.4rem;
    border: 1px solid rgba(226,232,240,0.8);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
}

.subject-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(102,126,234,0.12);
    border-color: rgba(102,126,234,0.35);
}

.subject-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.subject-card__head h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.subject-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.subject-card__item {
    border-radius: 12px;
    border: 1px solid rgba(210, 214, 222, 0.6);
    background: white;
    transition: var(--transition);
}

.subject-card__item:hover {
    border-color: rgba(102,126,234,0.45);
    box-shadow: 0 10px 24px rgba(15,30,70,0.12);
}

.subject-card__link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.9rem 1rem;
    text-decoration: none;
}

.subject-card__title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.subject-card__meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

.subject-card__link:hover .subject-card__title {
    color: var(--primary-color);
}

.ehliyet-timeline {
    display: grid;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.ehliyet-year {
    background: white;
    border-radius: 22px;
    border: 1px solid rgba(226,232,240,0.9);
    padding: 2rem;
    box-shadow: 0 18px 35px rgba(15,30,70,0.08);
    display: grid;
    gap: 1.5rem;
}

.ehliyet-year__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.ehliyet-year__header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.ehliyet-month-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ehliyet-month-card {
    border-radius: 18px;
    border: 1px solid rgba(226,232,240,0.9);
    background: rgba(247,248,252,0.9);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ehliyet-month-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.ehliyet-month-card__head h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ehliyet-month-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.ehliyet-month-card__list li {
    border-radius: 12px;
    border: 1px solid rgba(210,214,222,0.6);
    background: white;
    transition: var(--transition);
}

.ehliyet-month-card__list li:hover {
    border-color: rgba(102,126,234,0.35);
    box-shadow: 0 10px 22px rgba(15,30,70,0.1);
}

.timeline-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-decoration: none;
    padding: 0.85rem 1rem;
}

.timeline-title {
    font-weight: 600;
    color: var(--text-dark);
}

.timeline-meta {
    font-size: 0.8rem;
    color: var(--text-light);
}

.timeline-link:hover .timeline-title {
    color: var(--primary-color);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    /* 📱 Mobil Logo Değişimi */
    .logo-desktop {
        display: none !important;
    }
    
    .logo-mobile {
        display: block !important;
    }
    
    .selector-panel {
        padding: 1.5rem;
    }

    .selector-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .selector-grid,
    .selector-grid.subject-grid {
        grid-template-columns: 1fr;
    }

    .grade-card {
        padding: 1.5rem;
    }

    .grade-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .grade-card__body {
        grid-template-columns: 1fr;
    }

    .subject-card {
        padding: 1.1rem;
    }

    .subject-card__link {
        align-items: flex-start;
    }

    .ehliyet-year {
        padding: 1.5rem;
    }

    .ehliyet-year__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .ehliyet-month-grid {
        grid-template-columns: 1fr;
    }

    .timeline-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .ad-banner, .ad-rectangle {
        text-align: center;
        margin: 2rem 0;
        padding: 1rem;
    }

    .ad-banner {
        max-width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

    .ad-banner iframe,
    .ad-banner ins {
        max-width: 100%;
    }

    .footer-ad {
        padding: 1rem 0;
    }

    .ad-sticky {
        position: fixed;
        left: 50%;
        bottom: 1rem;
        transform: translateX(-50%);
        z-index: 1200;
        display: none;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        padding: 0.5rem 0.75rem 0.5rem 0.75rem;
        align-items: center;
        gap: 0.75rem;
    }

    .ad-sticky.show {
        display: flex;
    }

    .ad-sticky iframe,
    .ad-sticky ins {
        max-width: 100%;
    }

    .ad-close {
        border: none;
        background: transparent;
        font-size: 1rem;
        cursor: pointer;
        color: var(--text-light);
    }
}

@media (min-width: 769px) {
    .ad-sticky {
        display: none !important;
    }
}

.empty-state {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px dashed rgba(102,126,234,0.4);
    box-shadow: var(--shadow);
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.empty-icon {
    font-size: 2.2rem;
}

.empty-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.categories-section, .features {
    margin: 4rem 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Categories */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--text-dark);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
    text-decoration: none;
    color: var(--text-dark);
}

.category-icon {
    font-size: 4em;
    margin-bottom: 1.5rem;
    display: block;
}

.category-title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.category-desc {
    color: var(--text-light);
    font-size: 1.1em;
    margin-bottom: 1rem;
}

.category-count {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    font-size: 0.9em;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.4em;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1em;
}

/* CTA Section */
.cta-section {
    margin: 4rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.cta-card h2 {
    font-size: 2.5em;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-card p {
    font-size: 1.3em;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-cta:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    text-decoration: none;
    color: white;
}

/* Google Ads */
.ad-banner, .ad-rectangle {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
}

.ad-banner {
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.ad-banner iframe,
.ad-banner ins {
    max-width: 100%;
}

.footer-ad {
    padding: 1rem 0;
}

.ad-sticky {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    z-index: 1200;
    display: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 0.5rem 0.75rem 0.5rem 0.75rem;
    align-items: center;
    gap: 0.75rem;
}

.ad-sticky.show {
    display: flex;
}

.ad-sticky iframe,
.ad-sticky ins {
    max-width: 100%;
}

.ad-sticky .ad-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: 100%;
    background: rgba(0,0,0,0.8);
    border: none;
    border-radius: 0 12px 12px 0;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

@media (max-width: 768px) {
    .ad-banner.footer-ad {
        padding: 0.75rem 0;
    }

    .ad-banner.footer-ad iframe,
    .ad-banner.footer-ad ins {
        width: 100%;
    }

    .ad-sticky {
        width: calc(100% - 2rem);
        max-width: 360px;
        bottom: 1.5rem;
    }
}

@media (min-width: 769px) {
    .ad-sticky {
        display: none !important;
    }
}

/* Sidebar Ads - Sol ve Sağ Dikey Reklamlar */
.sidebar-ads-left,
.sidebar-ads-right {
    position: fixed;
    top: 120px;
    width: 160px;
    height: 600px;
    z-index: 999;
    display: none;
}

.sidebar-ads-left {
    left: 10px;
}

.sidebar-ads-right {
    right: 10px;
}

@media (min-width: 1400px) {
    .sidebar-ads-left,
    .sidebar-ads-right {
        display: block;
    }
}

@media (min-width: 1600px) {
    .sidebar-ads-left {
        left: 20px;
    }
    
    .sidebar-ads-right {
        right: 20px;
    }
}

.sidebar-ads-left .ad-block,
.sidebar-ads-right .ad-block {
    position: sticky;
    top: 120px;
    width: 100%;
    height: 100%;
}

/* Footer */
.site-footer {
    background: var(--dark-color);
    color: white;
    margin-top: 4rem;
}

.footer-ad {
    background: var(--dark-color);
    border-color: rgba(255,255,255,0.2);
    padding: 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.8em;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.footer-meta {
    color: rgba(255,255,255,0.6);
    font-size: 0.9em;
}

.separator {
    margin: 0 0.5rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 15px;
    padding: 1.5rem;
    z-index: 1001;
    display: none;
    border-left: 5px solid var(--primary-color);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept {
    background: var(--success-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept:hover {
    background: #45a049;
}

.btn-learn {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-learn:hover {
    background: var(--primary-color);
    color: white;
}

/* Buttons */
.btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background: linear-gradient(45deg, var(--text-light), var(--text-dark));
}

.btn-success {
    background: linear-gradient(45deg, var(--accent-color), var(--success-color));
}

.btn-danger-small {
    background: linear-gradient(45deg, var(--danger-color), #d32f2f);
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.2);
}

.btn-danger-small:hover {
    background: linear-gradient(45deg, #d32f2f, #b71c1c);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
    text-decoration: none;
    color: white;
}

/* Image Preview Styles */
.image-preview {
    max-width: 200px;
    max-height: 150px;
    margin-top: 10px;
    border: 2px dashed #ddd;
    padding: 10px;
    border-radius: 8px;
    display: none;
}

.image-preview img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px;
}

.image-preview.show {
    display: block;
    border-color: var(--success-color);
    background: #f8fff8;
}

.question-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.question-text {
    font-size: 1.3em;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.options {
    display: grid;
    gap: 12px;
}

.option {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.option:hover {
    background: #e3f2fd;
    border-color: #2196f3;
}

.option.selected {
    background: #e3f2fd;
    border-color: #2196f3;
    font-weight: 500;
}

.option.correct {
    background: #e8f5e8;
    border-color: #4caf50;
    color: #2e7d32;
}

.option.wrong {
    background: #ffebee;
    border-color: #f44336;
    color: #c62828;
}

.progress-bar {
    background: #e0e0e0;
    border-radius: 10px;
    height: 8px;
    margin: 20px 0;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #667eea, #764ba2);
    height: 100%;
    transition: width 0.3s ease;
}

.result-score {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 15px;
    margin: 20px 0;
}

.score-big {
    font-size: 4em;
    font-weight: bold;
    margin: 20px 0;
}

.score-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.score-item {
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.score-number {
    font-size: 2em;
    font-weight: bold;
    display: block;
}

.wrong-answers {
    margin-top: 30px;
}

.wrong-question {
    background: #fff5f5;
    border-left: 5px solid #f56565;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
}

.admin-panel {
    background: white;
    min-height: 100vh;
}

.admin-header {
    background: #2c3e50;
    color: white;
    padding: 20px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e1e5e9;
}

.table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.table tr:hover {
    background: #f8f9fa;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Cards & Forms - Keep existing styles but add to them */
.card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Question & Exam Styles */
.question-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.question-text {
    font-size: 1.3em;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
}

.options {
    display: grid;
    gap: 1rem;
}

.option {
    background: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.option:hover {
    background: #e3f2fd;
    border-color: var(--accent-color);
}

.option.selected {
    background: #e3f2fd;
    border-color: var(--accent-color);
    font-weight: 500;
}

.option.correct {
    background: #e8f5e8;
    border-color: var(--success-color);
    color: #2e7d32;
}

.option.wrong {
    background: #ffebee;
    border-color: var(--danger-color);
    color: #c62828;
}

/* Progress & Results */
.progress-bar {
    background: #e0e0e0;
    border-radius: 10px;
    height: 10px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    height: 100%;
    transition: width 0.5s ease;
}

.result-score {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    margin: 2rem 0;
}

.score-big {
    font-size: 5em;
    font-weight: 700;
    margin: 1.5rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.score-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.score-item {
    background: rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.score-number {
    font-size: 2.5em;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.wrong-answers {
    margin-top: 3rem;
}

.wrong-question {
    background: #fff5f5;
    border-left: 5px solid var(--danger-color);
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 12px;
}

/* Admin Panel */
.admin-panel {
    background: var(--light-color);
    min-height: 100vh;
}

.admin-header {
    background: var(--dark-color);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1em;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1em;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table th,
.table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background: var(--light-color);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1em;
}

.table tr:hover {
    background: var(--light-color);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 2rem;
}

.mb-3 {
    margin-bottom: 2rem;
}

.alert {
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid transparent;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.8em;
    }
    
    .hero-subtitle {
        font-size: 1.3em;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .categories {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

/* 📱 Tablet Responsive (768px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
    .result-layout {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }

    .result-hero {
        padding: 3rem 1.5rem;
    }

    .result-hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .result-metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .result-action-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header-container {
        padding: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Content Mobile */
    .container {
        padding: 0 1rem;
    }

    .page-head {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .page-head__metrics {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .hero {
        padding: 3rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .hero-desc {
        font-size: 1em;
    }

    .section-intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .filters-inline {
        width: 100%;
    }

    .exam-grid {
        grid-template-columns: 1fr;
    }

    .exam-hero {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .exam-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .exam-highlight {
        width: 100%;
    }

    .exam-layout {
        grid-template-columns: 1fr;
    }

    .exam-sidebar {
        position: static;
    }

    .exam-submit-card {
        padding: 1.5rem;
    }

    .answer-option {
        grid-template-columns: 36px 1fr;
        padding: 0.8rem 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9em;
    }
    
    .categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .score-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .score-big {
        font-size: 3.5em;
    }
    
    .cta-card {
        padding: 3rem 1.5rem;
    }
    
    .cta-card h2 {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 2em;
        margin-bottom: 2rem;
    }
    
    /* Footer Mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Cookie Consent Mobile */
    .cookie-consent {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Forms Mobile */
    .table {
        font-size: 0.9em;
    }
    
    .table th,
    .table td {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8em;
    }
    
    .hero {
        padding: 2.5rem 1.75rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        font-size: 3em;
    }
    
    .category-title {
        font-size: 1.5em;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .score-details {
        grid-template-columns: 1fr;
    }
    
    .score-big {
        font-size: 3em;
    }
    
    .cta-card h2 {
        font-size: 1.8em;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1em;
    }

    .exam-hero__stats {
        grid-template-columns: 1fr;
    }

    .question-nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(36px, 1fr));
    }

    .exam-submit-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .answer-option {
        grid-template-columns: 32px 1fr;
        gap: 0.75rem;
    }

    .answer-bullet {
        width: 32px;
        height: 32px;
    }

    .result-hero__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .result-hero {
        padding: 2rem 1rem;
        text-align: center;
    }

    .result-hero__info h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .result-score-ring {
        margin: 0 auto 1.5rem;
        width: 120px;
        height: 120px;
    }

    .result-score-main {
        font-size: 2rem;
    }

    .result-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .result-sidebar {
        position: static;
        order: -1;
    }

    .result-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        height: auto;
        overflow-y: visible;
    }

    .result-action-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }

    .result-breakdown-card {
        padding: 1.5rem;
    }

    .result-metric-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .share-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .wrong-question {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .wrong-question-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .question-options {
        gap: 0.75rem;
    }

    .wrong-option, .correct-option {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .wrong-explanation {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .review-option {
        grid-template-columns: 32px 1fr;
    }
}

/* 📁 Media Content Styles */
.question-media {
    margin: 1.5rem 0;
    text-align: center;
    background: var(--light-color);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.question-media img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px  15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.question-media img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.question-media video {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.question-media iframe {
    border-radius: 8px;
    border: none;
    width: 100%;
    height: 315px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Admin Media Upload Styles */
.media-upload-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border: 2px dashed var(--border-color);
}

.media-upload-section label {
    display: block;
    margin: 0.8rem 0;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.media-upload-section label:hover {
    background: rgba(102, 126, 234, 0.1);
}

.media-upload-section input[type="radio"] {
    margin-right: 10px;
}

.upload-info {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9em;
}

/* Media Preview in Questions List */
.question-media-preview {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.question-media-preview img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 4px;
}

.question-media-preview video {
    max-width: 200px;
    max-height: 150px;
}

.question-media-preview iframe {
    max-width: 300px;
    height: 200px;
    transform: scale(0.8);
    transform-origin: top left;
}

@media (max-width: 768px) {
    .question-media {
        padding: 0.8rem;
    }
    
    .question-media img,
    .question-media video {
        max-height: 250px;
    }
    
    .question-media iframe {
        height: 200px;
    }
    
    .question-media-preview img,
    .question-media-preview video {
        max-width: 150px;
        max-height: 100px;
    }
}

/* === Home Page 2.0 === */
.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 2.5rem;
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, rgba(102,126,234,0.12), rgba(118,75,162,0.08));
    border-radius: 28px;
    border: 1px solid rgba(102,126,234,0.16);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(118,75,162,0.18), transparent 55%);
    pointer-events: none;
}

.home-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(102,126,234,0.12);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.home-hero__content h1 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.1;
    max-width: 14ch;
}

.home-hero__desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 50ch;
}

.home-hero__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.home-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.home-stat {
    padding: 1rem 1.1rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(102,126,234,0.12);
    box-shadow: 0 12px 32px -24px rgba(102,126,234,0.6);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.home-stat__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    font-weight: 600;
}

.home-stat__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.home-stat__hint {
    font-size: 0.85rem;
    color: var(--text-light);
}

.home-hero__sidebar {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.home-activity-card,
.home-info-card {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(118,75,162,0.16);
    box-shadow: 0 16px 28px -25px rgba(118,75,162,0.65);
}

.home-activity-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--dark-color);
}

.home-activity-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.home-activity-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
    background: rgba(102,126,234,0.06);
    transition: var(--transition);
    font-size: 0.95rem;
}

.home-activity-card li a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: inherit;
    gap: 0.2rem;
}

.home-activity-card li:hover {
    transform: translateX(4px);
    background: rgba(102,126,234,0.12);
}

.home-activity-card small {
    font-size: 0.75rem;
    color: var(--text-light);
}

.home-info-card strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.home-info-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.55;
}

.home-section {
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

.section-head p {
    color: var(--text-light);
    max-width: 50ch;
}

.section-actions a {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.home-category-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem;
    border-radius: 22px;
    background: white;
    border: 1px solid rgba(102,126,234,0.14);
    box-shadow: 0 16px 32px -30px rgba(102,126,234,0.8);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.home-category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(118,75,162,0.45);
    box-shadow: 0 18px 36px -28px rgba(118,75,162,0.7);
}

.home-category-card__icon {
    font-size: 2rem;
}

.home-category-card__body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.home-category-card__body p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.home-category-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.home-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.home-exam-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(118,75,162,0.14);
    box-shadow: 0 20px 38px -34px rgba(118,75,162,0.8);
    position: relative;
}

.home-exam-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.7rem;
    background: rgba(118,75,162,0.12);
    color: var(--secondary-color);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home-badge.tonal {
    background: rgba(102,126,234,0.12);
    color: var(--primary-color);
}

.home-exam-link {
    text-decoration: none;
    color: var(--dark-color);
    display: inline-block;
}

.home-exam-link:hover {
    color: var(--primary-color);
}

.home-exam-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.55;
}

.home-exam-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.home-exam-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-footnote {
    font-size: 0.8rem;
    color: var(--text-light);
}

.home-section--split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.home-panel {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(102,126,234,0.14);
    box-shadow: 0 18px 40px -32px rgba(102,126,234,0.8);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.home-panel.alt {
    background: linear-gradient(135deg, rgba(102,126,234,0.08), rgba(118,75,162,0.08));
}

.home-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.home-list-item a {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(102,126,234,0.12);
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

.home-list-item a:hover {
    background: rgba(102,126,234,0.08);
    border-color: rgba(102,126,234,0.3);
}

.home-list-item small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.home-tiplist {
    list-style: disc;
    padding-left: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-light);
}

.home-tiplist li {
    line-height: 1.5;
}

.home-cta-band {
    margin-top: 3rem;
    padding: 2.5rem;
    border-radius: 28px;
    background: linear-gradient(120deg, rgba(102,126,234,0.18), rgba(79,172,254,0.26));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--dark-color);
}

.home-cta-band h3 {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.home-cta-band p {
    color: rgba(33, 37, 41, 0.75);
    max-width: 45ch;
}

.home-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-cta-actions .btn {
    min-width: 200px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .home-hero {
        grid-template-columns: 1fr;
        padding: 3rem 2.25rem;
    }

    .home-hero__sidebar {
        flex-direction: row;
    }

    .home-activity-card,
    .home-info-card {
        flex: 1;
    }
}

@media (max-width: 900px) {
    .home-hero__sidebar {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .home-section {
        margin-bottom: 3rem;
    }

    .home-category-grid,
    .home-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .home-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 576px) {
    .home-hero {
        padding: 2.5rem 1.75rem;
    }

    .home-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-category-card {
        padding: 1.4rem;
    }

    .home-card-grid {
        grid-template-columns: 1fr;
    }

    .home-section--split {
        grid-template-columns: 1fr;
    }

    .home-cta-band {
        padding: 2rem;
    }
}