/* CareerPrep Hub — responsive UI (plain CSS, works with Tailwind CDN) */

.nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #d1d5db;
    transition: all 0.2s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-link.active {
    color: #fff;
    background: rgba(99, 102, 241, 0.22);
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.4);
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #d1d5db;
    transition: all 0.2s;
}
.mobile-nav-link:hover { background: rgba(255,255,255,0.05); color: #fff; }
.mobile-nav-link.active {
    color: #fff;
    background: rgba(99, 102, 241, 0.22);
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.4);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to right, #4f46e5, #6366f1);
    box-shadow: 0 10px 25px rgba(99,102,241,0.25);
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.btn-primary:hover { transform: scale(1.02); filter: brightness(1.1); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #e5e7eb;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    transition: all 0.2s;
    text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    margin-bottom: 0.375rem;
}

.form-input,
input.form-input,
select.form-input,
textarea.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: #111827;
    color: #f3f4f6;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
    outline: none;
    border-color: rgba(99,102,241,0.5);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.25);
}

.card {
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(17,24,39,0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.content-card {
    display: block;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(17,24,39,0.5);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.content-card:hover {
    border-color: rgba(99,102,241,0.3);
    background: #111827;
    transform: translateY(-2px);
}

.module-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(135deg, #111827, #0b1020);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.module-card:hover {
    border-color: rgba(99,102,241,0.3);
    transform: translateY(-4px);
}

.module-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-card {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    text-align: center;
}

.section-title { font-size: 1.75rem; font-weight: 700; }
@media (min-width: 640px) { .section-title { font-size: 1.875rem; } }

.page-header { border-bottom: 1px solid rgba(255,255,255,0.05); }

.badge {
    display: inline-block;
    padding: 0.125rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(99,102,241,0.2);
    color: #c7d2fe;
    border: 1px solid rgba(99,102,241,0.2);
}
.badge-violet {
    background: rgba(139, 92, 246, 0.2);
    color: #ddd6fe;
    border-color: rgba(139, 92, 246, 0.35);
}
.badge-cyan {
    background: rgba(6, 182, 212, 0.2);
    color: #a5f3fc;
    border-color: rgba(6, 182, 212, 0.35);
}
.badge-amber {
    background: rgba(245, 158, 11, 0.2);
    color: #fde68a;
    border-color: rgba(245, 158, 11, 0.35);
}
.badge-emerald {
    background: rgba(16, 185, 129, 0.2);
    color: #a7f3d0;
    border-color: rgba(16, 185, 129, 0.35);
}
.badge-rose {
    background: rgba(244, 63, 94, 0.2);
    color: #fecdd3;
    border-color: rgba(244, 63, 94, 0.35);
}

.quiz-card { padding: 1.5rem; }
@media (min-width: 640px) { .quiz-card { padding: 2rem; } }

.quiz-option {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.quiz-option.selected {
    border-color: #6366f1 !important;
    background: rgba(99,102,241,0.2) !important;
    transform: scale(1.02);
}
.quiz-option.correct {
    border-color: #10b981 !important;
    background: rgba(16,185,129,0.2) !important;
}
.quiz-option.incorrect {
    border-color: #ef4444 !important;
    background: rgba(239,68,68,0.2) !important;
    animation: shake 0.4s ease-in-out;
}

.line-clamp-2, .line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-2 { -webkit-line-clamp: 2; }
.line-clamp-3 { -webkit-line-clamp: 3; }

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}
.animate-shake { animation: shake 0.4s ease-in-out; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-slide-up { animation: slideUp 0.5s ease-out; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 640px) {
    .quiz-option { min-height: 56px; }
}

/* Ad slots */
.ad-container { margin: 1rem auto; text-align: center; }
.ad-slot-leaderboard { max-width: 728px; }
.ad-slot-rectangle { max-width: 300px; }
.ad-slot-sticky-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 35;
    padding: 0.25rem;
    background: rgba(11, 16, 32, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
    .ad-slot-sticky-mobile { display: block; }
    body:has(.ad-slot-sticky-mobile .ad-container) { padding-bottom: 60px; }
}

/* Module hub — path cards & filter chips */
.path-card {
    display: block;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(17,24,39,0.6);
    transition: all 0.25s;
    text-decoration: none;
    color: inherit;
}
.path-card:hover { border-color: rgba(99,102,241,0.35); transform: translateY(-2px); }
.path-card--active { border-color: rgba(99,102,241,0.5); background: rgba(99,102,241,0.08); }
.path-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.path-card--brand .path-card__icon { background: rgba(99,102,241,0.2); }
.path-card--cyan .path-card__icon { background: rgba(6,182,212,0.2); }
.path-card--violet .path-card__icon { background: rgba(139,92,246,0.2); }
.path-card--rose .path-card__icon { background: rgba(244,63,94,0.2); }
.path-card--amber .path-card__icon { background: rgba(245,158,11,0.2); }
.path-card--emerald .path-card__icon { background: rgba(16,185,129,0.2); }
.path-card--brand:hover h3 { color: #a5b4fc; }
.path-card--cyan:hover h3 { color: #67e8f9; }
.path-card--violet:hover h3 { color: #c4b5fd; }
.path-card--rose:hover h3 { color: #fda4af; }
.path-card--amber:hover h3 { color: #fcd34d; }
.path-card--emerald:hover h3 { color: #6ee7b7; }

.filter-chip {
    display: inline-flex;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.12);
    color: #9ca3af;
    background: rgba(255,255,255,0.03);
    transition: all 0.2s;
    text-decoration: none;
}
.filter-chip:hover { color: #e5e7eb; border-color: rgba(255,255,255,0.2); }
.filter-chip--active {
    color: #c7d2fe;
    border-color: rgba(99,102,241,0.45);
    background: rgba(99,102,241,0.15);
}

/* Exam roadmap stepper */
.roadmap-stepper {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}
.roadmap-step {
    flex: 1;
    min-width: 120px;
    text-align: center;
    position: relative;
}
.roadmap-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.25rem;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
}
.roadmap-step__dot {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    border: 2px solid rgba(6,182,212,0.4);
    background: rgba(6,182,212,0.15);
    color: #67e8f9;
    position: relative;
    z-index: 1;
}
.roadmap-step--done .roadmap-step__dot {
    border-color: rgba(16,185,129,0.5);
    background: rgba(16,185,129,0.2);
    color: #6ee7b7;
}

/* Reading layout */
.reading-layout { display: grid; gap: 2rem; }
@media (min-width: 1024px) {
    .reading-layout { grid-template-columns: 200px 1fr; }
    .reading-layout--wide { grid-template-columns: 200px 1fr 260px; }
}
.reading-toc {
    position: sticky;
    top: 5rem;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
}
.reading-toc a {
    display: block;
    padding: 0.375rem 0;
    font-size: 0.8125rem;
    color: #6b7280;
    text-decoration: none;
    border-left: 2px solid transparent;
    padding-left: 0.75rem;
    transition: color 0.2s;
}
.reading-toc a:hover { color: #c7d2fe; }
.reading-toc a.toc-h3 { padding-left: 1.25rem; font-size: 0.75rem; }

.takeaway-box {
    border-radius: 0.75rem;
    border: 1px solid rgba(16,185,129,0.25);
    background: rgba(16,185,129,0.08);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}
.takeaway-box h3 { font-size: 0.875rem; font-weight: 600; color: #6ee7b7; margin-bottom: 0.75rem; }

.qtype-hr { color: #fda4af; }
.qtype-technical { color: #67e8f9; }
.qtype-behavioral { color: #c4b5fd; }
.qtype-situational { color: #fcd34d; }
.qtype-system_design { color: #6ee7b7; }

.intent-picker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .intent-picker { grid-template-columns: repeat(3, 1fr); }
}
.intent-btn {
    padding: 1rem 1.25rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    text-align: left;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}
.intent-btn:hover {
    border-color: rgba(99,102,241,0.4);
    background: rgba(99,102,241,0.08);
    transform: translateY(-1px);
}
.intent-btn strong { display: block; font-size: 0.9375rem; margin-bottom: 0.25rem; }
.intent-btn span { font-size: 0.75rem; color: #9ca3af; }

.reading-content h2 { font-size: 1.375rem; font-weight: 700; margin: 1.75rem 0 0.75rem; color: #f3f4f6; }
.reading-content h3 { font-size: 1.125rem; font-weight: 600; margin: 1.25rem 0 0.5rem; color: #e5e7eb; }
.reading-content p,
.reading-content li,
.reading-content blockquote {
    white-space: break-spaces;
}
.reading-content strong {
    font-weight: 700;
    color: #f9fafb;
}
.reading-content ul, .reading-content ol { margin: 0.75rem 0; padding-left: 1.5rem; }
.reading-content li { margin: 0.35rem 0; }
.reading-content code {
    background: rgba(255,255,255,0.08);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
}
.reading-content pre {
    background: rgba(0,0,0,0.35);
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1rem 0;
}
.reading-content blockquote {
    border-left: 3px solid rgba(99,102,241,0.5);
    padding-left: 1rem;
    color: #9ca3af;
    margin: 1rem 0;
}
.reading-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1.25rem 0;
    border: 1px solid rgba(255,255,255,0.08);
}
.reading-content a {
    color: #a5b4fc;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.reading-content h4 { font-size: 1rem; font-weight: 600; margin: 1rem 0 0.4rem; color: #e5e7eb; }

.company-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.company-stat {
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.625rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.company-stat__value { font-size: 1.25rem; font-weight: 700; color: #fcd34d; }
.company-stat__label { font-size: 0.6875rem; color: #6b7280; margin-top: 0.125rem; }

.news-featured {
    display: block;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(99,102,241,0.25);
    background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(17,24,39,0.9));
    text-decoration: none;
    color: inherit;
    margin-bottom: 2rem;
    transition: all 0.3s;
}
.news-featured:hover { border-color: rgba(99,102,241,0.45); transform: translateY(-2px); }

.experience-timeline { position: relative; padding-left: 1.5rem; }
.experience-timeline::before {
    content: '';
    position: absolute;
    left: 0.375rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: rgba(99,102,241,0.25);
}
.experience-timeline .card { position: relative; }
.experience-timeline .card::before {
    content: '';
    position: absolute;
    left: -1.35rem;
    top: 1.25rem;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: #6366f1;
    border: 2px solid #111827;
}

/* Pagination */
.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.625rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    text-decoration: none;
    transition: all 0.2s;
}
.pagination-btn:hover { color: #e5e7eb; border-color: rgba(99,102,241,0.35); }
.pagination-btn--active {
    color: #c7d2fe;
    border-color: rgba(99,102,241,0.5);
    background: rgba(99,102,241,0.15);
}
.pagination-btn--disabled { opacity: 0.4; cursor: not-allowed; }

/* ============================================================
   Shared UI primitives — skeletons, empty states, modals
   ============================================================ */

.skeleton {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
}
.skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    background-size: 400px 100%;
    animation: shimmer 1.6s ease-in-out infinite;
}
@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.skeleton-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 24, 39, 0.5);
    padding: 1.25rem;
}
.skeleton-line { height: 0.75rem; margin-bottom: 0.6rem; }
.skeleton-line:last-child { margin-bottom: 0; width: 60%; }

.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
}
.empty-state__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    animation: floatSoft 4s ease-in-out infinite;
}
@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.empty-state__title { font-size: 1.05rem; font-weight: 700; color: #f3f4f6; margin-bottom: 0.375rem; }
.empty-state__desc { font-size: 0.875rem; color: #9ca3af; max-width: 28rem; margin: 0 auto; }

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(4, 6, 15, 0.72);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-panel {
    width: 100%;
    max-width: 32rem;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111827;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    animation: scaleIn 0.2s ease-out;
}
@keyframes scaleIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}
.animate-pop-in { animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes popIn {
    0% { opacity: 0; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

/* ============================================================
   Rich text editor (Quill) — shared by all admin content forms
   ============================================================ */

.rich-editor-wrap { border-radius: 0.75rem; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); background: #111827; }
.rich-editor-wrap .ql-toolbar {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem 0.75rem;
}
.rich-editor-wrap .ql-container {
    border: none;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    color: #f3f4f6;
    min-height: 180px;
}
.rich-editor-wrap.rich-editor-wrap--sm .ql-container { min-height: 100px; }
.rich-editor-wrap .ql-editor { min-height: inherit; line-height: 1.7; padding: 1rem 1.15rem; }
.rich-editor-wrap .ql-editor.ql-blank::before { color: #6b7280; font-style: normal; }
.rich-editor-wrap .ql-snow .ql-stroke { stroke: #9ca3af; }
.rich-editor-wrap .ql-snow .ql-fill { fill: #9ca3af; }
.rich-editor-wrap .ql-snow .ql-picker { color: #9ca3af; }
.rich-editor-wrap .ql-snow.ql-toolbar button:hover,
.rich-editor-wrap .ql-snow .ql-toolbar button:hover,
.rich-editor-wrap .ql-snow.ql-toolbar button.ql-active,
.rich-editor-wrap .ql-snow .ql-toolbar button.ql-active {
    color: #a5b4fc;
}
.rich-editor-wrap .ql-snow.ql-toolbar button:hover .ql-stroke,
.rich-editor-wrap .ql-snow .ql-toolbar button.ql-active .ql-stroke {
    stroke: #a5b4fc;
}
.rich-editor-wrap .ql-snow.ql-toolbar button:hover .ql-fill,
.rich-editor-wrap .ql-snow .ql-toolbar button.ql-active .ql-fill {
    fill: #a5b4fc;
}
.rich-editor-wrap .ql-picker-options {
    background: #1f2937;
    border-color: rgba(255, 255, 255, 0.1) !important;
}
.rich-editor-wrap .ql-editor img { border-radius: 0.5rem; max-width: 100%; }
.rich-editor-wrap .ql-editor.ql-disabled { opacity: 0.6; }

/* Dynamic "add question" repeater rows (admin content studio) */
.question-repeater { display: grid; gap: 1rem; }
.question-row {
    position: relative;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    padding: 1.25rem 1.35rem;
    animation: slideUp 0.35s ease-out;
}
.question-row__index {
    position: absolute;
    top: -0.65rem;
    left: 1.1rem;
    padding: 0.1rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    background: #4f46e5;
    color: #fff;
}
.question-row__remove {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: #fda4af;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.25);
    cursor: pointer;
    transition: all 0.15s;
}
.question-row__remove:hover { background: rgba(244, 63, 94, 0.2); }

.image-dropzone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.15s;
}
.image-dropzone:hover, .image-dropzone.is-dragover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.06);
}
.image-dropzone__preview {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.05);
}

/* PDF reader */
.pdf-reader__split {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .pdf-reader__split { grid-template-columns: 1fr 280px; }
}
.pdf-reader__viewport canvas { max-width: 100%; height: auto !important; }

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    padding: 1rem;
    pointer-events: none;
}
.cookie-consent__inner {
    pointer-events: auto;
    max-width: 42rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.cookie-consent__text {
    flex: 1 1 16rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgb(209, 213, 219);
    margin: 0;
}
.cookie-consent__actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}
