/* =============================================
   PREMIUM CONTENT — Professional Dark Theme
   Refined, sleek, editorial-grade design
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* === DESIGN TOKENS === */
:root {
    /* Core Palette — deep charcoal, not true-black */
    --bg-primary: #0c0c10;
    --bg-secondary: #13131a;
    --bg-card: #1a1a24;
    --bg-card-hover: #21212e;
    --bg-elevated: #26263a;
    --bg-input: #16161f;

    /* Accent — warm rose + soft violet */
    --accent-primary: #e8456b;
    --accent-secondary: #f27a9b;
    --accent-violet: #a855f7;
    --accent-gradient: linear-gradient(135deg, #e8456b 0%, #a855f7 100%);
    --accent-gradient-warm: linear-gradient(135deg, #e8456b 0%, #f27a9b 100%);
    --accent-glow: 0 0 24px rgba(232, 69, 107, 0.35);

    /* Semantic */
    --success: #34d399;
    --warning: #fbbf24;
    --danger: #f87171;

    /* Text */
    --text-primary: #f0f0f5;
    --text-secondary: #9d9db5;
    --text-muted: #5c5c72;
    --text-accent: var(--accent-primary);

    /* Borders */
    --border-color: rgba(255,255,255,0.06);
    --border-subtle: rgba(255,255,255,0.04);
    --border-hover: rgba(232, 69, 107, 0.25);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.35);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.45);
    --shadow-glow: 0 0 40px rgba(232, 69, 107, 0.15);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 0.15s;
    --duration-normal: 0.25s;
    --duration-slow: 0.4s;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ambient glow removed — was bleeding through gallery/video content */

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-primary); }

::selection { background: rgba(232, 69, 107, 0.35); color: #fff; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.display-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === NAVBAR === */
.navbar {
    background: rgba(12, 12, 16, 0.82) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    padding: 0.65rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background var(--duration-normal) var(--ease-smooth);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
}
.navbar-brand::after {
    content: '';
    display: none;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.45rem 0.85rem !important;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-smooth);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary) !important;
    background: rgba(255,255,255,0.04);
}

.nav-link.active {
    color: var(--accent-primary) !important;
}

.nav-link i {
    margin-right: 0.4rem;
    font-size: 0.8em;
    opacity: 0.7;
}

/* Balance pill */
.nav-balance {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    color: white !important;
    text-decoration: none;
    transition: all var(--duration-normal) var(--ease-out);
}
.nav-balance:hover {
    box-shadow: var(--accent-glow);
    transform: translateY(-1px);
    filter: brightness(1.08);
}

/* Withdraw button */
.nav-withdraw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    color: white !important;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.nav-withdraw-btn:hover {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
    transform: translateY(-1px);
    filter: brightness(1.15);
    color: white !important;
}

/* === CARDS === */
.card, .border-radius-xl {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    transition: border-color var(--duration-normal) var(--ease-smooth),
                box-shadow var(--duration-normal) var(--ease-smooth);
}

.card-header, .container.border-bottom {
    background: rgba(255,255,255,0.02) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 1rem 1.25rem;
}

.card-body, .px-4.py-3 {
    background: var(--bg-card) !important;
    padding: 1.25rem;
}

/* === BUTTONS === */
.btn {
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-smooth);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-primary, .bg-gradient-primary {
    background: var(--accent-gradient) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(232, 69, 107, 0.25);
}
.btn-primary:hover, .bg-gradient-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 69, 107, 0.35);
    filter: brightness(1.06);
}

.btn-outline-primary {
    background: transparent;
    border: 1.5px solid var(--accent-primary) !important;
    color: var(--accent-primary) !important;
}
.btn-outline-primary:hover {
    background: var(--accent-primary);
    color: white !important;
}

.btn-outline-secondary {
    background: transparent;
    border: 1px solid var(--border-color) !important;
    color: var(--text-secondary) !important;
}
.btn-outline-secondary:hover {
    background: rgba(255,255,255,0.04);
    color: var(--text-primary) !important;
    border-color: var(--border-hover) !important;
}

.btn-glow {
    animation: pulse-glow 2.5s infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(232, 69, 107, 0.3); }
    50% { box-shadow: 0 4px 35px rgba(232, 69, 107, 0.5); }
}

/* === FORMS === */
.form-control, .form-select {
    background: var(--bg-input) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    transition: border-color var(--duration-fast) var(--ease-smooth),
                box-shadow var(--duration-fast) var(--ease-smooth);
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px rgba(232, 69, 107, 0.12) !important;
    outline: none;
}
.form-control::placeholder { color: var(--text-muted); }

/* Chrome autofill override — force dark bg */
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--bg-input) inset !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    transition: background-color 5000s ease-in-out 0s !important;
    caret-color: var(--text-primary) !important;
}

.form-label { color: var(--text-secondary); font-weight: 500; font-size: 0.85rem; margin-bottom: 0.4rem; }

.form-check-input { background-color: var(--bg-input); border-color: var(--border-color); }
.form-check-input:checked { background-color: var(--accent-primary); border-color: var(--accent-primary); }

/* === BADGES === */
.badge {
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.35em 0.75em;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
}
.badge.bg-light { background: var(--bg-elevated) !important; color: var(--text-primary) !important; }
.badge.bg-primary { background: var(--accent-gradient) !important; }
.badge.bg-success { background: linear-gradient(135deg, #059669, #34d399) !important; }
.badge.bg-warning { background: linear-gradient(135deg, #d97706, #fbbf24) !important; color: #000 !important; }
.badge.bg-danger { background: linear-gradient(135deg, #dc2626, #f87171) !important; }
.badge.bg-info { background: linear-gradient(135deg, #0891b2, #22d3ee) !important; }

/* === ALERTS === */
.alert {
    border: none;
    border-radius: var(--radius-md);
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
}
.alert-success { background: rgba(52, 211, 153, 0.1); border-left: 3px solid var(--success); color: var(--success); }
.alert-danger { background: rgba(248, 113, 113, 0.1); border-left: 3px solid var(--danger); color: var(--danger); }
.alert-warning { background: rgba(251, 191, 36, 0.1); border-left: 3px solid var(--warning); color: var(--warning); }

/* === TABLES === */
.table { color: var(--text-primary); }
.table thead th {
    background: rgba(255,255,255,0.02);
    color: var(--text-muted);
    border-color: var(--border-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    padding: 0.75rem 1rem;
}
.table tbody td { border-color: var(--border-color); vertical-align: middle; }
.table-hover tbody tr:hover { background: rgba(255,255,255,0.02); }

/* === NAV TABS & PILLS (Admin panel, etc.) === */
.nav-wrapper {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    margin-bottom: 1.5rem;
}
.nav-wrapper .nav,
.nav-pills,
ul.nav.nav-pills {
    background: transparent !important;
}
.nav-pills .nav-link {
    color: var(--text-secondary) !important;
    background: transparent !important;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    transition: all var(--duration-fast) var(--ease-smooth);
}
.nav-pills .nav-link:hover {
    color: var(--text-primary) !important;
    background: rgba(255,255,255,0.04) !important;
}
.nav-pills .nav-link.active {
    background: var(--accent-gradient) !important;
    color: #fff !important;
}
.nav-tabs {
    border-color: var(--border-color);
}
.nav-tabs .nav-link {
    color: var(--text-secondary);
    border: 1px solid transparent;
    background: transparent;
}
.nav-tabs .nav-link:hover {
    border-color: var(--border-color);
    color: var(--text-primary);
}
.nav-tabs .nav-link.active {
    background: var(--bg-card);
    border-color: var(--border-color);
    border-bottom-color: var(--bg-card);
    color: var(--accent-primary);
}
.tab-content {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

/* === DATATABLES DARK OVERRIDES === */
.dataTables_wrapper { color: var(--text-primary); }
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    color: var(--text-secondary) !important;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}
.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_filter label {
    color: var(--text-secondary) !important;
}
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
    background: var(--bg-input) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.6rem;
}
.dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px rgba(232, 69, 107, 0.12) !important;
    outline: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: var(--text-secondary) !important;
    background: transparent !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-sm);
    margin: 0 2px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: var(--text-primary) !important;
    background: rgba(255,255,255,0.04) !important;
    border-color: var(--accent-primary) !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--accent-gradient) !important;
    border-color: transparent !important;
    color: #fff !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    color: var(--text-muted) !important;
    opacity: 0.4;
}
table.dataTable.table-striped > tbody > tr.odd > * {
    box-shadow: inset 0 0 0 9999px rgba(255,255,255,0.015) !important;
}
table.dataTable.table-striped > tbody > tr.even > * {
    box-shadow: none !important;
}
table.dataTable.table-hover > tbody > tr:hover > * {
    box-shadow: inset 0 0 0 9999px rgba(232, 69, 107, 0.04) !important;
}
table.dataTable thead th {
    border-bottom-color: var(--border-color) !important;
}
table.dataTable.no-footer {
    border-bottom-color: var(--border-color) !important;
}
div.dataTables_scrollBody {
    border-color: var(--border-color) !important;
}

/* === MODALS === */
.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.modal-header { border-color: var(--border-color); background: rgba(255,255,255,0.02); }
.modal-footer { border-color: var(--border-color); }
.modal-backdrop.show { opacity: 0.85; background: #000; }
.btn-close { filter: invert(1); opacity: 0.5; }
.btn-close:hover { opacity: 0.8; }

/* === GALLERY BASE === */
.gallery-swiper {
    position: relative;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.swiper-slide { display: flex; align-items: center; justify-content: center; background: #000; }
.swiper-slide img, .swiper-slide video { max-width: 100%; max-height: 70vh; object-fit: contain; }

.swiper-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all var(--duration-fast) var(--ease-smooth);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
}
.swiper-nav:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-50%) scale(1.05);
}
.swiper-nav.prev { left: 12px; }
.swiper-nav.next { right: 12px; }

/* swiper-counter moved to custom.css — no duplicate here */

/* Thumbnails */
.thumbnails-row {
    display: flex; gap: 8px;
    overflow-x: auto; padding: 12px;
    background: var(--bg-card);
}
.thumbnail {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--duration-fast) var(--ease-smooth);
    position: relative;
    opacity: 0.7;
}
.thumbnail img, .thumbnail video { width: 100%; height: 100%; object-fit: cover; }
.thumbnail:hover, .thumbnail.active {
    border-color: var(--accent-primary);
    opacity: 1;
    box-shadow: 0 0 12px rgba(232, 69, 107, 0.3);
}
.thumbnail.is-video::after {
    content: '\f04b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white; font-size: 0.65rem;
    width: 22px; height: 22px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* === FILTER PANEL === */
#filtersPanel { background: var(--bg-secondary); }
.card-header[data-bs-toggle="collapse"] { cursor: pointer; user-select: none; }
.card-header[data-bs-toggle="collapse"]:hover { background: rgba(255,255,255,0.03) !important; }

/* === RATING STARS === */
.star-rating { font-size: 1.75rem; }
.star-rating .star-btn {
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--duration-fast);
}
.star-rating .star-btn:hover,
.star-rating .star-btn.active,
.star-rating .fas.fa-star {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}
.stars-small .fa-star { color: #fbbf24; }

/* === REVIEWS === */
.review-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    transition: border-color var(--duration-fast);
}
.review-item:hover { border-color: var(--border-hover) !important; }
.review-form {
    background: var(--bg-secondary) !important;
    border: 1.5px dashed rgba(255,255,255,0.08) !important;
    border-radius: var(--radius-md);
}

/* === SUPPORT CHAT === */
.chat-messages { max-height: 400px; overflow-y: auto; }
.chat-message {
    padding: 10px 14px; border-radius: var(--radius-md);
    margin-bottom: 8px; max-width: 80%;
    font-size: 0.9rem; line-height: 1.5;
}
.chat-message.user {
    background: var(--accent-gradient);
    color: white; margin-left: auto;
    border-bottom-right-radius: 4px;
}
.chat-message.admin {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    margin-right: auto;
    border-bottom-left-radius: 4px;
}

/* === FOOTER === */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 0;
    margin-top: 4rem;
}
footer a { color: var(--text-secondary); text-decoration: none; transition: color var(--duration-fast); }
footer a:hover { color: var(--accent-primary); }

/* === LOADING === */
.loading-spinner {
    display: inline-block; width: 36px; height: 36px;
    border: 2px solid var(--bg-elevated);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === 18+ AGE GATE === */
.age-gate {
    position: fixed; inset: 0;
    background: var(--bg-primary);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
}
.age-gate-content { text-align: center; padding: 3rem; max-width: 460px; }
.age-gate-icon { font-size: 4rem; margin-bottom: 1.5rem; opacity: 0.8; }
.age-gate h2 {
    font-size: 1.75rem; margin-bottom: 0.75rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .navbar-brand { font-size: 1.15rem; }
    .swiper-nav { width: 36px; height: 36px; }
    .thumbnail { width: 50px; height: 50px; }
}

/* === UTILITY === */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.glow-text { text-shadow: 0 0 16px rgba(232, 69, 107, 0.4); }
.border-glow { border-color: var(--border-hover) !important; box-shadow: var(--shadow-glow); }
.bg-dark-glass { background: rgba(18, 18, 26, 0.85); backdrop-filter: blur(20px); }

/* === OVERRIDES === */
.shadow-lg { box-shadow: var(--shadow-md) !important; }
.text-dark { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-light { background: var(--bg-elevated) !important; }
.border-bottom { border-color: var(--border-color) !important; }

a { color: var(--accent-primary); text-decoration: none; transition: color var(--duration-fast); }
a:hover { color: var(--accent-secondary); }

.page-link { background: var(--bg-card); border-color: var(--border-color); color: var(--text-secondary); }
.page-link:hover { background: var(--bg-elevated); border-color: var(--accent-primary); color: var(--accent-primary); }
.page-item.active .page-link { background: var(--accent-gradient); border-color: transparent; }

/* DataTables */
.dataTables_wrapper { color: var(--text-secondary); }
.dataTables_filter input {
    background: var(--bg-input) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-sm); padding: 0.5rem 0.85rem;
}
.dataTables_length select {
    background: var(--bg-input) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-sm);
}

.card .text-dark, .border-radius-xl .text-dark { color: var(--text-primary) !important; }

/* Dropdown menus */
.dropdown-menu {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-md);
    padding: 0.35rem;
}
.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.85rem;
    font-size: 0.875rem;
    transition: background var(--duration-fast);
}
.dropdown-item:hover {
    background: rgba(255,255,255,0.05) !important;
}

/* Accordion (FAQ) */
.accordion-item {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
}
.accordion-button {
    background: var(--bg-card) !important;
    color: var(--text-primary) !important;
    font-weight: 500;
    box-shadow: none !important;
    padding: 1rem 1.25rem;
}
.accordion-button::after { filter: invert(1); opacity: 0.4; }
.accordion-button:not(.collapsed) {
    background: rgba(232, 69, 107, 0.08) !important;
    color: var(--accent-primary) !important;
}
.accordion-button:not(.collapsed)::after { filter: invert(1); opacity: 0.7; }
.accordion-body {
    background: var(--bg-card) !important;
    color: var(--text-secondary);
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    line-height: 1.7;
}
