:root {
    --bg: #0f172a;
    --bg-alt: #0f172a;
    --ink: #f4f4f5;
    --muted: #b7b8c5;
    --panel: #232636;
    --panel-soft: #2b3045;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.18);
    --shadow: 0 22px 60px rgba(9, 12, 22, 0.18);
    --blue-a: #4d76d1;
    --blue-b: #2d4f9e;
    --green-a: #88b962;
    --green-b: #5d8e43;
    --amber-a: #ffcc64;
    --amber-b: #d79d2d;
    --red-a: #ec9a8c;
    --red-b: #c9655a;
    --font-ui: "Trebuchet MS", "Lucida Sans Unicode", sans-serif;
    --font-display: "Gill Sans", "Trebuchet MS", sans-serif;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-ui);
    color: #17181d;
    background:
        #0f172a;
}

body.overlay-page {
    background:
        linear-gradient(rgba(8, 10, 18, 0.82), rgba(8, 10, 18, 0.82)),
        linear-gradient(180deg, #1b1d29 0%, #10131d 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

code {
    padding: 2px 6px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #f8f7ff;
}

input,
select,
textarea,
button {
    font: inherit;
}
/* ===== HERO TEXT GLOW ===== */

.hero-text {
    margin-top: 12px;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
font-size: 1.20rem;
    /* Blue glow effect */
    text-shadow: 
       0 4px 12px rgba(83 159 87 / 50%)
}


/* ===== BUTTON GLOW EFFECT ===== */

.hero-btn {
    position: relative;
    overflow: hidden;

    background: linear-gradient(90deg, #4e73df, #224abe);
    border-radius: 10px;

    /* Main shadow */
       transform: translateY(-5px);
    box-shadow:
        0 12px 40px rgba(0,0,0,0.8),
        0 0 25px rgba(255, 215, 0, 0.2);

    transition: all 0.3s ease;
}



/* Optional glow animation */
.hero-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;

    background: radial-gradient(circle, rgba(78,115,223,0.3), transparent 70%);
    opacity: 0;
    transition: 0.3s;
}

.hero-btn:hover::after {
    opacity: 1;
}
.site-shell {
    min-height: 100vh;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.container.narrow {
    width: min(760px, calc(100% - 32px));
}

.page-space {
    padding: 28px 0 54px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(90deg, #000, #1a1a1a);
    border-bottom: 1px solid rgba(40, 44, 61, 0.08);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: #ffffff;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #fff;
    background:
        linear-gradient(145deg, #3d4360, #25293a);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.main-nav,
.account-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.98rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
    background: rgba(46, 67, 116, 0.08);
}

.user-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(31, 36, 51, 0.08);
    color: #1d2332;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    color: #fff;
    background: linear-gradient(180deg, var(--blue-a), var(--blue-b));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 8px 20px rgba(34, 56, 114, 0.26);
}

.account-actions .button.primary,
.hero-actions .button.primary {
    background: linear-gradient(180deg, var(--green-a), var(--green-b));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 8px 20px rgba(72, 102, 51, 0.24);
}

.button.ghost {
    color: #edf0f7;
    background: linear-gradient(180deg, #34384d, #25293b);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button.small {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 0.92rem;
}

.button.block {
    width: 100%;
}

.button.disabled {
    pointer-events: none;
    opacity: 0.55;
}

.button-row,
.button-stack,
.hero-actions,
.header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button-row.centered {
    justify-content: center;
}

.button-stack {
    flex-direction: column;
}

.stacked {
    flex-direction: column;
    align-items: flex-end;
}

.flash {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-radius: 16px;
    color: #fff;
    box-shadow: var(--shadow);
}

.flash-success {
    background: linear-gradient(180deg, #6ca25d, #4f7b45);
}

.flash-error {
    background: linear-gradient(180deg, #c56d62, #974945);
}

.flash-warning {
    background: linear-gradient(180deg, #6f7288, #4c4f64);
}

.hero-card,
.mini-panel,
.device-card,
.auth-card,
.info-card,
.detail-card,
.summary-card,
.confirmation-card,
.warning-modal {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    color: var(--ink);
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 32%),
        linear-gradient(180deg, rgba(42, 46, 64, 0.98), rgba(29, 32, 46, 0.99));
    box-shadow: var(--shadow);
}

.hero-card::before,
.panel::before,
.mini-panel::before,
.auth-card::before,
.detail-card::before,
.confirmation-card::before,
.warning-modal::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 32%),
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.hero-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(145deg, #121826, #0b0f1a)
}

.hero-copy h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(78,115,223,0.5);
}
.hero-copy p {
    margin-top: 10px;
    color: #9ea5b8;
}
.eyebrow,
.panel-label {
    display: inline-flex;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.76rem;
    color: #9ab4ff;
}

.hero-copy h1,
.auth-card h1,
.page-heading h1,
.detail-card h1,
.confirmation-card h1 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    line-height: 1.4s5;
}

.info-card p,
.page-heading p,
.card-copy,
.notes-box p,
.warning-body p,
.muted-copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.hero-visual {
    display: flex;
    align-items: stretch;
    min-height: 300px;
}

.poster-art {
    position: relative;
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 10px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 34%, rgba(255, 255, 255, 0.3) 34% 37%, transparent 37%),
        linear-gradient(135deg, #505460 0%, #2c313f 52%, #717676 100%);
}

.poster-stripe {
    position: absolute;
    inset: 0 auto 0 52%;
    width: 8px;
    background: rgba(228, 231, 236, 0.8);
}

.poster-figure {
    position: absolute;
    right: 12%;
    bottom: -6%;
    width: 220px;
    height: 320px;
}

.poster-head {
    width: 82px;
    height: 82px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(180deg, #d6b59a, #9b7b68);
    box-shadow: inset 0 -8px 20px rgba(0, 0, 0, 0.16);
}

.poster-body {
    position: absolute;
    inset: 62px 0 0;
    border-radius: 120px 120px 24px 24px;
    background:
        radial-gradient(circle at 60% 18%, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #1c1f29 0%, #11131a 100%);
}

.poster-panel {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: grid;
    gap: 10px;
}

.poster-chip {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(19, 22, 30, 0.55);
    color: #f3f6ff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.benefit-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 16px;

    background: linear-gradient(145deg, #1c1f2a, #0f1424);
    border: 1px solid rgba(255,255,255,0.06);

    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* ICON STYLE */
.benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(145deg, #4e73df, #224abe);
    color: white;
    font-size: 18px;

    box-shadow: 0 4px 12px rgba(78,115,223,0.5);
}

/* TEXT */
.benefit-card strong {
    font-size: 15px;
    color: #fff;
}

/* ===== ABOUT SECTION ===== */

.about-section {
    margin-top: 40px;
}

/* Heading */
.about-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.about-heading span {
    width: 4px;
    height: 30px;
    background: #4e73df;
    border-radius: 2px;
}

.about-heading h2 {
    color: #fff;
    font-size: 22px;
}

/* Main Card */
.about-card {
    padding: 30px;
    border-radius: 18px;

    background: linear-gradient(145deg, #121826, #0b0f1a);
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 
        0 10px 40px rgba(0,0,0,0.6),
        0 0 20px rgba(255, 200, 0, 0.05);
}

/* Title */
.about-card h3 {
    text-align: center;
    color: #224abe;
    font-size: 26px;
    margin-bottom: 25px;
}

/* Content Box */
.about-content {
    padding: 20px;
    border-radius: 14px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);

    color: #d1d5db;
    line-height: 1.7;
        transform: translateY(-5px);
    box-shadow:
        0 12px 40px rgba(0,0,0,0.8),
        0 0 25px rgba(255, 215, 0, 0.2);
}

/* Paragraph spacing */
.about-content p {
    margin-bottom: 18px;
}

/* Highlight text */
.about-content span {
    color: #4d76d1;
    font-weight: 600;
}

/* ===== BENEFITS SECTION ===== */

.benefits-section {
    margin-top: 50px;
}

/* Title */
.benefits-title {
    text-align: center;
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 30px;
}

/* Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.benefit-box {
    padding: 22px;
    border-radius: 18px;

    background: linear-gradient(145deg, #1a1f2e, #0b0f1a);
    border: 1px solid rgba(255, 215, 0, 0.2);

    position: relative;
    transition: 0.3s ease;

    box-shadow: 
        0 12px 40px rgba(0,0,0,0.8),
        0 0 25px rgba(255, 215, 0, 0.2);
}



/* Step label */
.step {
    color: #4d76d1;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

/* Left blue border */
.benefit-box h3 {
    position: relative;
    padding-left: 12px;
    color: #fff;
    margin-bottom: 10px;
}

.benefit-box h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    height: 80%;
    width: 3px;
    background: #4e73df;
    border-radius: 2px;
}

/* Description */
.benefit-box p {
    color: #b0b7c3;
    font-size: 14px;
    line-height: 1.6;
}

.panel,
.auth-card,
.info-card,
.summary-card,
.detail-card {
    padding: 26px;
}

.mini-panel-head,
.page-heading,
.warning-header,
.profile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.page-heading {
    margin-bottom: 20px;
}

.page-heading.compact {
    margin-bottom: 18px;
}

.page-heading h1 {
    font-size: clamp(1.9rem, 3vw, 2.65rem);
}

.text-link {
    color: #aac0ff;
    font-weight: 700;
}

.panel-stack,
.assignment-list,
.activity-list {
    display: grid;
    gap: 18px;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.listing-grid.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-card,
.assignment-card,
.summary-card,
.mini-list-item,
.device-card,
.empty-card,
.withdraw-card {
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.profile-card,
.assignment-card,
.device-card,
.empty-card {
    padding: 20px;
}

.profile-card.detailed {
    min-height: 100%;
}

.profile-top {
    align-items: flex-start;
}

.card-heading {
    flex: 1;
}

.card-heading h3,
.mini-list-item strong,
.summary-card h3,
.device-card h3,
.warning-body h2,
.info-card h2 {
    margin: 0 0 6px;
    font-family: var(--font-display);
    color: #fff;
}

.card-heading p,
.mini-list-item p,
.summary-card p,
.device-card p {
    margin: 0;
    color: var(--muted);
}

.avatar-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.2), transparent 36%),
        linear-gradient(180deg, #f1f1f3, #c7c8ce);
    color: #2b3042;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
}

.avatar-box.small {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 1.05rem;
}

.avatar-box.large {
    width: 96px;
    height: 96px;
    border-radius: 28px;
    font-size: 1.8rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
}

.status-pill.is-positive {
    color: #d4f2c4;
    background: rgba(107, 165, 87, 0.18);
}

.status-pill.is-warning {
    color: #ffd3a5;
    background: rgba(223, 133, 72, 0.16);
}

.status-pill.is-danger {
    color: #ffbfb9;
    background: rgba(190, 82, 74, 0.18);
}

.status-pill.is-muted {
    color: #d3d7e4;
    background: rgba(148, 156, 186, 0.15);
}

.meta-list {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    color: #edf1fb;
}

.meta-list.compact {
    gap: 6px;
}

.meta-list.detail {
    margin-top: 24px;
    gap: 12px;
}

.meta-list.centered li {
    text-align: center;
}

.card-copy,
.notes-box,
.status-banner,
.withdraw-card {
    margin-top: 18px;
}

.card-footer,
.wallet-preview,
.mini-list-item,
.withdraw-card,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.card-footer {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: #edf1fb;
}

.empty-card {
    display: grid;
    gap: 8px;
    place-items: start;
}

.empty-card strong {
    color: #fff;
}

.mini-panel {
    padding: 22px;
}

.mini-form-preview,
.wallet-preview.vertical {
    display: grid;
    gap: 12px;
}

.input-preview {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.mini-list-item {
    padding: 14px;
    color: #eef2ff;
}

.mini-list-item span {
    font-weight: 700;
}

.wallet-preview {
    margin-top: 12px;
    color: #eef2ff;
}

.wallet-preview span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.device-card {
    display: grid;
    gap: 14px;
    min-height: 220px;
}

.auth-layout {
    display: flex;
    justify-content: center;
    gap: 22px;
    align-items: start;
}

.auth-layout.wide {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
}

.auth-card.wide {
    padding-bottom: 30px;
}

.form-grid {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.form-grid.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid label,
.filter-bar label,
.withdraw-card label {
    display: grid;
    gap: 8px;
    color: #f4f6ff;
    font-weight: 700;
}

.form-grid label span,
.filter-bar label span,
.withdraw-card label span {
    font-size: 0.92rem;
}

.full-width,
.section-divider {
    grid-column: 1 / -1;
}

.section-divider {
    padding-top: 6px;
    border-top: 1px solid var(--line);
}

.section-divider h3 {
    margin: 0 0 4px;
    color: #fff;
    font-family: var(--font-display);
}

.section-divider p,
.auth-footnote {
    color: var(--muted);
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #9ea5b8;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #84a5f1;
    box-shadow: 0 0 0 4px rgba(87, 123, 204, 0.18);
}

.feature-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    color: #eef2ff;
}

.feature-list li {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.form-errors {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding: 16px;
    border-radius: 16px;
    color: #fff2f1;
    background: rgba(190, 82, 74, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-bar {
    display: flex;
    align-items: end;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-bar label {
    min-width: 180px;
}

.side-summary {
    display: grid;
    gap: 18px;
    align-content: start;
}

.summary-card {
    padding: 20px;
}

.activity-item {
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
}

.activity-item strong,
.activity-item p {
    margin: 0;
}

.detail-layout {
    align-items: start;
}

.detail-card {
    padding: 30px;
}

.notes-box,
.status-banner {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.notes-box strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
}

.status-banner.is-warning {
    color: #ffe1c5;
}

.confirmation-card {
    padding: 34px;
    text-align: center;
}

.confirmation-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 3rem;
    color: #fff;
    background: linear-gradient(180deg, var(--green-a), var(--green-b));
    box-shadow: 0 14px 24px rgba(67, 110, 54, 0.25);
}

.confirmation-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d1efc4;
}

.modal-stage {
    display: grid;
    place-items: center;
    min-height: 72vh;
}

.warning-modal {
    width: 100%;
    max-width: 860px;
    padding: 0;
}

.warning-header,
.warning-body,
.warning-actions {
    padding: 28px 32px;
}

.warning-header,
.warning-actions {
    border-bottom: 1px solid var(--line);
}

.warning-actions {
    border-bottom: 0;
    display: flex;
    justify-content: center;
}

.warning-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    color: #282015;
    background: linear-gradient(180deg, var(--amber-a), var(--amber-b));
}

.warning-header h1,
.warning-body h2 {
    margin: 0;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.stat-card {
    padding: 18px;
    border-radius: 20px;
    color: #eef2ff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
}

.stat-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

.stat-card strong {
    font-size: 1.3rem;
    font-family: var(--font-display);
}

.detail-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.withdraw-card {
    margin-top: 22px;
    padding: 18px;
}

.withdraw-card label {
    flex: 1;
}

.site-footer {
    padding: 0 0 28px;
}

.footer-inner {
    padding: 24px 28px;
    border-radius: 26px;
    color: #f0f2fa;
    background:
        linear-gradient(180deg, rgba(38, 42, 58, 0.98), rgba(24, 27, 38, 0.99));
    box-shadow: var(--shadow);
}

.footer-inner p {
    margin: 8px 0 0;
    color: var(--muted);
}

.footer-note {
    max-width: 360px;
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 1080px) {
    .topbar-inner,
    .main-nav,
    .account-actions {
        flex-wrap: wrap;
    }

    .hero-card,
    .dashboard-grid,
    .detail-layout,
    .auth-layout,
    .auth-layout.wide {
        grid-template-columns: 1fr;
    }

    .listing-grid.three-up,
    .workflow-grid,
    .benefit-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .hero-card,
    .mini-panel,
    .auth-card,
    .info-card,
    .detail-card,
    .summary-card,
    .confirmation-card {
        padding: 20px;
        border-radius: 24px;
    }

    .topbar {
        position: static;
    }

    .main-nav,
    .account-actions,
    .page-heading,
    .profile-top,
    .filter-bar,
    .withdraw-card,
    .footer-inner {
        align-items: stretch;
    }

    .main-nav,
    .account-actions,
    .profile-stats,
    .detail-columns,
    .form-grid.two-column,
    .listing-grid,
    .listing-grid.three-up,
    .workflow-grid,
    .benefit-strip {
        grid-template-columns: 1fr;
    }

    .main-nav,
    .account-actions,
    .button-row,
    .hero-actions,
    .header-actions,
    .filter-bar,
    .profile-top,
    .card-footer,
    .wallet-preview,
    .withdraw-card,
    .footer-inner {
        display: grid;
    }

    .hero-copy h1,
    .auth-card h1,
    .page-heading h1,
    .detail-card h1,
    .confirmation-card h1 {
        font-size: 2rem;
    }

    .poster-figure {
        right: 4%;
        width: 180px;
        height: 260px;
    }
}

/** New code **/
.client-card {
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(145deg, #1c1f2a, #111827);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.client-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h3 {
    margin: 0;
}

.status-dot.online {
    color: #4caf50;
}

.client-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.btn-book {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(90deg, #4e73df, #224abe);
    color: white;
}

/* ===== TESTIMONIAL SECTION ===== */
/* SECTION */
.testimonial-section {
    margin-top: 60px;
}

.testimonial-title {
    text-align: center;
    color: #4d76d1;
    font-size: 28px;
    margin-bottom: 30px;
}

/* WRAPPER */
.testimonial-wrapper {
    overflow: hidden;
    position: relative;
}

/* TRACK */
.testimonial-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

/* CARD */
.testimonial-card {
    min-width: 320px;
    max-width: 360px;
    flex: 0 0 auto;

    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;

    background: linear-gradient(145deg, #1a1f2e, #0b0f1a);
    border: 1px solid rgba(255, 215, 0, 0.2);

    box-shadow:
        0 12px 40px rgba(0,0,0,0.8),
        0 0 25px rgba(255, 215, 0, 0.2);

    transition: 0.3s ease;
}

/* AVATAR */
.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(145deg, #4e73df, #224abe);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
}

/* TEXT */
.testimonial-text {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 15px 0;
}

.testimonial-text::before {
    content: "“";
    font-size: 28px;
    color: #4e73df;
}

/* NAME */
.testimonial-name {
    color: #4d76d1;
    font-weight: 600;
    margin-top: 10px;
}

/* ROLE */
.testimonial-role {
    font-size: 13px;
    color: #9ea5b8;
    margin-bottom: 10px;
}

/* STARS */
.testimonial-stars {
    color: #4d76d1;
    font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonial-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        min-width: 85%;
        scroll-snap-align: center;
    }
}

/* ===== CTA SECTION ===== */

.cta-section {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* Container */
.cta-container {
    width: 100%;
    max-width: 900px;
    text-align: center;

    padding: 40px;
    border-radius: 20px;

    background: linear-gradient(145deg, #1a1f2e, #0b0f1a);
    border: 1px solid rgba(255, 215, 0, 0.3);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.7),
        0 0 30px rgba(255, 215, 0, 0.15);
}

/* Title */
.cta-container h2 {
    color: #FFFFFF;
    font-size: 28px;
    margin-bottom: 10px;
}

/* Subtitle */
.cta-container p {
    color: #ffffff;
    margin-bottom: 25px;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;

    background: linear-gradient(90deg, #4d76d1, #ffb800);
    color: #000;
    font-weight: 700;
    font-size: 16px;

    text-decoration: none;

    /* Glow */
    box-shadow:
        0 8px 25px rgba(255, 215, 0, 0.6),
        0 0 20px rgba(255, 215, 0, 0.4);

    transition: 0.3s ease;
}

/* Hover effect */
.cta-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 35px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.6);
}

@media (max-width: 600px) {
    .cta-container {
        padding: 25px;
    }

    .cta-container h2 {
        font-size: 22px;
    }

    .cta-btn {
        width: 100%;
    }
}

/* ===== MOBILE BENEFITS (PERFECT MATCH) ===== */

@media (max-width: 768px) {

    .benefits-section {
        padding: 0 16px;
    }

    .benefits-title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 25px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;   /* 🔥 ONE CARD ONLY */
        gap: 20px;
    }

    .benefit-box {
        padding: 24px 20px;
        border-radius: 20px;

        /* More premium glow for mobile */
        box-shadow:
            0 10px 30px rgba(0,0,0,0.7),
            0 0 20px rgba(255, 215, 0, 0.15);
    }

    .step {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .benefit-box h3 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .benefit-box p {
        font-size: 15px;
        line-height: 1.7;
    }
}
@media (max-width: 768px) {
    .benefit-box {
        max-width: 500px;
        margin: 0 auto;
    }
}
.benefit-box {
    transition: all 0.3s ease;
}

.benefit-box:active {
    transform: scale(0.98);
}

/* ===== MOBILE NAVBAR ===== */

/* ===== NAVBAR BASE ===== */

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Mobile menu hidden by default */
.mobile-menu {
     position: fixed !important;
    z-index: 2147483647 !important; /* MAX */
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;

    background: linear-gradient(145deg, #0b0f1a, #1a1f2e);

    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    gap: 30px;

    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    display: none;
}

.mobile-overlay.active {
    display: block;
}

/* ===== MOBILE ONLY ===== */

@media (max-width: 768px) {

    /* Hide ONLY desktop nav */
    .desktop-nav,
    .desktop-actions {
        display: none;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
    }

    /* Mobile nav layout */
 .mobile-menu .main-nav {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
}

    .mobile-menu a {
        color: #fff;
        font-size: 18px;
    }

    .mobile-menu .account-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu .button {
        width: 100%;
        text-align: center;
    }
}

/* ===== FOOTER ===== */

.custom-footer {
    margin-top: 60px;
    background: linear-gradient(145deg, #0b0f1a, #1a1f2e);
    color: #cbd5e1;
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Headings */
.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Contact items */
.footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-item i {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000;
    color: #2d4f9e;
    border-radius: 6px;
}

/* Links */
.footer-col a {
    display: block;
    color: #9ea5b8;
    margin-bottom: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #4d76d1;
    transform: translateX(5px);
}

/* Logo */
.logo-text {
    color: #2d4f9e;
}

/* Description */
.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

/* Social icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    margin-right: 10px;

    align-items: center;
    justify-content: center;

    background: #000;
    color: #2d4f9e;
    border-radius: 6px;

    transition: 0.3s;
}

.social-icons a:hover {
    background: #2d4f9e;
    color: #fff;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #000;
    color: #aaa;
}

.footer-bottom span {
    color: #4d76d1;
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-item {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Logo image */
.brand-logo {
    height: 40px;  /* adjust as needed */
    width: auto;
    object-fit: contain;
}

/* Optional: glow effect to match theme */
/*.brand-logo {*/
/*    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));*/
/*}*/


/* clients.php */

/* SECTION */
.clients-section {
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    color: #4d76d1;
    margin-bottom: 30px;
}

/* GRID */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.client-card {
    background: linear-gradient(145deg, #1a1f2e, #0b0f1a);
    border-radius: 18px;
    padding: 18px;

    border: 1px solid rgba(255, 215, 0, 0.2);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.8),
        0 0 20px rgba(255, 215, 0, 0.15);
}


.client-card:hover {
    transform: translateY(-5px);
}

/* TOP */
.client-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* AVATAR */
.client-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    color: #fff;
    font-weight: bold;
}
/* BODY TAKES FULL WIDTH */
.client-body {
    flex: 1;
}

/* HEADER */
.client-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-header h3 {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

/* INFO */
.client-info {
    flex: 1;
}

.client-info h3 {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.client-info p {
    margin: 2px 0;
    font-size: 13px;
    color: #9ea5b8;
}

/* ONLINE DOT */
/* ONLINE DOT */
.online-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    display: inline-block;
    margin-left: 6px;
}

/* HEART */
.heart {
    font-size: 18px;
    color: #aaa;
}

/* ROWS */
.client-row {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;

    font-size: 14px;
    color: #cbd5e1;
}

/* LABEL */
.client-row span {
    color: #9ea5b8;
}

/* DIVIDER */
.client-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 8px 0;
}

/* PRICE */
.price {
    color: #00ff88;
    font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {

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

    .client-card {
        padding: 14px;
    }

    .client-row {
        font-size: 13px;
    }
    .client-avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .price {
        font-size: 16px;
    }
}
/* ============================================================
   playboys.css  —  Pixel-perfect dark card UI
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── SECTION ─────────────────────────────────────────────── */
.pb-section {
    padding: 16px 14px 80px;
}

.pb-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

/* ── GRID ─────────────────────────────────────────────────── */
.pb-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── CARD ─────────────────────────────────────────────────── */
.pb-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 14px 14px 14px;
    border-radius: 18px;
    background: linear-gradient(145deg, #1b2035, #0c1020);
    border: 1px solid rgba(255, 215, 0, 0.20);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.75);
    text-decoration: none;
    color: inherit;
    position: relative;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pb-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.85);
}

/* ── LEFT  (avatar column) ────────────────────────────────── */
.pb-left {
    flex-shrink: 0;
    position: relative;
    width: 72px;
}

.pb-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #1e2845, #0d1325);
    border: 2.5px solid rgba(255, 255, 255, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.pb-avatar-badge {
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.6));
    line-height: 0;
}

/* ── RIGHT (content column) ──────────────────────────────── */
.pb-content {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

/* ── TOP ROW ─────────────────────────────────────────────── */
.pb-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 6px;
}

.pb-name-group {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.pb-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── CATEGORY PILL BADGES ────────────────────────────────── */
.pb-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px 3px 8px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.2px;
}

.pb-badge-silver {
    background: rgba(140, 150, 170, 0.15);
    color: #b5bfcf;
    border: 1px solid rgba(140, 150, 170, 0.35);
}

.pb-badge-gold {
    background: rgba(184, 134, 11, 0.18);
    color: #4d76d1;
    border: 1px solid rgba(255, 215, 0, 0.38);
}

.pb-badge-bronze {
    background: rgba(139, 90, 43, 0.18);
    color: #d4894a;
    border: 1px solid rgba(205, 127, 50, 0.38);
}

.pb-arrow {
    font-size: 20px;
    color: #50566a;
    flex-shrink: 0;
    font-weight: 300;
    line-height: 1;
}

/* ── INFO ROW: Age | City | Last Month Income ────────────── */
.pb-info-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 12px;
}

.pb-info-col {
    flex: 1;
    min-width: 0;
}

.pb-info-col:not(:last-child) {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.pb-info-label {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.pb-info-label-text {
    font-size: 11px;
    color: #7e8599;
    line-height: 1.2;
}

.pb-info-val {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.pb-info-val.green {
    color: #00e07a;
}

/* ── HORIZONTAL DIVIDER ──────────────────────────────────── */
.pb-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.09);
    margin-bottom: 10px;
}

/* ── BOTTOM ROW ──────────────────────────────────────────── */
.pb-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* Rating */
.pb-rating-group {
    display: flex;
    align-items: center;
    gap: 7px;
}

.pb-rating-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #7e8599;
    white-space: nowrap;
}

.pb-stars {
    display: flex;
    gap: 1px;
}

.pb-star-on  { color: #4d76d1; font-size: 14px; line-height: 1; }
.pb-star-off { color: #2e3345; font-size: 14px; line-height: 1; }

/* Security */
.pb-security-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pb-security-label {
    font-size: 12px;
    color: #7e8599;
    white-space: nowrap;
}

.pb-security-val {
    font-size: 13px;
    font-weight: 700;
    color: #00e07a;
    white-space: nowrap;
}

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 400px) {
    .pb-card { padding: 14px 12px; gap: 12px; }
    .pb-avatar { width: 64px; height: 64px; }
    .pb-left { width: 64px; }
    .pb-name { font-size: 14.5px; }
    .pb-info-label-text { font-size: 10px; }
    .pb-info-val { font-size: 13px; }
    .pb-info-col:not(:last-child) { padding-right: 7px; margin-right: 7px; }
    .pb-security-label { display: none; }
}


/* ===== MODAL For Accept Booking ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

/* SHOW */
.modal-overlay.active {
    display: flex;
}

/* BOX */
.modal-box {
    width: 90%;
    max-width: 420px;

    background: linear-gradient(145deg, #1a1f2e, #0b0f1a);
    border-radius: 16px;

    border: 1px solid rgba(255, 215, 0, 0.3);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.9),
        0 0 25px rgba(255, 215, 0, 0.2);

    animation: fadeIn 0.3s ease;
}

/* HEADER */
.modal-header {
    padding: 16px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* BODY */
.modal-body {
    padding: 18px;
}

.main-text {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.sub-text {
    font-size: 14px;
    color: #9ea5b8;
}

/* FOOTER */
.modal-footer {
    padding: 15px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.modal-footer button {
    background: linear-gradient(145deg, #2563eb, #1d4ed8);
    border: none;
    padding: 10px 30px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;

    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.5);
}

.modal-footer button:hover {
    transform: scale(1.05);
}

/* ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9);}
    to { opacity: 1; transform: scale(1);}
}

/* Logout Section */

.logout-btn {
    color: #ff4d4d;
    border: 1px solid rgb(86 92 255 / 40%);
}

.logout-btn:hover {
    background: rgba(255, 77, 77, 0.1);
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.5);
}