@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;0,800;1,600;1,700&family=DM+Sans:wght@300;400;500;700;800&display=swap");

:root{
    /* OksanaLove unified palette — aligned with style16_spark_unified_palette.css */
    --bg: #f4fbff;
    --card: #ffffff;
    --text: #123047;
    --muted: #66798a;
    --line: rgba(7, 152, 209, 0.16);

    --brand: #0798d1;
    --brand-2: #0577a6;
    --brand-soft: #eaf7fc;
    --brand-soft-2: #f4fbff;

    --gold: #d6a93a;
    --gold-2: #f2d874;
    --gold-soft: #fff8df;
    --gold-line: rgba(214, 169, 58, 0.28);

    --navy: #08283d;
    --navy-2: #0d3d5b;
    --rose: #b94a6f;
    --rose-soft: #fff1f6;
    --success: #2f9e6d;
    --success-soft: #edf9f3;

    --danger: var(--rose);

    --shadow: 0 10px 30px rgba(8, 40, 61, 0.08);
    --shadow-md: 0 16px 44px rgba(8, 40, 61, 0.12);
    --radius: 18px;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "DM Sans", Arial, Helvetica, sans-serif;
}

*{ box-sizing: border-box; }
body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    color: var(--text);
    /*background:
            radial-gradient(1200px 600px at 30% -10%, rgba(37,99,235,.10), transparent 55%),
            radial-gradient(900px 500px at 100% 0%, rgba(239,68,68,.08), transparent 50%),
            var(--bg);*/
}

.page{
    max-width: 1120px;
    margin: 28px auto;
    padding: 0 16px 40px;
}

/* Shared card */
.card{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow:hidden;
}

/* Top unified header */
/* ? FIX: top header must be one row */
.top-unified{
    padding: 18px 18px;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: center;
}

@media (max-width: 900px){
    .top-unified{ grid-template-columns: 1fr; }
}

.top-left, .top-right{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
}

.top-meta{ min-width: 0; }
.sep{ display:none; }
.k{
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 2px;
}
.v{
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .2px;
    line-height: 1.2;
}
.v small{
    font-weight: 800;
    color: var(--muted);
    font-size: 18px;
}

.pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
    background: #fff;
}
.pill strong{ color: var(--text); }

.status{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background:#fff;
    color: var(--muted);
    font-weight: 800;
    white-space: nowrap;
}
.status .dot{
    width: 24px; height: 24px;
    border-radius: 10px;
    display:grid;
    place-items:center;
    border: 1px solid rgba(34,197,94,.25);
    background: rgba(34,197,94,.10);
    color: var(--success);
    font-weight: 900;
    line-height: 1;
}
/*.dot_red{
    width: 24px; height: 24px;
    border-radius: 10px;
    display:grid;
    place-items:center;
    border: 1px solid rgba(244, 63, 94, 0.35);
    background: rgba(244, 63, 94, 0.15);
    color: var(--rose);
    font-weight: 900;
    line-height: 1;
}*/
.top-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:flex-end;
    align-items:center;
}

/* Matchmaking Center � pink/red header */
#block-matchmaking-center .block__head{
    background: linear-gradient(
            135deg,
            #ffe4e8 0%,
            #ffd1d9 40%,
            #ffb3c1 100%
    );
    border-bottom: 1px solid rgba(220, 38, 38, 0.18);
}

#block-matchmaking-center .block__title h2{
    color: #8e3555; /* deep rose */
}

#block-matchmaking-center .block__title p{
    color: #6f4450;
}

/* Heart icon accent */
#block-matchmaking-center .icon{
    background: rgba(244, 63, 94, 0.15);
    border-color: rgba(244, 63, 94, 0.35);
    color: var(--rose);
}

/* Next step badge */
#block-matchmaking-center .badge{
    background: rgba(255,255,255,0.7);
    border-color: rgba(225, 29, 72, 0.35);
    color: #8e3555;
}
/* Messages preview list */
.msg-preview{
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.msg-item{
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.msg-avatar{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--line);
    flex: 0 0 auto;
    background: var(--brand-soft-2);
}

.msg-body{
    min-width: 0;
    flex: 1;
}

.msg-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.msg-name{
    font-weight: 900;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.msg-time{
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
    white-space: nowrap;
}

.msg-snippet{
    margin-top: 3px;
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.msg-unread-dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
    flex: 0 0 auto;
}
.msg-red-dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--rose);
    box-shadow: 0 0 0 4px rgba(244, 63, 9,0.12);
    flex: 0 0 auto;
}

.msg-more{
    margin-top: 10px;
    font-size: 13px;
    color: var(--muted);
}
.msg-more a{
    color: var(--brand);
    font-weight: 900;
    text-decoration: none;
}
.msg-more a:hover{ text-decoration: underline; }

/* About Me � client photo */
.about-photo{
    width: 100px;
    height: 140px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--line);
    background: var(--brand-soft-2);
    flex-shrink: 0;
}
/* Layout columns */
.grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
    align-items:start;
}
@media (max-width: 980px){
    .grid{ grid-template-columns: 1fr; }
}
.stack{ display:grid; gap: 16px; }

/* Block styling */
.block{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow:hidden;
}
.block__head{
    padding: 14px 16px;
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15,23,42,.02), transparent);
}
.block__title{
    display:flex;
    align-items:center;
    gap: 10px;
    min-width: 0;
}
.icon{
    width: 36px; height: 36px;
    border-radius: 12px;
    display:grid;
    place-items:center;
    flex: 0 0 auto;
    font-weight: 900;
    border: 1px solid rgba(37,99,235,.15);
    background: rgba(37,99,235,.10);
    color: var(--brand);
}
.block__title h2{
    margin:0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .2px;
}
.block__title p{
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.25;
    overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 520px;
}
.badge{
    font-size: 12px;
    color: var(--muted);
    border: 1px solid var(--line);
    padding: 6px 10px;
    border-radius: 999px;
    background:#fff;
    white-space: nowrap;
}
.block__body{ padding: 14px 16px 16px; }

/* Buttons */
.primary{
    display:flex;
    gap: 12px;
    align-items: stretch;
    flex-wrap: wrap;
}
/* Events rows � softer, left-aligned */
.events-rows{
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.event-row{
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    background: #fff;
}

.event-row__top{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

@media (max-width: 560px){
    .event-row__top{
        grid-template-columns: 1fr;
    }
    .event-row__top .btn{
        width: 100%;
        justify-content: center;
    }
}

.event-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
    color: var(--text);
    font-weight: 900;
    font-size: 15px;
    padding: 8px 6px; /* clickable area without looking like a button */
    border-radius: 12px;
}

.event-link:hover{
    background: rgba(15, 23, 42, 0.03);
}

.event-link__icon{
    width: 34px; height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(37,99,235,.15);
    background: rgba(37,99,235,.08);
    color: var(--brand);
    flex: 0 0 auto;
    font-weight: 900;
}

.event-link__text{
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-link__title{
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-link__sub{
    font-size: 12px;
    color: var(--muted);
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* portal inside row should feel tighter */
.event-row .portal{
    margin-top: 10px;
    padding-top: 10px;
}
.btn{
    appearance:none;
    border: 1px solid transparent;
    cursor:pointer;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 900;
    font-size: 14px;
    /*display:inline-flex;line-height: 1;*/
    align-items:center;
    justify-content:center;
    gap: 10px;
    text-decoration:none;
    user-select:none;
    transition: transform .05s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
    background: linear-gradient(180deg, rgba(37,99,235,1), rgba(29,78,216,1));
    color: #fff;
    box-shadow: 0 8px 18px rgba(37,99,235,.22);
}
.btn-primary:hover{ box-shadow: 0 10px 22px rgba(37,99,235,.28); }

.btn-ghost{
    background: #fff;
    border-color: var(--line);
    color: var(--text);
}
.btn-ghost:hover{ border-color: #cbd5e1; }

.btn-danger{
    background:#fff;
    border-color: rgba(239,68,68,.35);
    color: var(--danger);
}
.btn-danger:hover{ border-color: rgba(239,68,68,.55); }

.hint{
    margin-top: 10px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.35;
}

/* Portal */
.portal{
    margin-top: 14px;
    border-top: 1px dashed var(--line);
    padding-top: 14px;
    display:none;
}
.portal.is-open{ display:block; }

.list{
    display:grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style:none;
}
.list a{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    text-decoration:none;
    color: var(--text);
    background: #fff;
}
.list a:hover{ border-color: #cbd5e1; }
.list small{
    color: var(--muted);
    font-weight: 800;
    font-size: 12px;
}
.chev{ color:#93a7b8; font-weight: 900; }

/* Icon variants */
.i-user{ background: rgba(16,185,129,.10); color: #267b61; border-color: rgba(16,185,129,.18); }
.i-msg { background: rgba(59,130,246,.10); color: var(--brand-2); border-color: rgba(59,130,246,.18); }
.i-gear{ background: rgba(100,116,139,.10); color: var(--text); border-color: rgba(100,116,139,.18); }
.i-gift{ background: rgba(245,158,11,.12); color: #8f6a1c; border-color: rgba(245,158,11,.20); }
.i-search{ background: rgba(168,85,247,.10); color: var(--brand-2); border-color: rgba(168,85,247,.18); }
.i-heart{ background: rgba(239,68,68,.08); color: var(--danger); border-color: rgba(239,68,68,.15); }
.i-crown{ background: rgba(245,158,11,.12); color: #8f6a1c; border-color: rgba(245,158,11,.20); }
.i-cal{ background: rgba(168,85,247,.10); color: var(--brand-2); border-color: rgba(168,85,247,.18); }

/* Tiny helpers */
.sep{
    height: 1px;
    background: var(--line);
    width: 100%;
    margin: 2px 0;
    opacity: .7;
}
/* Matchmaking video */
.mm-video{
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 14px;
    padding: 12px;
    border-radius: 14px;
    background: var(--brand-soft-2);
    border: 1px solid var(--line);
}

.mm-video-thumb{
    position: relative;
    width: 120px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.mm-video-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mm-video-play{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    border: 0;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

.mm-video-text{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mm-video-text strong{
    font-size: 14px;
}

.mm-video-text span{
    font-size: 13px;
    color: var(--muted);
}
/* === Dating Mastery Club � premium card (badge + subtle shine) === */
.dmc-card{
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 18px 20px;
    border-radius: 18px;
    cursor: pointer;
    text-decoration: none;

    background: linear-gradient(
            135deg,
            #fff3c4 0%,
            #ffe08a 45%,
            #f5c46b 100%
    );

    border: 1px solid rgba(180, 130, 20, 0.25);
    box-shadow:
            0 12px 28px rgba(180, 130, 20, 0.22),
            inset 0 1px 0 rgba(255,255,255,0.6);

    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.dmc-card:hover{
    transform: translateY(-1px);
    filter: saturate(1.03);
    box-shadow:
            0 18px 36px rgba(180, 130, 20, 0.30),
            inset 0 1px 0 rgba(255,255,255,0.7);
}

.dmc-card:active{
    transform: translateY(0px);
}

.dmc-icon{
    width: 54px;
    height: 54px;
    border-radius: 16px;

    display: grid;
    place-items: center;

    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(180,130,20,0.35);

    font-size: 26px;
    flex-shrink: 0;
}

.dmc-text{
    font-size: 18px;
    font-weight: 900;
    color: #5b3a00;
    letter-spacing: 0.3px;
    line-height: 1.1;
}

.dmc-sub{
    font-size: 13px;
    font-weight: 800;
    color: rgba(91,58,0,0.78);
    margin-top: 3px;
}

/* Badge (top-right) */
.dmc-badge{
    position: absolute;
    top: 12px;
    right: 12px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 10px;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 900;
    color: rgba(91,58,0,0.90);

    background: rgba(255,255,255,0.60);
    border: 1px solid rgba(180,130,20,0.30);
    backdrop-filter: blur(6px);
}

.dmc-badge .dot{
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}

/* Subtle shine */
.dmc-card::before{
    content: "";
    position: absolute;
    top: -40%;
    left: -60%;
    width: 50%;
    height: 180%;
    transform: rotate(18deg);

    background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0.25) 45%,
            rgba(255,255,255,0.55) 55%,
            rgba(255,255,255,0.25) 65%,
            transparent 100%
    );

    opacity: 0;
    pointer-events: none;
}

/* On hover, sweep once */
.dmc-card:hover::before{
    opacity: 1;
    animation: dmcShine 0.9s ease-out forwards;
}

@keyframes dmcShine{
    0%   { left: -60%; opacity: 0; }
    15%  { opacity: 0.55; }
    100% { left: 120%; opacity: 0; }
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce){
    .dmc-card, .dmc-card:hover{ transition: none; }
    .dmc-card::before, .dmc-card:hover::before{ animation: none; opacity: 0; }
}

/* Dating Mastery Club image */
.dmc-photo{
    width: 54px;
    height: 54px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(180,130,20,0.35);
    background: #fff;
    flex-shrink: 0;
}

/* Girl interview banner */
.girl-banner{
    padding: 0;
    overflow: hidden;
}

.girl-banner-link{
    display: block;
    position: relative;
}

.girl-banner-link img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.girl-banner-overlay{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px;

    background: linear-gradient(
            to top,
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.15) 40%,
            transparent 70%
    );
}

.girl-banner-play{
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: grid;
    place-items: center;

    background: rgba(255,255,255,0.95);
    color: #111;
    font-size: 20px;
    font-weight: 900;
}

.girl-banner-text{
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .2px;
}
/* Soft blue headers for all sections EXCEPT Matchmaking Center */
.block:not(#block-matchmaking-center) > .block__head{
    background: linear-gradient(180deg, #f5faff 0%, #eef6ff 100%);
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

.block:not(#block-matchmaking-center) .block__head h2{
    color: var(--navy);
}

.block:not(#block-matchmaking-center) .block__head p{
    color: var(--muted);
}

/* ===== No-subscription top block ===== */
/* ===== Top no-subscription (aligned with system UI) ===== */
.top-nosub{
    padding: 0;
}

.nosub-grid{
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 16px;
}

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

/* left = regular card content */
.nosub-left{
    padding: 18px;
}

.nosub-left h2{
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 900;
}

.nosub-left p{
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

/* right = hero */
.nosub-hero{
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    align-items: center;
}

.nosub-hero-inner{
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    align-items: center;
}

@media (max-width: 520px){
    .nosub-hero-inner{
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.nosub-hero h3{
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 900;
}

.nosub-hero p{
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
}

.hero-section {
    background: linear-gradient(
            135deg,
            #043a56 0%,
            #065075 45%,
            #0778b0 100%
    );
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 75% 20%, rgba(255,255,255,0.14), transparent 55%);
    pointer-events: none;
}

/* Concierge photo (hero) */
.concierge-photo{
    width: 110px;
    height: 110px;
    border-radius: 999px;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.9);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ===== Top announcement banner (dashboard) ===== */
.top-announcement{
    background: linear-gradient(
            180deg,
            #eef6ff 0%,
            #e3f0ff 100%
    );
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 18px;
}

.top-announcement-inner{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
}

@media (max-width: 700px){
    .top-announcement-inner{
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.top-announcement h2{
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 900;
    color: var(--navy);
}

.top-announcement p{
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.top-announcement .btn{
    white-space: nowrap;
}


.girl-gallery{ padding: 0; overflow: hidden; }
.girl-gallery__frame{
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

/* Make gallery link/img/overlay look like existing .girl-banner-* */
.girl-gallery__link{
    display: block;
    position: relative;
}

/* same sizing as your banner */
.girl-gallery__img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* mimic your .girl-banner-overlay */
.girl-gallery__overlay{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px;

    background: linear-gradient(
            to top,
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.15) 40%,
            transparent 70%
    );
}

/* mimic your play badge */
.girl-gallery__play{
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: grid;
    place-items: center;

    background: rgba(255,255,255,0.95);
    color: #111;
    font-size: 20px;
    font-weight: 900;
}

/* mimic your banner text */
.girl-gallery__text{
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .2px;
}

/* ===============================
   Carousel controls (new)
================================ */

/* arrows � subtle, same vibe as overlay */
.girl-gallery__nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 26px;
    line-height: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
}

.girl-gallery__nav:hover{ background: rgba(0,0,0,0.45); }

.girl-gallery__prev{ left: 10px; }
.girl-gallery__next{ right: 10px; }

/* dots */
.girl-gallery__dots{
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 10px 0 14px;
}

.girl-gallery__dot{
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(15,23,42,0.25);
    cursor: pointer;
}

.girl-gallery__dot.is-active{
    background: rgba(37,99,235,0.85);
}

/* optional: hide arrows on very small screens (leave swipe) */
@media (max-width: 420px){
    .girl-gallery__nav{ display: none; }
}

/* =========================================================
   OksanaLove Unified Palette Patch — dashboard / alex_new.css
   Purpose: make My OksanaLove dashboard calmer and consistent
   with the main site palette: navy + soft blue + warm gold.
   ========================================================= */

body{
    font-family: var(--sans);
    color: var(--text);
}

.page{
    background:
        radial-gradient(900px 420px at 18% -12%, rgba(7,152,209,.10), transparent 58%),
        radial-gradient(820px 420px at 100% 0%, rgba(214,169,58,.08), transparent 52%);
}

.card,
.block{
    border-color: var(--line) !important;
    box-shadow: var(--shadow) !important;
}

.v,
.block__title h2,
.nosub-left h2,
.nosub-hero h3,
.top-announcement h2{
    color: var(--navy) !important;
}

.k,
.block__title p,
.hint,
.msg-time,
.msg-snippet,
.msg-more,
.mm-video-text span,
.event-link__sub,
.nosub-left p,
.top-announcement p{
    color: var(--muted) !important;
}

.pill,
.status,
.badge,
.msg-item,
.event-row,
.list a,
.mm-video{
    border-color: var(--line) !important;
    background: #fff !important;
}

.status .dot,
.dmc-badge .dot{
    background: var(--success) !important;
    box-shadow: 0 0 0 3px rgba(47,158,109,.13) !important;
}
.status .dot{
    border-color: rgba(47,158,109,.22) !important;
    color: var(--success) !important;
    background: var(--success-soft) !important;
}

/* Section headers: one calm blue system */
.block:not(#block-matchmaking-center) > .block__head,
.top-announcement{
    background: linear-gradient(180deg, #f7fcff 0%, var(--brand-soft) 100%) !important;
    border-color: var(--line) !important;
}

.block:not(#block-matchmaking-center) .block__head h2{
    color: var(--navy) !important;
}

/* Matchmaking block: no loud pink, just warm premium accent */
#block-matchmaking-center .block__head{
    background: linear-gradient(135deg, #fffdf6 0%, var(--gold-soft) 52%, #f2fbff 100%) !important;
    border-bottom: 1px solid var(--gold-line) !important;
}
#block-matchmaking-center .block__title h2{
    color: var(--navy) !important;
}
#block-matchmaking-center .block__title p{
    color: var(--muted) !important;
}
#block-matchmaking-center .icon{
    background: rgba(214,169,58,.13) !important;
    border-color: var(--gold-line) !important;
    color: #9b7420 !important;
}
#block-matchmaking-center .badge{
    background: rgba(255,255,255,.76) !important;
    border-color: var(--gold-line) !important;
    color: #8b6a1f !important;
}

/* Icons: reduce rainbow effect */
.icon,
.event-link__icon{
    background: rgba(7,152,209,.09) !important;
    border-color: rgba(7,152,209,.16) !important;
    color: var(--brand-2) !important;
}
.i-user,
.i-msg,
.i-gear,
.i-search,
.i-cal{
    background: rgba(7,152,209,.09) !important;
    border-color: rgba(7,152,209,.16) !important;
    color: var(--brand-2) !important;
}
.i-gift,
.i-crown{
    background: rgba(214,169,58,.14) !important;
    border-color: var(--gold-line) !important;
    color: #8b6a1f !important;
}
.i-heart{
    background: var(--rose-soft) !important;
    border-color: rgba(185,74,111,.18) !important;
    color: var(--rose) !important;
}

/* Buttons */
.btn-primary,
.btn-blue,
.primary .btn-primary{
    background: linear-gradient(135deg, var(--brand-2), var(--brand)) !important;
    color: #fff !important;
    box-shadow: 0 9px 24px rgba(7,152,209,.22) !important;
}
.btn-primary:hover,
.btn-blue:hover{
    box-shadow: 0 12px 30px rgba(7,152,209,.30) !important;
}
.btn-ghost{
    background: #fff !important;
    border-color: var(--line) !important;
    color: var(--text) !important;
}
.btn-ghost:hover,
.list a:hover{
    border-color: rgba(7,152,209,.28) !important;
    background: var(--brand-soft-2) !important;
}
.btn-danger{
    background: #fff !important;
    border-color: rgba(185,74,111,.22) !important;
    color: var(--rose) !important;
}

/* Messages */
.msg-unread-dot,
.girl-gallery__dot.is-active{
    background: var(--brand) !important;
    box-shadow: 0 0 0 4px rgba(7,152,209,.12) !important;
}
.msg-red-dot{
    background: var(--rose) !important;
    box-shadow: 0 0 0 4px rgba(185,74,111,.12) !important;
}
.msg-more a{
    color: var(--brand-2) !important;
}

/* Premium Dating Mastery Club: softer gold, less yellow */
.dmc-card{
    background:
        radial-gradient(circle at 12% 8%, rgba(255,255,255,.62), transparent 34%),
        linear-gradient(135deg, #fff8df 0%, #f2d874 48%, #d6a93a 100%) !important;
    border-color: var(--gold-line) !important;
    box-shadow:
        0 12px 28px rgba(214,169,58,.18),
        inset 0 1px 0 rgba(255,255,255,.62) !important;
}
.dmc-card:hover{
    box-shadow:
        0 18px 38px rgba(214,169,58,.24),
        inset 0 1px 0 rgba(255,255,255,.72) !important;
}
.dmc-text{
    color: #5c4313 !important;
}
.dmc-sub,
.dmc-badge{
    color: rgba(92,67,19,.78) !important;
}
.dmc-icon,
.dmc-photo,
.dmc-badge{
    border-color: var(--gold-line) !important;
}

/* Hero / concierge areas */
.hero-section{
    background:
        radial-gradient(circle at 75% 20%, rgba(255,255,255,.14), transparent 55%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 48%, var(--brand-2) 100%) !important;
}
.nosub-hero p{
    color: rgba(240,248,252,.90) !important;
}
.concierge-photo{
    border-color: rgba(255,255,255,.88) !important;
}

/* Video / girl banners */
.girl-banner-overlay,
.girl-gallery__overlay{
    background: linear-gradient(
        to top,
        rgba(8,40,61,.72),
        rgba(8,40,61,.24) 43%,
        transparent 72%
    ) !important;
}
.girl-banner-play,
.girl-gallery__play{
    background: rgba(255,255,255,.94) !important;
    color: var(--navy) !important;
}
.girl-gallery__nav{
    border-color: rgba(255,255,255,.34) !important;
    background: rgba(8,40,61,.44) !important;
}
.girl-gallery__nav:hover{
    background: rgba(8,40,61,.58) !important;
}
.girl-gallery__dot{
    background: rgba(8,40,61,.24) !important;
}

/* Links and hover states */
a,
.event-link,
.list a{
    color: var(--text);
}
a:hover,
.event-link:hover{
    color: var(--brand-2);
}
.event-link:hover{
    background: rgba(7,152,209,.055) !important;
}

/* Slightly more premium headings inside dashboard */
.block__title h2,
.v,
.nosub-left h2,
.nosub-hero h3,
.top-announcement h2{
    letter-spacing: .01em;
}

