:root {
    --bg: #080a1f;
    --bg-deep: #040612;
    --surface: rgba(16, 20, 48, .82);
    --surface-strong: rgba(20, 26, 64, .94);
    --line: rgba(255, 255, 255, .13);
    --text: #f7fbff;
    --muted: #a7b4cf;
    --primary: #00d4ff;
    --primary-2: #8b5cf6;
    --primary-3: #ff3d9a;
    --success: #31f59a;
    --danger: #ff5573;
    --warning: #ffd166;
    --orange: #ff9f1c;
    --shadow: 0 26px 90px rgba(0, 0, 0, .42);
    --radius: 28px;
}

html[data-theme="light"] {
    --bg: #f0f4fc;
    --bg-deep: #e2e8f5;
    --surface: rgba(255, 255, 255, .92);
    --surface-strong: #ffffff;
    --line: rgba(0, 0, 0, .10);
    --text: #0f172a;
    --muted: #64748b;
    --shadow: 0 16px 45px rgba(0, 0, 0, .06);
}

html[data-theme="light"] body {
    color: var(--text);
    background:
        radial-gradient(circle at 9% 10%, rgba(0, 212, 255, .12), transparent 24rem),
        radial-gradient(circle at 83% 2%, rgba(255, 61, 154, .10), transparent 30rem),
        radial-gradient(circle at 52% 84%, rgba(139, 92, 246, .08), transparent 28rem),
        linear-gradient(160deg, #e2e8f5, #f0f4fc 48%, #e8eef8);
}

html[data-theme="light"] body::before {
    background-image:
        linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
}

html[data-theme="light"] .site-header {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(20px);
}

html[data-theme="light"] .nav-item {
    color: #475569;
}

html[data-theme="light"] .nav-item:hover {
    color: #0f172a;
    background: rgba(0, 0, 0, 0.05);
}

html[data-theme="light"] .btn.secondary {
    background: rgba(0, 0, 0, 0.05);
    color: #0f172a;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.10);
}

html[data-theme="light"] .data-table th {
    color: #64748b;
    border-bottom-color: rgba(0, 0, 0, 0.10);
}

html[data-theme="light"] .data-table td {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .data-table tr:hover td {
    background: rgba(0, 0, 0, 0.02);
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: Outfit, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 9% 10%, rgba(0, 212, 255, .24), transparent 24rem),
        radial-gradient(circle at 83% 2%, rgba(255, 61, 154, .22), transparent 30rem),
        radial-gradient(circle at 52% 84%, rgba(139, 92, 246, .18), transparent 28rem),
        linear-gradient(160deg, var(--bg-deep), var(--bg) 48%, #09061f);
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 80%);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button:disabled { opacity: .76; cursor: wait; }

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: rgba(4, 6, 18, .72);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, visibility .18s ease;
}
body.is-loading .page-loader {
    opacity: 1;
    visibility: visible;
}
.loader-card {
    min-width: 240px;
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(145deg, rgba(18,24,58,.94), rgba(10,14,34,.92));
    box-shadow: var(--shadow);
}
.loader-card strong { font-size: 18px; }
.loader-card small { color: var(--muted); }
.loader-ring {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 4px solid rgba(255,255,255,.14);
    border-top-color: var(--primary);
    border-right-color: var(--primary-3);
    animation: spin .72s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.app-shell {
    position: relative;
    min-height: 100vh;
    padding: 22px;
}
.site-header {
    position: sticky;
    top: 14px;
    z-index: 40;
    width: min(1260px, 100%);
    margin: 0 auto 26px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(17, 24, 58, .86), rgba(10, 14, 36, .74));
    backdrop-filter: blur(22px);
    box-shadow: 0 20px 70px rgba(0, 0, 0, .32);
}
.site-header-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 14px 18px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: -.06em;
    background: conic-gradient(from 210deg, var(--primary), var(--primary-2), var(--primary-3), var(--primary));
    color: white;
    box-shadow: 0 15px 38px rgba(0, 212, 255, .22);
}
.brand strong { display: block; letter-spacing: -.04em; font-size: 17px; }
.brand small { display: block; color: var(--muted); margin-top: 2px; font-size: 12px; font-weight: 700; }
.top-nav {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.08);
}
.nav-item {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    color: #d6def0;
    font-weight: 800;
    font-size: 14px;
    transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.nav-item:hover {
    transform: translateY(-1px);
    color: white;
    background: rgba(255,255,255,.08);
}
.nav-item.active {
    color: white;
    background: linear-gradient(135deg, rgba(0,212,255,.95), rgba(139,92,246,.95));
    box-shadow: 0 12px 26px rgba(0, 212, 255, .18);
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    gap: 4px;
}
.nav-arrow {
    font-size: 10px;
    transition: transform .2s;
}
.nav-dropdown.open .nav-arrow {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    padding: 6px;
    border-radius: 16px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}
.nav-dropdown-item {
    display: block;
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--text);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
}
.nav-dropdown-item:hover {
    background: rgba(255,255,255,.08);
}
.nav-dropdown-item.active {
    color: white;
    background: linear-gradient(135deg, rgba(0,212,255,.95), rgba(139,92,246,.95));
}
.user-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    justify-self: end;
}
.user-menu span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
    color: #e7efff;
}
.logout-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: white;
    font-weight: 900;
    transition: transform .18s ease, background .18s ease;
}
.logout-link:hover { transform: translateY(-1px); background: rgba(255,255,255,.13); }
.main {
    width: min(1260px, 100%);
    margin: 0 auto;
}
.site-footer {
    width: min(1260px, 100%);
    margin: 26px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}
.site-footer a {
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.eyebrow {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}
h1, h2, h3 { margin: 0; letter-spacing: -.045em; }
h1 { font-size: clamp(34px, 4vw, 58px); line-height: .98; }
h2 { font-size: clamp(24px, 2.4vw, 36px); line-height: 1.1; margin-top: 8px; }
h3 { font-size: 25px; margin-top: 8px; }
p { line-height: 1.65; }
.muted { color: var(--muted); }
.hero-panel, .panel, .stat-card, .login-card, .security-card {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hero-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(26px, 4vw, 42px);
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(circle at 7% 10%, rgba(0,212,255,.20), transparent 21rem),
        radial-gradient(circle at 94% 5%, rgba(255,61,154,.20), transparent 22rem),
        linear-gradient(135deg, rgba(20,27,70,.92), rgba(12,16,42,.84));
}
.hero-panel::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: conic-gradient(from 180deg, var(--primary), var(--primary-2), var(--primary-3), var(--primary));
    opacity: .16;
    filter: blur(2px);
}
.hero-panel p { max-width: 620px; color: #c7d2e9; margin-bottom: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; position: relative; z-index: 1; }
.grid { display: grid; gap: 18px; }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-card {
    min-height: 178px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.09), transparent 36%);
    pointer-events: none;
    z-index: -1;
}
.stat-card::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -70px;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    opacity: .22;
    filter: blur(2px);
    z-index: -1;
}
.stat-card.cyan::after { background: var(--primary); }
.stat-card.purple::after { background: var(--primary-2); }
.stat-card.green::after { background: var(--success); }
.stat-card.orange::after { background: var(--orange); }
.stat-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: rgba(255,255,255,.09);
    margin-bottom: 16px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.stat-card small, .info-list span { color: var(--muted); display: block; font-weight: 700; }
.stat-card strong {
    display: block;
    font-size: 29px;
    margin: 8px 0;
    letter-spacing: -.05em;
}
.stat-card em { color: #b7c3d8; font-style: normal; font-size: 13px; }
.panel {
    margin-top: 18px;
    padding: clamp(22px, 3vw, 32px);
    background:
        linear-gradient(145deg, rgba(20,26,64,.88), rgba(9,13,33,.78));
}
.two-col { display: grid; grid-template-columns: 1.04fr .96fr; gap: 24px; align-items: start; }
.panel-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; margin-bottom: 24px; }
.panel-head p { margin-bottom: 0; }
.compact-head { margin-bottom: 16px; }
.badge {
    padding: 11px 15px;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, rgba(0,212,255,.18), rgba(255,61,154,.15));
    border: 1px solid rgba(0,212,255,.28);
    font-weight: 900;
    white-space: nowrap;
}
.info-list { display: grid; gap: 12px; }
.summary-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.info-list div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 17px;
    border-radius: 20px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
}
.info-list strong { word-break: break-word; font-size: 17px; }
.quick-actions, .form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
    border: 0;
    color: white;
    border-radius: 17px;
    padding: 13px 20px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.18), transparent);
    transform: translateX(-120%);
    transition: transform .48s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn:hover::before { transform: translateX(120%); }
.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2) 56%, var(--primary-3));
    box-shadow: 0 16px 34px rgba(0, 212, 255, .18);
}
.btn.secondary {
    background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
}
.btn.full { width: 100%; }
.form { display: grid; gap: 16px; }
.form.stacked { margin-top: 22px; }
.form label span { display: block; color: #e8efff; font-weight: 800; margin-bottom: 8px; }
.form input {
    width: 100%;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(4, 8, 24, .64);
    color: white;
    border-radius: 18px;
    padding: 16px 17px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.form input::placeholder { color: rgba(167,180,207,.76); }
.form input:focus {
    border-color: rgba(0,212,255,.78);
    box-shadow: 0 0 0 5px rgba(0,212,255,.13);
    background: rgba(4, 8, 24, .82);
}
.flash-stack { display: grid; gap: 10px; margin-bottom: 18px; }
.flash-stack.compact { margin: 18px 0; }
.alert {
    padding: 15px 17px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.07);
    line-height: 1.5;
    font-weight: 700;
}
.alert-success { border-color: rgba(49,245,154,.30); background: rgba(49,245,154,.13); }
.alert-danger { border-color: rgba(255,85,115,.34); background: rgba(255,85,115,.14); }
.alert-warning { border-color: rgba(255,209,102,.34); background: rgba(255,209,102,.14); }
.login-body {
    display: grid;
    place-items: center;
    padding: 24px;
}
.login-container { width: min(500px, 100%); }
.login-card.single {
    position: relative;
    padding: clamp(30px, 5vw, 46px);
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 0%, rgba(0,212,255,.22), transparent 17rem),
        radial-gradient(circle at 92% 10%, rgba(255,61,154,.20), transparent 18rem),
        rgba(17, 22, 55, .91);
}
.login-card.single::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: conic-gradient(from 90deg, var(--primary), var(--primary-2), var(--primary-3), var(--primary));
    opacity: .18;
}
.login-brand { margin-bottom: 32px; position: relative; z-index: 1; }
.login-heading { position: relative; z-index: 1; }
.login-heading h1 { margin-top: 8px; }
.login-form { margin-top: 28px; position: relative; z-index: 1; }
.bouquet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.bouquet-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    min-height: 86px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.11);
    background: rgba(255,255,255,.055);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
    position: relative;
    overflow: hidden;
}
.bouquet-card:hover { transform: translateY(-2px); border-color: rgba(0,212,255,.38); }
.bouquet-card input { position: absolute; opacity: 0; pointer-events: none; }
.bouquet-title { min-width: 0; font-weight: 900; line-height: 1.3; }
.bouquet-card.enabled, .bouquet-card:has(input:checked) {
    background: linear-gradient(135deg, rgba(0,212,255,.15), rgba(49,245,154,.10));
    border-color: rgba(0,212,255,.34);
    box-shadow: inset 0 0 0 1px rgba(0,212,255,.08), 0 16px 36px rgba(0,212,255,.08);
}
.switch {
    width: 58px;
    height: 34px;
    border-radius: 999px;
    background: rgba(148,163,184,.25);
    padding: 4px;
    transition: background .18s ease;
}
.switch i {
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: white;
    transition: transform .18s ease;
    box-shadow: 0 5px 16px rgba(0,0,0,.28);
}
.bouquet-card.enabled .switch,
.bouquet-card input:checked + .switch {
    background: linear-gradient(135deg, var(--success), var(--primary));
}
.bouquet-card.enabled .switch i,
.bouquet-card input:checked + .switch i {
    transform: translateX(24px);
}
.sticky-actions {
    position: sticky;
    bottom: 14px;
    padding: 14px;
    margin: 24px -14px -14px;
    border-radius: 22px;
    background: rgba(8, 10, 31, .76);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.10);
}
.empty-state {
    padding: 26px;
    border-radius: 22px;
    background: rgba(255,255,255,.055);
    border: 1px dashed rgba(255,255,255,.20);
}
.empty-state p { color: var(--muted); margin-bottom: 0; }
.form-notice {
    display: grid;
    gap: 7px;
    padding: 18px 18px 18px 20px;
    border-radius: 22px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,209,102,.32);
    background: linear-gradient(135deg, rgba(255,209,102,.18), rgba(255,61,154,.10));
    box-shadow: 0 16px 36px rgba(255, 159, 28, .08);
}
.form-notice strong { font-size: 18px; }
.form-notice span { color: #ffe9ba; line-height: 1.55; font-weight: 700; }
.password-panel .security-card {
    padding: 26px;
    background:
        radial-gradient(circle at top right, rgba(0,212,255,.18), transparent 18rem),
        radial-gradient(circle at bottom left, rgba(255,61,154,.12), transparent 16rem),
        var(--surface-strong);
}
.security-card.emphasized { border-color: rgba(0,212,255,.22); }
.security-list {
    list-style: none;
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 22px 0 0;
}
.security-list li {
    position: relative;
    padding: 15px 15px 15px 44px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    color: #e3ebff;
    line-height: 1.5;
    font-weight: 700;
}
.security-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 15px;
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(49,245,154,.16);
    color: var(--success);
    font-weight: 900;
}
@media (max-width: 1050px) {
    .cards-4, .summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bouquet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-panel { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 820px) {
    .app-shell { padding: 14px; }
    .site-header { position: static; border-radius: 24px; }
    .two-col { grid-template-columns: 1fr; }
    .panel-head { flex-direction: column; }
}
@media (max-width: 600px) {
    .cards-4, .summary-grid, .bouquet-grid { grid-template-columns: 1fr; }
    .login-body { padding: 14px; }
    .login-card.single, .panel, .hero-panel { padding: 22px; }
    .sticky-actions { position: static; margin: 24px 0 0; }
    h1 { font-size: clamp(32px, 11vw, 48px); }
}

body {
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
    color: white;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: white;
    transition: transform .18s ease, opacity .18s ease;
}

body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.brand strong,
.nav-item,
.user-menu span,
.logout-link,
.btn,
.bouquet-title,
.form label span,
.alert,
.security-list li {
    font-weight: 700;
}

.nav-item,
.logout-link,
.btn {
    letter-spacing: -.01em;
}

.btn {
    border-radius: 18px;
    padding: 13px 22px;
    background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
}

.btn.primary {
    background: linear-gradient(135deg, #00d4ff 0%, #36f1b7 42%, #9b5cff 72%, #ff3d9a 100%);
    box-shadow: 0 18px 42px rgba(0, 212, 255, .20), inset 0 0 0 1px rgba(255,255,255,.12);
}

.btn.secondary {
    background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}

.bouquet-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 10px;
}

.bouquet-card {
    min-height: 58px;
    padding: 10px 12px;
    gap: 10px;
    border-radius: 18px;
}

.bouquet-title {
    font-size: 14px;
    letter-spacing: -.015em;
}

.switch {
    width: 48px;
    height: 28px;
    padding: 3px;
}

.switch i {
    width: 22px;
    height: 22px;
}

.bouquet-card.enabled .switch i,
.bouquet-card input:checked + .switch i {
    transform: translateX(20px);
}

.sticky-actions {
    margin-top: 18px;
}

.activity-grid {
    grid-template-columns: 1fr 1fr 2fr;
}

.copy-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 2px;
}

.copy-field input {
    min-width: 0;
    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(4, 8, 24, .58);
    color: #dfeaff;
    border-radius: 15px;
    padding: 12px 13px;
    outline: none;
    font-size: 13px;
}

.copy-btn {
    border: 0;
    border-radius: 15px;
    padding: 12px 15px;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}

.form-notice.critical {
    border-color: rgba(255, 209, 102, .55);
    background: radial-gradient(circle at top left, rgba(255, 209, 102, .30), transparent 18rem), linear-gradient(135deg, rgba(255, 159, 28, .24), rgba(255, 61, 154, .16));
    box-shadow: 0 18px 46px rgba(255, 159, 28, .14);
}

.form-notice.critical strong {
    font-size: 19px;
    font-weight: 800;
}

.form-notice.critical span {
    color: #fff1c8;
    font-weight: 700;
}

@media (max-width: 1050px) {
    .activity-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    .site-header-inner {
        grid-template-columns: 1fr auto;
        justify-items: stretch;
        align-items: center;
        gap: 12px;
        min-height: 68px;
        padding: 12px;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .top-nav,
    .user-menu {
        grid-column: 1 / -1;
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height .22s ease, opacity .18s ease, padding .18s ease, margin .18s ease;
    }

    .top-nav {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0;
        border-width: 0;
        margin: 0;
    }

    .user-menu {
        justify-content: space-between;
        padding: 0;
        margin: 0;
    }

    body.nav-open .top-nav {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
        padding: 8px;
        border-width: 1px;
        margin-top: 4px;
    }

    body.nav-open .user-menu {
        max-height: 90px;
        opacity: 1;
        pointer-events: auto;
        padding-top: 2px;
        margin-top: 2px;
    }

    .nav-item {
        min-height: 46px;
        border-radius: 15px;
    }

    .hero-actions,
    .form-actions {
        width: 100%;
    }

    .hero-actions .btn,
    .form-actions .btn,
    .form-actions a {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .brand-mark {
        width: 44px;
        height: 44px;
        border-radius: 16px;
    }

    .brand strong {
        font-size: 15px;
    }

    .brand small {
        font-size: 11px;
    }

    .bouquet-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 8px;
    }

    .bouquet-card {
        min-height: 54px;
        padding: 9px 10px;
    }

    .bouquet-title {
        font-size: 13px;
    }

    .switch {
        width: 43px;
        height: 26px;
    }

    .switch i {
        width: 20px;
        height: 20px;
    }

    .bouquet-card.enabled .switch i,
    .bouquet-card input:checked + .switch i {
        transform: translateX(17px);
    }

    .copy-field {
        grid-template-columns: 1fr;
    }

    .copy-btn {
        min-height: 44px;
    }
}

.site-header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
}

.top-nav {
    width: max-content;
    justify-self: center;
    flex: 0 0 auto;
}

.nav-item,
.logout-link,
.btn,
.bouquet-title,
.form label span,
.alert,
.security-list li,
.user-menu span {
    font-weight: 600;
}

.brand strong {
    font-weight: 700;
}

.btn {
    font-weight: 700;
    letter-spacing: 0;
}

.hero-panel p {
    max-width: 560px;
}

.info-list strong {
    font-weight: 600;
    line-height: 1.35;
}

.bouquet-grid {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 8px;
}

.bouquet-card {
    min-height: 48px;
    padding: 8px 10px;
    gap: 8px;
    border-radius: 15px;
}

.bouquet-title {
    font-size: 13px;
    font-weight: 600;
}

.switch {
    width: 40px;
    height: 24px;
    padding: 3px;
}

.switch i {
    width: 18px;
    height: 18px;
}

.bouquet-card.enabled .switch i,
.bouquet-card input:checked + .switch i {
    transform: translateX(16px);
}

.playlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.playlist-box.wide {
    width: 100%;
}

@media (max-width: 600px) {
    .playlist-grid {
        grid-template-columns: 1fr;
    }
}

.form-notice.critical {
    padding: 21px 22px;
    border-width: 1px;
    border-color: rgba(255, 209, 102, .68);
    background:
        radial-gradient(circle at 9% 12%, rgba(255, 209, 102, .34), transparent 18rem),
        linear-gradient(135deg, rgba(255, 159, 28, .26), rgba(255, 61, 154, .18));
}

.form-notice.critical strong {
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.2;
}

.form-notice.critical span {
    color: #fff4d5;
    font-size: 15px;
}

@media (max-width: 1050px) {
    .site-header-inner {
        grid-template-columns: auto auto auto;
        justify-items: stretch;
    }

    .top-nav {
        width: max-content;
    }
}

@media (max-width: 820px) {
    .site-header-inner {
        grid-template-columns: 1fr auto;
        justify-content: stretch;
    }

    .top-nav {
        width: 100%;
    }

    body.nav-open .top-nav {
        width: 100%;
    }

    .user-menu {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .bouquet-grid {
        grid-template-columns: repeat(auto-fill, minmax(142px, 1fr));
        gap: 7px;
    }

    .bouquet-card {
        min-height: 46px;
        padding: 7px 9px;
    }

    .bouquet-title {
        font-size: 12.5px;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }
}

.brand-mark {
    font-size: 24px;
    letter-spacing: -.08em;
    font-weight: 800;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,.42), transparent 12px),
        linear-gradient(135deg, #00d4ff 0%, #36f1b7 42%, #8b5cf6 70%, #ff3d9a 100%);
    text-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.brand-mark::first-letter {
    font-weight: 800;
}

.nav-item,
.logout-link,
.btn,
.bouquet-title,
.form label span,
.alert,
.security-list li,
.user-menu span {
    font-weight: 550;
}

.brand strong {
    font-weight: 650;
}

.top-nav {
    justify-self: center;
    width: max-content;
}

.form-notice.critical {
    margin-bottom: 24px;
    border-color: rgba(255, 209, 102, .78);
}

.form-notice.critical strong {
    display: block;
    margin-bottom: 8px;
}

.security-card.emphasized {
    background:
        radial-gradient(circle at 12% 6%, rgba(0, 212, 255, .16), transparent 18rem),
        linear-gradient(145deg, rgba(20,26,64,.90), rgba(9,13,33,.80));
}

.bouquet-grid {
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 7px;
}

.bouquet-card {
    min-height: 44px;
    padding: 7px 9px;
}

.bouquet-title {
    font-size: 12.8px;
    line-height: 1.25;
}

.switch {
    flex: 0 0 auto;
}

@media (max-width: 820px) {
    .site-header {
        top: 0;
    }

    .site-header-inner {
        grid-template-columns: 1fr auto;
    }

    .top-nav {
        width: 100%;
        justify-self: stretch;
    }

    body.nav-open .top-nav {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .bouquet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bouquet-card {
        min-height: 42px;
    }
}

/* ── Light Theme ── */
[data-theme="light"] {
    --bg: #f0f2f7;
    --bg-deep: #e4e7ee;
    --surface: rgba(255, 255, 255, .92);
    --surface-strong: rgba(255, 255, 255, .97);
    --line: rgba(0, 0, 0, .1);
    --text: #1a1d2e;
    --muted: #5c6378;
    --primary: #0091c7;
    --primary-2: #7c3aed;
    --primary-3: #e0245e;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #d97706;
    --orange: #ea580c;
    --shadow: 0 26px 90px rgba(0, 0, 0, .1);
}

[data-theme="light"] body {
    background:
        radial-gradient(circle at 9% 10%, rgba(0, 145, 199, .08), transparent 24rem),
        radial-gradient(circle at 83% 2%, rgba(224, 36, 94, .06), transparent 30rem),
        radial-gradient(circle at 52% 84%, rgba(124, 58, 237, .06), transparent 28rem),
        linear-gradient(160deg, var(--bg-deep), var(--bg) 48%, #f0f2f7);
}

[data-theme="light"] body::before {
    background-image:
        linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 80%);
}

[data-theme="light"] .page-loader {
    background: rgba(240, 242, 247, .8);
}

[data-theme="light"] .login-card,
[data-theme="light"] .panel {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

[data-theme="light"] .bouquet-card {
    background: var(--surface);
    border: 1px solid var(--line);
}

[data-theme="light"] .bouquet-card:hover {
    border-color: var(--primary);
}

[data-theme="light"] input,
[data-theme="light"] select {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text);
}

[data-theme="light"] .stat-card {
    background: var(--surface);
    border: 1px solid var(--line);
}

[data-theme="light"] .alert-danger {
    background: rgba(220, 38, 38, .1);
    border: 1px solid rgba(220, 38, 38, .25);
    color: #991b1b;
}

[data-theme="light"] .alert-success {
    background: rgba(22, 163, 74, .1);
    border: 1px solid rgba(22, 163, 74, .25);
    color: #166534;
}

[data-theme="light"] .alert-warning {
    background: rgba(217, 119, 6, .1);
    border: 1px solid rgba(217, 119, 6, .25);
    color: #92400e;
}

[data-theme="light"] .copy-field input {
    background: #f8f9fa;
    border: 1px solid var(--line);
}

[data-theme="light"] .login-body {
    background: var(--bg);
}

[data-theme="light"] .site-header {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

[data-theme="light"] .site-footer {
    color: var(--muted);
}

[data-theme="light"] .brand-mark {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
}

/* Theme toggle button */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font-size: 16px;
    transition: all .2s ease;
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

/* ── Light Theme Fixes ── */
[data-theme="light"] .hero-panel {
    background:
        radial-gradient(circle at 7% 10%, rgba(0,145,199,.15), transparent 21rem),
        radial-gradient(circle at 94% 5%, rgba(224,36,94,.12), transparent 22rem),
        linear-gradient(135deg, rgba(255,255,255,.95), rgba(240,242,247,.95));
    border: 1px solid var(--line);
}

[data-theme="light"] .hero-panel p {
    color: #4a5568;
}

[data-theme="light"] .hero-panel h1 {
    color: #1a1d2e;
}

[data-theme="light"] .hero-panel::after {
    opacity: .1;
}

[data-theme="light"] .form-notice.critical {
    background: linear-gradient(135deg, rgba(254,243,199,.9), rgba(255,228,225,.7));
    border: 1px solid rgba(251,191,36,.4);
}

[data-theme="light"] .form-notice.critical span {
    color: #92400e;
}

[data-theme="light"] .form-notice.critical strong {
    color: #78350f;
}

[data-theme="light"] .password-panel .security-card {
    background: var(--surface);
    border: 1px solid var(--line);
}

[data-theme="light"] .security-card.emphasized {
    border-color: var(--primary);
    background: var(--surface);
}

[data-theme="light"] .security-list li {
    background: rgba(0,145,199,.06);
    border: 1px solid rgba(0,145,199,.12);
    color: #1a1d2e;
}

[data-theme="light"] .security-list li::before {
    background: var(--success);
    color: #fff;
}

[data-theme="light"] h1, [data-theme="light"] h2, [data-theme="light"] h3 {
    color: #1a1d2e;
}

[data-theme="light"] .eyebrow {
    color: var(--primary);
}

[data-theme="light"] .info-list div span {
    color: var(--muted);
}

[data-theme="light"] .info-list div strong {
    color: var(--text);
}

[data-theme="light"] .nav-item {
    color: var(--muted);
}

[data-theme="light"] .nav-item.active {
    color: var(--text);
    background: var(--surface);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

[data-theme="light"] .user-menu span {
    color: var(--text);
}

[data-theme="light"] .logout-link {
    color: var(--danger);
}

[data-theme="light"] .btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
}

[data-theme="light"] .btn.secondary {
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--text);
}

[data-theme="light"] .badge {
    background: rgba(0,145,199,.1);
    color: var(--primary);
    border: 1px solid rgba(0,145,199,.2);
}

[data-theme="light"] .empty-state {
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--text);
}

[data-theme="light"] .form label span {
    color: var(--text);
}

[data-theme="light"] .playlist-box span {
    color: var(--muted);
}

[data-theme="light"] .page-loader {
    background: rgba(240, 242, 247, .85);
}

[data-theme="light"] .loader-card {
    background: rgba(255, 255, 255, .95);
    border: 1px solid var(--line);
    color: var(--text);
}

[data-theme="light"] .loader-card strong {
    color: var(--text);
}

[data-theme="light"] .loader-card small {
    color: var(--muted);
}

[data-theme="light"] .sticky-actions {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .06);
}

[data-theme="light"] .form input:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(0, 145, 199, .15);
}

[data-theme="light"] .form input {
    color-scheme: light;
}

html[data-theme="light"] {
    color-scheme: light;
}

html[data-theme="dark"],
html:not([data-theme]) {
    color-scheme: dark;
}

/* ── Language Dropdown ── */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: all .2s ease;
    white-space: nowrap;
}

.lang-dropdown-btn:hover {
    border-color: var(--primary);
}

.lang-dropdown-btn .lang-arrow {
    font-size: 10px;
    opacity: .6;
    transition: transform .2s ease;
}

.lang-dropdown.open .lang-dropdown-btn .lang-arrow {
    transform: rotate(180deg);
}

/* Flag circles */
.lang-flag-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.lang-flag-circle[data-lang="tr"] { background: linear-gradient(180deg, #E30A17 0%, #E30A17 100%); }
.lang-flag-circle[data-lang="en"] { background: linear-gradient(180deg, #012169 0%, #012169 100%); }
.lang-flag-circle[data-lang="de"] { background: linear-gradient(180deg, #000 33%, #DD0000 33%, #DD0000 66%, #FFCC00 66%); }

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 160px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .2s ease;
    z-index: 100;
}

.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background .15s ease;
    white-space: nowrap;
}

.lang-dropdown-item:hover {
    background: rgba(0, 212, 255, .1);
}

.lang-dropdown-item.active {
    background: rgba(0, 212, 255, .15);
    color: var(--primary);
}

.lang-dropdown-item .lang-name {
    font-size: 13px;
}

/* Light mode dropdown */
[data-theme="light"] .lang-dropdown-menu {
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

[data-theme="light"] .lang-dropdown-item:hover {
    background: rgba(0, 145, 199, .08);
}

[data-theme="light"] .lang-dropdown-item.active {
    background: rgba(0, 145, 199, .12);
    color: var(--primary);
}

/* ── Content Page ── */
.content-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.content-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--surface);
    overflow: hidden;
    position: relative;
}

.content-stat-card::before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: .12;
}

.content-stat-card.cyan::before { background: var(--primary); }
.content-stat-card.green::before { background: var(--success); }
.content-stat-card.purple::before { background: var(--primary-2); }

.content-stat-icon {
    font-size: 36px;
    line-height: 1;
}

.content-stat-info strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.content-stat-info span {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.content-column h3 {
    font-size: 18px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--line);
}

.content-list {
    display: grid;
    gap: 8px;
}

.content-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--surface);
    transition: border-color .15s ease, transform .15s ease;
}

.content-item:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
}

.content-item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, .08);
    font-size: 20px;
}

.content-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-item-info {
    flex: 1;
    min-width: 0;
}

.content-item-info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 6px;
    background: rgba(0, 212, 255, .12);
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.content-date {
    flex-shrink: 0;
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    white-space: nowrap;
}

.content-empty {
    padding: 24px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    border: 1px dashed var(--line);
    border-radius: 14px;
}

/* Light mode content */
[data-theme="light"] .content-stat-card {
    background: #fff;
    border: 1px solid var(--line);
}

[data-theme="light"] .content-item {
    background: #fff;
    border: 1px solid var(--line);
}

[data-theme="light"] .content-item:hover {
    border-color: var(--primary);
}

[data-theme="light"] .content-badge {
    background: rgba(0, 145, 199, .1);
    color: var(--primary);
}

/* Mobile responsive */
@media (max-width: 1050px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .content-stat-card {
        padding: 16px;
    }

    .content-stat-info strong {
        font-size: 22px;
    }
}

/* ── Lightbox ── */
.content-item-icon.has-poster {
    cursor: pointer;
    transition: transform .2s ease;
}

.content-item-icon.has-poster:hover {
    transform: scale(1.08);
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -10px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .3);
}

.lightbox-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

[data-theme="light"] .lightbox-overlay {
    background: rgba(0, 0, 0, .7);
}

[data-theme="light"] .lightbox-close {
    background: rgba(0, 0, 0, .15);
    color: #000;
}

[data-theme="light"] .lightbox-close:hover {
    background: rgba(0, 0, 0, .25);
}

/* ── Web Player Page ── */
.wp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.wp-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--surface);
    text-decoration: none;
    color: var(--text);
    transition: all .2s ease;
}

.wp-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.wp-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.wp-card-info {
    flex: 1;
    min-width: 0;
}

.wp-card-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.wp-card-info span {
    font-size: 12px;
    color: var(--muted);
}

.wp-card-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, .1);
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    transition: all .2s ease;
}

.wp-card:hover .wp-card-arrow {
    background: var(--primary);
    color: #fff;
}

/* Light mode */
[data-theme="light"] .wp-card {
    background: #fff;
    border: 1px solid var(--line);
}

[data-theme="light"] .wp-card:hover {
    border-color: var(--primary);
}

[data-theme="light"] .wp-card-arrow {
    background: rgba(0, 145, 199, .1);
    color: var(--primary);
}

[data-theme="light"] .wp-card:hover .wp-card-arrow {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 600px) {
    .wp-grid {
        grid-template-columns: 1fr;
    }
}

/* ── App Store Page ── */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.store-card {
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--surface);
    overflow: hidden;
    transition: all .2s ease;
}

.store-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.store-card-header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.store-card-icon {
    font-size: 48px;
    filter: brightness(0) invert(1);
}

.store-card-body {
    padding: 16px;
    text-align: center;
}

.store-card-body strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.store-card-desc {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 10px;
}

.store-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 10px;
    background: rgba(0, 212, 255, .08);
    font-size: 12px;
}

.store-code span {
    color: var(--muted);
}

.store-code strong {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 0;
}

.store-card-actions {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
}

.store-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
    color: #fff;
}

.store-btn.download {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.store-btn.download:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.store-btn.share {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.store-btn.share:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* Light mode */
[data-theme="light"] .store-card {
    background: #fff;
    border: 1px solid var(--line);
}

[data-theme="light"] .store-card:hover {
    border-color: var(--primary);
}

[data-theme="light"] .store-code {
    background: rgba(0, 145, 199, .08);
}

[data-theme="light"] .store-code strong {
    color: var(--primary);
}

@media (max-width: 600px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .store-grid {
        grid-template-columns: 1fr;
    }
}

/* ── App Store Grid ── */
.store-apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
}

.store-app-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease;
}

.store-app-card:hover {
    transform: scale(1.02);
}

.store-app-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.store-app-img-placeholder {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 8px;
    background: rgba(0, 212, 255, .08);
    font-size: 48px;
}

.store-app-title {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.store-app-desc {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
    height: 32px;
    overflow: hidden;
    line-height: 1.3;
}

.store-app-code {
    background: rgba(0, 212, 255, .12);
    border: 1px solid rgba(0, 212, 255, .25);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 8px 10px;
    margin-bottom: 0;
    text-align: center;
    font-size: 12px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.store-app-code span {
    color: var(--muted);
    font-weight: 600;
}

.store-app-code strong {
    color: var(--primary);
    font-weight: 900;
    font-size: 14px;
}

.store-app-actions {
    margin-top: 0;
    padding-top: 0;
}

.store-app-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 10px 5px;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity .2s ease;
}

.store-app-btn:hover {
    opacity: .85;
}

.store-app-btn.download {
    background: #dc2626;
    border-radius: 0 0 10px 10px;
}

.store-app-btn.disabled {
    opacity: .5;
    cursor: not-allowed;
}

/* Tablet */
@media (min-width: 768px) {
    .store-apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (min-width: 1050px) {
    .store-apps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1300px) {
    .store-apps-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Light mode */
[data-theme="light"] .store-app-card {
    background: #fff;
    border: 1px solid var(--line);
}

[data-theme="light"] .store-app-card:hover {
    border-color: var(--primary);
}

[data-theme="light"] .store-app-code {
    background: rgba(0, 145, 199, .1);
    border: 1px solid rgba(0, 145, 199, .2);
}

[data-theme="light"] .store-app-code strong {
    color: var(--primary);
}

/* ══════════════════════════════════════════════
   RESELLER PANEL - Additional Styles
   ══════════════════════════════════════════════ */

/* ── Data Table ── */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
}

.data-table thead th {
    padding: 12px 10px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

.data-table tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    vertical-align: middle;
}

.data-table tbody tr {
    transition: background .15s ease;
}

.data-table tbody tr:hover {
    background: rgba(255,255,255,.04);
}

.data-table .username-cell {
    font-weight: 700;
    color: var(--text);
}

.data-table .actions-cell {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
}

/* ── Status Badges ── */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.status-badge.no-dot::before {
    display: none;
}

.status-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-active {
    background: rgba(49,245,154,.12);
    color: var(--success);
    border: 1px solid rgba(49,245,154,.25);
}
.status-active::before { background: var(--success); }

.status-expired {
    background: rgba(255,209,102,.12);
    color: var(--warning);
    border: 1px solid rgba(255,209,102,.25);
}
.status-expired::before { background: var(--warning); }

.status-banned {
    background: rgba(255,85,115,.12);
    color: var(--danger);
    border: 1px solid rgba(255,85,115,.25);
}
.status-banned::before { background: var(--danger); }

.status-disabled {
    background: rgba(148,163,184,.12);
    color: var(--muted);
    border: 1px solid rgba(148,163,184,.25);
}
.status-disabled::before { background: var(--muted); }

[data-theme="light"] .status-active {
    background: rgba(22,163,74,.08);
    border-color: rgba(22,163,74,.2);
    color: #16a34a;
}
[data-theme="light"] .status-expired {
    background: rgba(217,119,6,.08);
    border-color: rgba(217,119,6,.2);
    color: #d97706;
}
[data-theme="light"] .status-banned {
    background: rgba(220,38,38,.08);
    border-color: rgba(220,38,38,.2);
    color: #dc2626;
}
[data-theme="light"] .status-disabled {
    background: rgba(107,114,128,.08);
    border-color: rgba(107,114,128,.2);
    color: #6b7280;
}

/* ── Credit Display ── */
.credit-display {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: clamp(26px, 4vw, 42px);
    margin-bottom: 18px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 14% 30%, rgba(49,245,154,.18), transparent 18rem),
        radial-gradient(circle at 85% 10%, rgba(0,212,255,.14), transparent 16rem),
        linear-gradient(135deg, rgba(20,27,70,.92), rgba(12,16,42,.84));
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.credit-display::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 200px;
    height: 200px;
    border-radius: 999px;
    background: conic-gradient(from 180deg, var(--success), var(--primary), var(--primary-2), var(--success));
    opacity: .12;
    filter: blur(2px);
}

.credit-amount {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--success), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
}

.credit-label {
    color: var(--muted);
    font-weight: 700;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* ── Search Bar ── */
.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.search-bar input {
    flex: 1;
    min-width: 0;
}

.search-bar select {
    min-width: 140px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(4, 8, 24, .64);
    color: white;
    border-radius: 18px;
    padding: 14px 17px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.search-bar select:focus {
    border-color: rgba(0,212,255,.78);
    box-shadow: 0 0 0 5px rgba(0,212,255,.13);
}

[data-theme="light"] .search-bar select {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text);
}

/* ── Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: min(440px, 90vw);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(20,26,64,.95), rgba(10,14,34,.92));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.modal h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text);
}

.modal input {
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(4, 8, 24, .64);
    color: white;
    border-radius: 18px;
    font-size: 14px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.modal input::placeholder {
    color: rgba(167,180,207,.76);
}

.modal input:focus {
    border-color: rgba(0,212,255,.78);
    box-shadow: 0 0 0 5px rgba(0,212,255,.13);
}

/* Remove number input spinners */
.modal input[type="number"]::-webkit-outer-spin-button,
.modal input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.modal input[type="number"] {
    -moz-appearance: textfield;
}

[data-theme="light"] .modal {
    background: var(--surface);
}

[data-theme="light"] .modal input {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text);
}

.modal p {
    color: var(--muted);
    margin-bottom: 24px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* ── Filter Bar ── */
.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all .18s ease;
    text-decoration: none;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--text);
}

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

/* ── Quick Stats Row ── */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.quick-stat {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--surface);
    text-align: center;
}

.quick-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.quick-stat span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}

@media (max-width: 1050px) {
    .quick-stats { grid-template-columns: repeat(2, 1fr); }
    .data-table { font-size: 13px; }
}

@media (max-width: 600px) {
    .quick-stats { grid-template-columns: 1fr; }
    .search-bar { flex-direction: column; }
    .search-bar select { min-width: 100%; }
    .data-table { font-size: 12px; }
    .data-table thead th,
    .data-table tbody td { padding: 10px 12px; }
    .credit-display { flex-direction: column; text-align: center; }
}

/* ── Form Select ── */
.form-select {
    width: 100%;
    border: 1px solid rgba(255,255,255,.13);
    background-color: rgba(4, 8, 24, .64);
    color: white;
    border-radius: 18px;
    padding: 16px 40px 16px 17px;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    transition: border-color .18s ease, box-shadow .18s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
    position: relative;
}

.form-select:focus {
    border-color: rgba(0,212,255,.78);
    box-shadow: 0 0 0 5px rgba(0,212,255,.13);
}

.form-select option {
    background: #0a0e24;
    color: white;
    padding: 8px;
}

[data-theme="light"] .form-select {
    background-color: #fff;
    border: 1px solid var(--line);
    color: var(--text);
}

[data-theme="light"] .form-select option {
    background: #fff;
    color: var(--text);
}

/* ── Form Textarea ── */
.form textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(4, 8, 24, .64);
    color: white;
    border-radius: 18px;
    font-size: 14px;
    resize: vertical;
    outline: none;
    font-family: inherit;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.form textarea::placeholder {
    color: rgba(167,180,207,.76);
}

.form textarea:focus {
    border-color: rgba(0,212,255,.78);
    box-shadow: 0 0 0 5px rgba(0,212,255,.13);
}

[data-theme="light"] .form textarea {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text);
}

[data-theme="light"] .form textarea:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(0, 145, 199, .15);
}

/* ── Compact Form ── */
.compact-form label span {
    font-size: 14px;
    margin-bottom: 6px;
}

.compact-form input,
.compact-form textarea,
.compact-form select {
    height: 48px;
    padding: 12px 16px;
    font-size: 14px;
}

.compact-form textarea {
    height: auto;
    min-height: 80px;
    background: rgba(4, 8, 24, .64);
    border: 1px solid rgba(255,255,255,.13);
    color: white;
    border-radius: 18px;
    padding: 12px 16px;
    font-size: 14px;
    resize: vertical;
    width: 100%;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
    font-family: inherit;
}

.compact-form textarea::placeholder {
    color: rgba(167,180,207,.76);
}

.compact-form textarea:focus {
    border-color: rgba(0,212,255,.78);
    box-shadow: 0 0 0 5px rgba(0,212,255,.13);
}

[data-theme="light"] .compact-form textarea {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text);
}

.compact-form .quick-actions {
    margin-top: 20px;
}

/* ── Modern Search Bar Styles ── */
.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-bar input[type="text"],
.search-bar input[type="search"] {
    flex: 1;
    min-width: 220px;
    height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    box-sizing: border-box;
}

.search-bar input[type="text"]:focus,
.search-bar input[type="search"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.search-bar input[type="text"]::placeholder,
.search-bar input[type="search"]::placeholder {
    color: var(--muted);
    opacity: 0.8;
}

.search-bar select {
    height: 48px;
    padding: 0 36px 0 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: border-color .18s ease;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a7b4cf' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.search-bar select:focus {
    border-color: var(--primary);
}

.search-bar select option {
    background: var(--surface-strong, #1a1a2e);
    color: var(--text, #fff);
    padding: 10px;
}

.search-bar .btn {
    height: 48px;
    min-height: 48px;
    border-radius: 14px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ── Language Dropdown Styles ── */
.lang-dropdown {
    position: relative;
    display: inline-block;
}
.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    padding: 6px;
    border-radius: 16px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow, 0 12px 30px rgba(0,0,0,0.3));
    z-index: 1000;
}
.lang-dropdown.open .lang-dropdown-menu {
    display: block;
}
.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    color: var(--text);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: background .15s;
}
.lang-dropdown-item:hover {
    background: rgba(255,255,255,.08);
}
[data-theme="light"] .lang-dropdown-item:hover {
    background: rgba(0,0,0,.06);
}
 / *    % %  B o u q u e t   G r i d    % %  * / 
 . b o u q u e t - g r i d   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   m i n m a x ( 0 ,   1 f r ) ) ; 
         g a p :   1 4 p x ; 
 } 
 . b o u q u e t - c a r d   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   a u t o   1 f r ; 
         g a p :   1 4 p x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         m i n - h e i g h t :   7 0 p x ; 
         p a d d i n g :   1 4 p x   1 8 p x ; 
         b o r d e r - r a d i u s :   1 6 p x ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , . 1 1 ) ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , . 0 5 5 ) ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   t r a n s f o r m   . 1 8 s   e a s e ,   b o r d e r - c o l o r   . 1 8 s   e a s e ,   b a c k g r o u n d   . 1 8 s   e a s e ,   b o x - s h a d o w   . 1 8 s   e a s e ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
         u s e r - s e l e c t :   n o n e ; 
 } 
 [ d a t a - t h e m e = \  
 l i g h t \ ]   . b o u q u e t - c a r d   { 
         b o r d e r - c o l o r :   r g b a ( 0 , 0 , 0 , . 1 1 ) ; 
         b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , . 0 3 ) ; 
 } 
 . b o u q u e t - c a r d : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;   b o r d e r - c o l o r :   r g b a ( 0 , 2 1 2 , 2 5 5 , . 3 8 ) ;   } 
 . b o u q u e t - c a r d   i n p u t   {   p o s i t i o n :   a b s o l u t e ;   o p a c i t y :   0 ;   p o i n t e r - e v e n t s :   n o n e ;   } 
 . b o u q u e t - t i t l e   {   m i n - w i d t h :   0 ;   f o n t - w e i g h t :   7 0 0 ;   f o n t - s i z e : 1 3 p x ;   l i n e - h e i g h t :   1 . 3 ;   } 
 . b o u q u e t - c a r d . e n a b l e d ,   . b o u q u e t - c a r d : h a s ( i n p u t : c h e c k e d )   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   r g b a ( 0 , 2 1 2 , 2 5 5 , . 1 5 ) ,   r g b a ( 4 9 , 2 4 5 , 1 5 4 , . 1 0 ) ) ; 
         b o r d e r - c o l o r :   r g b a ( 0 , 2 1 2 , 2 5 5 , . 3 4 ) ; 
         b o x - s h a d o w :   i n s e t   0   0   0   1 p x   r g b a ( 0 , 2 1 2 , 2 5 5 , . 0 8 ) ,   0   1 6 p x   3 6 p x   r g b a ( 0 , 2 1 2 , 2 5 5 , . 0 8 ) ; 
 } 
 . s w i t c h   { 
         w i d t h :   5 0 p x ; 
         h e i g h t :   2 8 p x ; 
         b o r d e r - r a d i u s :   9 9 9 p x ; 
         b a c k g r o u n d :   r g b a ( 1 4 8 , 1 6 3 , 1 8 4 , . 2 5 ) ; 
         p a d d i n g :   3 p x ; 
         t r a n s i t i o n :   b a c k g r o u n d   . 1 8 s   e a s e ; 
         b o x - s i z i n g :   b o r d e r - b o x ; 
 } 
 . s w i t c h   i   { 
         d i s p l a y :   b l o c k ; 
         w i d t h :   2 2 p x ; 
         h e i g h t :   2 2 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         b a c k g r o u n d :   w h i t e ; 
         t r a n s i t i o n :   t r a n s f o r m   . 1 8 s   e a s e ; 
         b o x - s h a d o w :   0   5 p x   1 6 p x   r g b a ( 0 , 0 , 0 , . 2 8 ) ; 
 } 
 . b o u q u e t - c a r d . e n a b l e d   . s w i t c h , 
 . b o u q u e t - c a r d   i n p u t : c h e c k e d   +   . s w i t c h   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - s u c c e s s ) ,   v a r ( - - p r i m a r y ) ) ; 
 } 
 . b o u q u e t - c a r d . e n a b l e d   . s w i t c h   i , 
 . b o u q u e t - c a r d   i n p u t : c h e c k e d   +   . s w i t c h   i   { 
         t r a n s f o r m :   t r a n s l a t e X ( 2 2 p x ) ; 
 } 
 @ m e d i a ( m a x - w i d t h :   9 0 0 p x )   { 
         . b o u q u e t - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   m i n m a x ( 0 ,   1 f r ) ) ;   } 
 } 
 @ m e d i a ( m a x - w i d t h :   6 0 0 p x )   { 
         . b o u q u e t - g r i d   {   g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   } 
 } 
  
 