/* /Components/Dashboard/Shared/MemberCard.razor.rz.scp.css */
/* ---------- Visual / Card Column ---------- */
.card-scene[b-3tp5ee0wtu] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.card-glow-ring[b-3tp5ee0wtu] {
    position: absolute;
    width: 420px;
    height: 290px;
    border-radius: 28px;
    background: radial-gradient(ellipse, rgba(216,35,26,0.1) 0%, transparent 65%);
    filter: blur(30px);
    z-index: 0;
    pointer-events: none;
}

.card-wrapper[b-3tp5ee0wtu] {
    position: relative;
    width: 460px;
    height: 290px;
    z-index: 1;
}

.member-card[b-3tp5ee0wtu] {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #d8231a 0%, #b71c15 45%, #6b100c 100%);
    border-radius: 20px;
    box-shadow:
        0 25px 50px -12px rgba(216,35,26,0.25),
        0 12px 24px -8px rgba(0,0,0,0.12);
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: white;
    transition: transform 350ms ease, box-shadow 350ms ease;
}

.card-wrapper:hover .member-card[b-3tp5ee0wtu] {
    transform: translateY(-6px) rotateX(2deg);
    box-shadow:
        0 32px 60px -12px rgba(216,35,26,0.3),
        0 16px 32px -8px rgba(0,0,0,0.15);
}

/* Background image (Pinisi boat) */
.card-bg-image[b-3tp5ee0wtu] {
    position: absolute;
    inset: 0;
    background-image: url('/images/card-bg-pinisi.png');
    background-size: cover;
    background-position: center;
    opacity: 3;
    pointer-events: none;
    z-index: 0;
    border-radius: 20px;
    mix-blend-mode: soft-light;
}

.card-shine[b-3tp5ee0wtu] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.2) 0%,
        rgba(255,255,255,0.05) 35%,
        transparent 55%
    );
    pointer-events: none;
    z-index: 1;
}

.card-top[b-3tp5ee0wtu], .card-middle[b-3tp5ee0wtu], .card-bottom[b-3tp5ee0wtu] {
    position: relative;
    z-index: 2;
}

.card-top[b-3tp5ee0wtu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand group: KKSS + Connect+ */
.card-brand[b-3tp5ee0wtu] {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.card-logo[b-3tp5ee0wtu] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
}

.card-logo-sub[b-3tp5ee0wtu] {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    opacity: 0.75;
    letter-spacing: 0.02em;
}

/* Org name (top-right) */
.card-org-name[b-3tp5ee0wtu] {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    text-align: right;
    line-height: 1.4;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.card-middle[b-3tp5ee0wtu] {
    display: flex;
    align-items: flex-start;
}

.card-user-details[b-3tp5ee0wtu] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-name[b-3tp5ee0wtu] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.card-number[b-3tp5ee0wtu] {
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    opacity: 0.8;
    letter-spacing: 0.06em;
}

.card-chapter[b-3tp5ee0wtu] {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    opacity: 0.6;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

.card-bottom[b-3tp5ee0wtu] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-bottom-left[b-3tp5ee0wtu] {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.card-qr-placeholder[b-3tp5ee0wtu] {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    flex-shrink: 0;
}

.qr-grid[b-3tp5ee0wtu] {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 1px;
}

.qr-grid[b-3tp5ee0wtu]::before {
    content: '';
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    background-image:
        linear-gradient(45deg, #a81812 25%, transparent 25%),
        linear-gradient(-45deg, #a81812 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #a81812 75%),
        linear-gradient(-45deg, transparent 75%, #a81812 75%);
    background-size: 12px 12px;
    opacity: 0.9;
}

.card-bottom-right[b-3tp5ee0wtu] {
    display: flex;
    align-items: flex-end;
}

.card-motto[b-3tp5ee0wtu] {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    opacity: 0.5;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.5;
}

.card-label[b-3tp5ee0wtu] {
    margin-top: 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-muted, #6B7280);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gold-dot[b-3tp5ee0wtu] {
    color: var(--gold, #C8A951);
    font-size: 1rem;
    line-height: 1;
}

/* ---- Responsive: scale down on tablet ---- */
@media (max-width: 1023px) {
    .card-wrapper[b-3tp5ee0wtu] {
        width: 380px;
        height: 240px;
    }

    .card-glow-ring[b-3tp5ee0wtu] {
        width: 380px;
        height: 240px;
    }

    .member-card[b-3tp5ee0wtu] {
        padding: 24px 26px;
    }
}

/* ---- Responsive: scale down on mobile ---- */
@media (max-width: 767px) {
    .card-scene[b-3tp5ee0wtu] {
        max-width: 100%;
    }

    .card-wrapper[b-3tp5ee0wtu] {
        width: 320px;
        height: 202px;
    }

    .member-card[b-3tp5ee0wtu] {
        padding: 18px 20px;
    }

    .card-glow-ring[b-3tp5ee0wtu] {
        width: 320px;
        height: 202px;
    }

    .card-name[b-3tp5ee0wtu] {
        font-size: 1.05rem;
    }

    .card-number[b-3tp5ee0wtu] {
        font-size: 0.72rem;
    }

    .card-logo[b-3tp5ee0wtu] {
        font-size: 1.1rem;
    }

    .card-qr-placeholder[b-3tp5ee0wtu] {
        width: 38px;
        height: 38px;
    }

    .card-label[b-3tp5ee0wtu] {
        font-size: 0.78rem;
    }
}
/* /Components/Landing/BenefitShowcase.razor.rz.scp.css */
/* =============================================
   BENEFIT SHOWCASE – Premium Layout
   ============================================= */

.benefit-section[b-hnpgovnwxa] {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

/* --- Section Header: split layout --- */
.benefit-header[b-hnpgovnwxa] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
}

.benefit-header-text[b-hnpgovnwxa] {
    flex-shrink: 0;
}

.benefit-header-text h2[b-hnpgovnwxa] {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.benefit-header-sub[b-hnpgovnwxa] {
    max-width: 480px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* --- Featured Row: 2 large cards --- */
.benefit-featured[b-hnpgovnwxa] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.benefit-card--lg[b-hnpgovnwxa] {
    padding: clamp(28px, 3vw, 40px);
}

.benefit-card--lg .benefit-body[b-hnpgovnwxa] {
    margin-top: 4px;
}

/* --- Bottom Grid: 4 compact cards --- */
.benefit-grid[b-hnpgovnwxa] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* --- Card Base --- */
.benefit-card[b-hnpgovnwxa] {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 32px);
    position: relative;
    overflow: hidden;
    transition: transform 350ms var(--ease-out), box-shadow 350ms var(--ease-out), border-color 350ms ease;
}

/* Top accent bar */
.card-accent[b-hnpgovnwxa] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--module-color);
    opacity: 0;
    transition: opacity 350ms ease;
}

.benefit-card:hover[b-hnpgovnwxa] {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: transparent;
}

.benefit-card:hover .card-accent[b-hnpgovnwxa] {
    opacity: 1;
}

/* --- Icon --- */
.benefit-icon[b-hnpgovnwxa] {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--module-color) 10%, transparent);
    color: var(--module-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 300ms ease, transform 300ms ease;
}

.benefit-card:hover .benefit-icon[b-hnpgovnwxa] {
    background: color-mix(in srgb, var(--module-color) 16%, transparent);
    transform: scale(1.05);
}

.benefit-icon i[b-hnpgovnwxa],
.benefit-icon svg[b-hnpgovnwxa] {
    width: 24px;
    height: 24px;
}

/* --- Tag --- */
.benefit-tag[b-hnpgovnwxa] {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--module-color);
    background: color-mix(in srgb, var(--module-color) 8%, transparent);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

/* --- Typography --- */
.benefit-card h3[b-hnpgovnwxa] {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.benefit-card--lg h3[b-hnpgovnwxa] {
    font-size: 1.35rem;
}

.benefit-card p[b-hnpgovnwxa] {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* --- Checklist (featured cards) --- */
.benefit-checklist[b-hnpgovnwxa] {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-checklist li[b-hnpgovnwxa] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
}

.benefit-checklist li i[b-hnpgovnwxa],
.benefit-checklist li svg[b-hnpgovnwxa] {
    width: 16px;
    height: 16px;
    color: var(--success);
    flex-shrink: 0;
}


/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
    .benefit-header[b-hnpgovnwxa] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }

    .benefit-grid[b-hnpgovnwxa] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefit-featured[b-hnpgovnwxa] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 639px) {
    .benefit-header[b-hnpgovnwxa] {
        margin-bottom: 40px;
    }

    .benefit-grid[b-hnpgovnwxa] {
        grid-template-columns: 1fr;
    }

    .benefit-card[b-hnpgovnwxa] {
        padding: 24px;
    }
}
/* /Components/Landing/EventListSection.razor.rz.scp.css */
.event-cards-grid[b-wrkhhf43d0] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.event-card[b-wrkhhf43d0] {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.event-card:hover[b-wrkhhf43d0] {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-card-img[b-wrkhhf43d0] {
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #F3F4F6;
    background-position: center;
    position: relative;
}

.event-card-date[b-wrkhhf43d0] {
    position: absolute;
    top: 16px;
    left: 16px;
    background: white;
    padding: 8px 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.date-day[b-wrkhhf43d0] {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.date-month[b-wrkhhf43d0] {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.event-card-content[b-wrkhhf43d0] {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-category[b-wrkhhf43d0] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.event-title[b-wrkhhf43d0] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.event-meta[b-wrkhhf43d0] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.event-meta span[b-wrkhhf43d0] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.event-meta i[b-wrkhhf43d0] {
    width: 16px;
    height: 16px;
}

.event-footer[b-wrkhhf43d0] {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.event-price[b-wrkhhf43d0] {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.btn-outline-primary[b-wrkhhf43d0] {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.event-card:hover .btn-outline-primary[b-wrkhhf43d0] {
    background: var(--primary);
    color: white;
}
/* /Components/Landing/Events.razor.rz.scp.css */
/* =============================================
   EVENTS – Feature Highlight
   ============================================= */

.events-section[b-mcgymnuowj] {
    background: var(--bg-white);
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.events-split[b-mcgymnuowj] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* --- Left Visual (Gallery) --- */
.events-gallery[b-mcgymnuowj] {
    position: relative;
    padding: 10px;
}

.gallery-grid[b-mcgymnuowj] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(130px, 150px);
    gap: 16px;
}

.gallery-item[b-mcgymnuowj] {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* 6-Column Bento Layout */
.gallery-item:nth-child(1)[b-mcgymnuowj] { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2)[b-mcgymnuowj] { grid-column: 5 / 7; grid-row: 1 / 2; }
.gallery-item:nth-child(3)[b-mcgymnuowj] { grid-column: 5 / 7; grid-row: 2 / 3; }
.gallery-item:nth-child(4)[b-mcgymnuowj] { grid-column: 1 / 4; grid-row: 3 / 4; }
.gallery-item:nth-child(5)[b-mcgymnuowj] { grid-column: 4 / 7; grid-row: 3 / 4; }

.gallery-item img[b-mcgymnuowj] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms var(--ease-out);
}

.gallery-item:hover img[b-mcgymnuowj] {
    transform: scale(1.08);
}

.event-overlay-badge[b-mcgymnuowj] {
    position: absolute;
    bottom: 24px;
    right: -10px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    z-index: 2;
    animation: float-delayed-b-mcgymnuowj 6s ease-in-out infinite;
}

.event-overlay-badge .icon-circle[b-mcgymnuowj] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-overlay-badge .icon-circle i[b-mcgymnuowj],
.event-overlay-badge .icon-circle svg[b-mcgymnuowj] {
    width: 24px;
    height: 24px;
}

.badge-text[b-mcgymnuowj] {
    display: flex;
    flex-direction: column;
}

.badge-text strong[b-mcgymnuowj] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.badge-text span[b-mcgymnuowj] {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@keyframes float-delayed-b-mcgymnuowj {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* --- Right Content --- */
.events-content[b-mcgymnuowj] {
    max-width: 540px;
}

.events-content h2[b-mcgymnuowj] {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.events-content .section-subtitle[b-mcgymnuowj] {
    margin: 0 0 40px 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.events-features[b-mcgymnuowj] {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.events-features li[b-mcgymnuowj] {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.events-features li > i[b-mcgymnuowj],
.events-features li > svg[b-mcgymnuowj] {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.feat-content h4[b-mcgymnuowj] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.feat-content p[b-mcgymnuowj] {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .events-split[b-mcgymnuowj] {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .events-gallery[b-mcgymnuowj] {
        order: -1; /* Image on top */
        max-width: 600px;
        margin: 0 auto;
        padding-right: 24px;
    }
    
    .events-content[b-mcgymnuowj] {
        max-width: 100%;
        text-align: center;
    }
    
    .events-features[b-mcgymnuowj] {
        text-align: left;
    }
}

@media (max-width: 639px) {
    .event-overlay-badge[b-mcgymnuowj] {
        right: 16px;
        bottom: 16px;
        padding: 12px 16px;
        animation: none;
        box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }
    
    .gallery-grid[b-mcgymnuowj] {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
        gap: 12px;
    }
    
    .gallery-item:nth-child(1)[b-mcgymnuowj] { grid-column: 1 / -1; grid-row: 1 / 3; }
    .gallery-item:nth-child(2)[b-mcgymnuowj] { grid-column: 1 / 2; grid-row: 3 / 4; }
    .gallery-item:nth-child(3)[b-mcgymnuowj] { grid-column: 2 / 3; grid-row: 3 / 4; }
    .gallery-item:nth-child(4)[b-mcgymnuowj] { grid-column: 1 / 2; grid-row: 4 / 5; }
    .gallery-item:nth-child(5)[b-mcgymnuowj] { grid-column: 2 / 3; grid-row: 4 / 5; }
    
    .event-overlay-badge .icon-circle[b-mcgymnuowj] {
        width: 40px;
        height: 40px;
    }
    
    .badge-text strong[b-mcgymnuowj] {
        font-size: 0.9rem;
    }
}

/* =============================================
   LIGHTBOX OVERLAY
   ============================================= */
.gallery-lightbox[b-mcgymnuowj] {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active[b-mcgymnuowj] {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay[b-mcgymnuowj] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-content[b-mcgymnuowj] {
    position: relative;
    z-index: 100001;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img[b-mcgymnuowj] {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
    user-select: none;
}

.lightbox-close[b-mcgymnuowj] {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 100002;
}

.lightbox-close:hover[b-mcgymnuowj] {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav[b-mcgymnuowj] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 100002;
}

.lightbox-nav:hover[b-mcgymnuowj] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev[b-mcgymnuowj] {
    left: 24px;
}

.lightbox-nav.next[b-mcgymnuowj] {
    right: 24px;
}

@media (max-width: 768px) {
    .lightbox-content[b-mcgymnuowj] { padding: 20px; }
    .lightbox-nav[b-mcgymnuowj] { width: 44px; height: 44px; }
    .lightbox-nav.prev[b-mcgymnuowj] { left: 12px; }
    .lightbox-nav.next[b-mcgymnuowj] { right: 12px; }
    .lightbox-close[b-mcgymnuowj] { top: 12px; right: 12px; width: 44px; height: 44px; }
}
/* /Components/Landing/FaqAccordion.razor.rz.scp.css */
/* =============================================
   FAQ – Premium Accordion Layout
   ============================================= */

.faq-section[b-le2dcb3wln] {
    background: var(--bg-white);
    padding: clamp(80px, 10vw, 120px) 0;
}

.faq-container[b-le2dcb3wln] {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section .section-subtitle[b-le2dcb3wln] {
    margin: 0 auto 48px auto;
}

.faq-list[b-le2dcb3wln] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item[b-le2dcb3wln] {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 300ms ease, border-color 300ms ease;
}

.faq-item:hover[b-le2dcb3wln] {
    border-color: rgba(216, 35, 26, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-item.open[b-le2dcb3wln] {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(216, 35, 26, 0.08);
}

.faq-trigger[b-le2dcb3wln] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    background: transparent;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-main);
    text-align: left;
    transition: background 300ms ease, color 300ms ease;
}

.faq-item.open .faq-trigger[b-le2dcb3wln] {
    background: rgba(216, 35, 26, 0.03);
    color: var(--primary);
}

.faq-trigger i[b-le2dcb3wln], .faq-trigger svg[b-le2dcb3wln] {
    flex-shrink: 0;
    transition: transform 300ms var(--ease-out), color 300ms ease;
    color: var(--text-muted);
    width: 20px;
    height: 20px;
}

.faq-item.open .faq-trigger i[b-le2dcb3wln],
.faq-item.open .faq-trigger svg[b-le2dcb3wln] {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer[b-le2dcb3wln] {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 400ms var(--ease-out), padding 400ms var(--ease-out), opacity 400ms ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    opacity: 0;
}

.faq-item.open .faq-answer[b-le2dcb3wln] {
    padding-bottom: 24px;
    opacity: 1;
}

/* Make sure Blazor or JS toggles the "open" class and sets a realistic max-height */
/* We rely on inline styles or a sufficiently large max-height when open if not using JS height calculations */
.faq-item.open .faq-answer[b-le2dcb3wln] {
    max-height: 500px; /* arbitrary large value for CSS transition */
}

@media (max-width: 639px) {
    .faq-trigger[b-le2dcb3wln] {
        padding: 20px;
    }
    .faq-answer[b-le2dcb3wln] {
        padding: 0 20px;
    }
    .faq-item.open .faq-answer[b-le2dcb3wln] {
        padding-bottom: 20px;
    }
}
/* /Components/Landing/FinalCta.razor.rz.scp.css */
/* =============================================
   FINAL CTA – Premium Impact Design
   ============================================= */

.final-cta-section[b-2ghuazgzk1] {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #7d120d 100%);
    padding: clamp(80px, 12vw, 120px) 0;
    text-align: center;
    overflow: hidden;
}

/* Ambient glow effects behind the text */
.final-cta-section[b-2ghuazgzk1]::before,
.final-cta-section[b-2ghuazgzk1]::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.final-cta-section[b-2ghuazgzk1]::before {
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    top: -300px;
    left: -200px;
}

.final-cta-section[b-2ghuazgzk1]::after {
    width: 500px;
    height: 500px;
    background: rgba(0, 0, 0, 0.2);
    bottom: -250px;
    right: -150px;
}

.final-cta-container[b-2ghuazgzk1] {
    position: relative;
    z-index: 1;
}

.cta-eyebrow[b-2ghuazgzk1] {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-headline[b-2ghuazgzk1] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(2.25rem, 5vw, 4rem);
    color: white;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cta-subheadline[b-2ghuazgzk1] {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 48px auto;
    line-height: 1.7;
}

.cta-buttons[b-2ghuazgzk1] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary-inverse[b-2ghuazgzk1] {
    background: white;
    color: var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 300ms ease, box-shadow 300ms ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary-inverse:hover[b-2ghuazgzk1] {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.btn-ghost-inverse[b-2ghuazgzk1] {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 300ms ease, border-color 300ms ease, transform 300ms ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-ghost-inverse:hover[b-2ghuazgzk1] {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.cta-trust-row[b-2ghuazgzk1] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item[b-2ghuazgzk1] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-item i[b-2ghuazgzk1], .trust-item svg[b-2ghuazgzk1] {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-divider[b-2ghuazgzk1] {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

@media (max-width: 639px) {
    .cta-buttons[b-2ghuazgzk1] {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-primary-inverse[b-2ghuazgzk1], .btn-ghost-inverse[b-2ghuazgzk1] {
        width: 100%;
    }
    
    .trust-divider[b-2ghuazgzk1] {
        display: none;
    }
    
    .cta-trust-row[b-2ghuazgzk1] {
        flex-direction: column;
        gap: 16px;
    }
}
/* /Components/Landing/Footer.razor.rz.scp.css */
/* =============================================
   FOOTER – Premium Dark Theme
   ============================================= */

.footer-section[b-v7lrzeu9wk] {
    background: #0a0a0a;
    color: white;
    padding: 100px 0 40px 0;
    position: relative;
    border-top: 4px solid var(--primary);
}

.footer-top[b-v7lrzeu9wk] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.brand-col[b-v7lrzeu9wk] {
    padding-right: 60px;
}

.footer-logo[b-v7lrzeu9wk] {
    margin-bottom: 12px;
}

.footer-logo .logo-text-primary[b-v7lrzeu9wk] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: white;
    letter-spacing: -0.02em;
}

.footer-tagline[b-v7lrzeu9wk] {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-desc[b-v7lrzeu9wk] {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}

.social-icons[b-v7lrzeu9wk] {
    display: flex;
    gap: 16px;
}

.social-icons a[b-v7lrzeu9wk] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: background 300ms ease, color 300ms ease, transform 300ms ease;
}

.social-icons a:hover[b-v7lrzeu9wk] {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
}

.social-icons i[b-v7lrzeu9wk], .social-icons svg[b-v7lrzeu9wk] {
    width: 18px;
    height: 18px;
}

.footer-heading[b-v7lrzeu9wk] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin-bottom: 28px;
    position: relative;
}

.footer-heading[b-v7lrzeu9wk]::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
}

.footer-links[b-v7lrzeu9wk] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a[b-v7lrzeu9wk] {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 200ms ease, transform 200ms ease;
    display: inline-block;
    width: fit-content;
}

.footer-links a:hover[b-v7lrzeu9wk] {
    color: var(--primary);
    transform: translateX(6px);
}

.footer-contact-items[b-v7lrzeu9wk] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item[b-v7lrzeu9wk] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.contact-item i[b-v7lrzeu9wk], .contact-item svg[b-v7lrzeu9wk] {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom[b-v7lrzeu9wk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright[b-v7lrzeu9wk], .footer-note[b-v7lrzeu9wk] {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .footer-top[b-v7lrzeu9wk] {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
    
    .brand-col[b-v7lrzeu9wk] {
        grid-column: span 2;
        padding-right: 0;
        max-width: 500px;
    }
}

@media (max-width: 639px) {
    .footer-section[b-v7lrzeu9wk] {
        padding: 60px 0 32px 0;
    }

    .footer-top[b-v7lrzeu9wk] {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .brand-col[b-v7lrzeu9wk] {
        grid-column: span 1;
    }
    
    .footer-bottom[b-v7lrzeu9wk] {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}
/* /Components/Landing/Hero.razor.rz.scp.css */
/* =============================================
   HERO SECTION
   ============================================= */

.hero-section[b-d82flz2nkz] {
    min-height: 100vh;
    min-height: 100svh; /* Better for iOS Safari */
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* ---------- Background ---------- */
.hero-bg-glow[b-d82flz2nkz] {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216,35,26,0.06) 0%, transparent 65%);
    top: -300px;
    right: -200px;
    pointer-events: none;
    z-index: 0;
}

.hero-dot-grid[b-d82flz2nkz] {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(216,35,26,0.08) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 60% 50% at 65% 45%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 65% 45%, black 10%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ---------- Layout ---------- */
.hero-container[b-d82flz2nkz] {
    max-width: 100%;
    padding: 0 clamp(20px, 3vw, 48px);
    position: relative;
    z-index: 1;
}

.hero-row[b-d82flz2nkz] {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* ---------- Text Column ---------- */
.hero-text[b-d82flz2nkz] {
    flex: 1 1 55%;
    min-width: 0;
}

/* Eyebrow pill */
.hero-eyebrow[b-d82flz2nkz] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(216,35,26,0.07), rgba(216,35,26,0.03));
    border: 1px solid rgba(216,35,26,0.1);
    color: var(--primary);
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 28px;
}

.eyebrow-dot[b-d82flz2nkz] {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: blink-dot-b-d82flz2nkz 2s ease-in-out infinite;
}

@keyframes blink-dot-b-d82flz2nkz {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* Headline */
.hero-headline[b-d82flz2nkz] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 4.2vw, 3.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.text-gradient[b-d82flz2nkz] {
    background: linear-gradient(135deg, var(--primary) 0%, #e8453e 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subheadline */
.hero-sub[b-d82flz2nkz] {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-sub strong[b-d82flz2nkz] {
    color: var(--text-dark);
    font-weight: 700;
}

/* CTA Buttons */
.hero-actions[b-d82flz2nkz] {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-lg[b-d82flz2nkz] {
    padding: 15px 30px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
}

.hero-actions .btn-primary[b-d82flz2nkz] {
    box-shadow: 0 4px 16px rgba(216,35,26,0.25);
    transition: all 250ms var(--ease-out);
}

.hero-actions .btn-primary:hover[b-d82flz2nkz] {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(216,35,26,0.35);
}

.hero-actions .btn-ghost[b-d82flz2nkz] {
    transition: all 250ms var(--ease-out);
}

.hero-actions .btn-ghost:hover[b-d82flz2nkz] {
    transform: translateY(-1px);
}

/* Stats row */
.hero-stats[b-d82flz2nkz] {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item[b-d82flz2nkz] {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.stat-item strong[b-d82flz2nkz] {
    font-weight: 700;
    color: var(--text-dark);
}

.stat-item i[b-d82flz2nkz] {
    width: 17px;
    height: 17px;
    color: var(--primary);
    opacity: 0.65;
}

.stat-dot[b-d82flz2nkz] {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border-strong);
    flex-shrink: 0;
}

/* ---------- Visual / Card Column ---------- */
.hero-visual[b-d82flz2nkz] {
    flex: 1 1 45%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-scene[b-d82flz2nkz] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.card-glow-ring[b-d82flz2nkz] {
    position: absolute;
    width: 420px;
    height: 290px;
    border-radius: 28px;
    background: radial-gradient(ellipse, rgba(216,35,26,0.1) 0%, transparent 65%);
    filter: blur(30px);
    z-index: 0;
    pointer-events: none;
}

.card-wrapper[b-d82flz2nkz] {
    position: relative;
    width: 460px;
    height: 290px;
    z-index: 1;
}

.member-card[b-d82flz2nkz] {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #d8231a 0%, #b71c15 45%, #6b100c 100%);
    border-radius: 20px;
    box-shadow:
        0 25px 50px -12px rgba(216,35,26,0.25),
        0 12px 24px -8px rgba(0,0,0,0.12);
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: white;
    transition: transform 350ms var(--ease-out), box-shadow 350ms var(--ease-out);
}

.card-wrapper:hover .member-card[b-d82flz2nkz] {
    transform: translateY(-6px) rotateX(2deg);
    box-shadow:
        0 32px 60px -12px rgba(216,35,26,0.3),
        0 16px 32px -8px rgba(0,0,0,0.15);
}

/* Background image (Pinisi boat) */
.card-bg-image[b-d82flz2nkz] {
    position: absolute;
    inset: 0;
    background-image: url('/images/card-bg-pinisi.png');
    background-size: cover;
    background-position: center;
    opacity: 3;
    pointer-events: none;
    z-index: 0;
    border-radius: 20px;
    mix-blend-mode: soft-light;
}

.card-shine[b-d82flz2nkz] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.2) 0%,
        rgba(255,255,255,0.05) 35%,
        transparent 55%
    );
    pointer-events: none;
    z-index: 1;
}

.card-top[b-d82flz2nkz], .card-middle[b-d82flz2nkz], .card-bottom[b-d82flz2nkz] {
    position: relative;
    z-index: 2;
}

.card-top[b-d82flz2nkz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand group: KKSS + Connect+ */
.card-brand[b-d82flz2nkz] {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.card-logo[b-d82flz2nkz] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
}

.card-logo-sub[b-d82flz2nkz] {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    opacity: 0.75;
    letter-spacing: 0.02em;
}

/* Org name (top-right) */
.card-org-name[b-d82flz2nkz] {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    text-align: right;
    line-height: 1.4;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.card-middle[b-d82flz2nkz] {
    display: flex;
    align-items: flex-start;
}

.card-user-details[b-d82flz2nkz] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-name[b-d82flz2nkz] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.card-number[b-d82flz2nkz] {
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    opacity: 0.8;
    letter-spacing: 0.06em;
}

.card-chapter[b-d82flz2nkz] {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    opacity: 0.6;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

.card-bottom[b-d82flz2nkz] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-bottom-left[b-d82flz2nkz] {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.card-qr-placeholder[b-d82flz2nkz] {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    flex-shrink: 0;
}

.qr-grid[b-d82flz2nkz] {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 1px;
}

.qr-grid[b-d82flz2nkz]::before {
    content: '';
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    background-image:
        linear-gradient(45deg, #a81812 25%, transparent 25%),
        linear-gradient(-45deg, #a81812 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #a81812 75%),
        linear-gradient(-45deg, transparent 75%, #a81812 75%);
    background-size: 12px 12px;
    opacity: 0.9;
}

.card-bottom-right[b-d82flz2nkz] {
    display: flex;
    align-items: flex-end;
}

.card-motto[b-d82flz2nkz] {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    opacity: 0.5;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.5;
}

.card-label[b-d82flz2nkz] {
    margin-top: 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gold-dot[b-d82flz2nkz] {
    color: var(--gold);
    font-size: 1rem;
    line-height: 1;
}


/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .hero-section[b-d82flz2nkz] {
        min-height: auto;
        padding: 100px 0 56px;
    }

    .hero-row[b-d82flz2nkz] {
        flex-direction: column;
        text-align: center;
        gap: 48px;
    }

    .hero-text[b-d82flz2nkz] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-sub[b-d82flz2nkz] {
        max-width: 520px;
    }

    .hero-actions[b-d82flz2nkz] {
        justify-content: center;
    }

    .hero-stats[b-d82flz2nkz] {
        justify-content: center;
    }

    .card-wrapper[b-d82flz2nkz] {
        width: 420px;
        height: 265px;
    }

    .member-card[b-d82flz2nkz] {
        padding: 24px 26px;
    }
}

@media (max-width: 639px) {
    .hero-section[b-d82flz2nkz] {
        padding: 88px 0 40px;
    }

    .hero-headline[b-d82flz2nkz] {
        font-size: clamp(2rem, 7.5vw, 2.6rem);
    }

    .hero-actions[b-d82flz2nkz] {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn-primary[b-d82flz2nkz],
    .hero-actions .btn-ghost[b-d82flz2nkz] {
        width: 100%;
    }

    .hero-stats[b-d82flz2nkz] {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .stat-dot[b-d82flz2nkz] {
        display: none;
    }

    .stat-item[b-d82flz2nkz] {
        width: auto;
        background: var(--bg-soft);
        padding: 6px 12px;
        border-radius: var(--radius-pill);
        font-size: 0.75rem;
    }
    
    .stat-item i[b-d82flz2nkz] {
        width: 14px;
        height: 14px;
    }

    .card-scene[b-d82flz2nkz] {
        height: 190px;
        transform: scale(0.65);
        transform-origin: top center;
    }

    .card-wrapper[b-d82flz2nkz] {
        width: 460px;
        height: 290px;
        max-width: none;
    }
}
/* /Components/Landing/HowItWorks.razor.rz.scp.css */
/* =============================================
   HOW IT WORKS – Premium Light Timeline
   ============================================= */

.how-it-works-section[b-pm5s9pc7w2] {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 10vw, 120px) 0;
}

/* Background glows (very subtle for light mode) */
.glow-blob[b-pm5s9pc7w2] {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.glow-blob-1[b-pm5s9pc7w2] {
    top: -200px;
    left: -100px;
    background: rgba(216, 35, 26, 0.04);
}

.glow-blob-2[b-pm5s9pc7w2] {
    bottom: -300px;
    right: -200px;
    background: rgba(255, 71, 71, 0.04);
}

/* --- Timeline Track & Grid --- */
.timeline-track-container[b-pm5s9pc7w2] {
    position: relative;
    margin-top: 80px;
    z-index: 1;
}

/* The continuous glowing line */
.timeline-track[b-pm5s9pc7w2] {
    position: absolute;
    top: 32px; /* aligns with marker */
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    z-index: 0;
}

.timeline-progress[b-pm5s9pc7w2] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), #ff4d4d);
    box-shadow: 0 0 15px rgba(216, 35, 26, 0.3);
    transition: width 1.5s var(--ease-out);
}

.timeline-track-container.revealed .timeline-progress[b-pm5s9pc7w2] {
    width: 100%;
}

.timeline-grid[b-pm5s9pc7w2] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* --- Node (Marker + Content) --- */
.step-node[b-pm5s9pc7w2] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The glowing dot on the line */
.step-marker[b-pm5s9pc7w2] {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.marker-dot[b-pm5s9pc7w2] {
    width: 16px;
    height: 16px;
    background: var(--bg-white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
    transition: background 300ms ease, box-shadow 300ms ease;
}

.step-node:hover .marker-dot[b-pm5s9pc7w2] {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(216, 35, 26, 0.5);
}

/* Pulsing effect behind the dot */
.marker-pulse[b-pm5s9pc7w2] {
    position: absolute;
    inset: 0;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
    animation: pulse-ring-light-b-pm5s9pc7w2 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring-light-b-pm5s9pc7w2 {
    0% { transform: scale(0.3); opacity: 0; }
    50% { opacity: 0.15; }
    100% { transform: scale(1); opacity: 0; }
}

/* --- Glass Card --- */
.step-content[b-pm5s9pc7w2] {
    width: 100%;
}

.step-glass-card[b-pm5s9pc7w2] {
    position: relative;
    background: rgba(0, 0, 0, 0.015);
    border: 1px solid rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    overflow: hidden;
    transition: transform 400ms var(--ease-out), background 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}

.step-glass-card:hover[b-pm5s9pc7w2] {
    transform: translateY(-8px);
    background: var(--bg-white);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Large Ghost Number */
.step-number[b-pm5s9pc7w2] {
    position: absolute;
    top: -10px;
    right: -10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 100px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: 0;
    transition: color 400ms ease;
}

.step-glass-card:hover .step-number[b-pm5s9pc7w2] {
    color: rgba(0, 0, 0, 0.05);
}

/* Icon Box */
.step-icon-box[b-pm5s9pc7w2] {
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px auto;
    background: linear-gradient(135deg, rgba(216,35,26,0.1) 0%, rgba(216,35,26,0) 100%);
    border: 1px solid rgba(216,35,26,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    z-index: 1;
    transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.step-glass-card:hover .step-icon-box[b-pm5s9pc7w2] {
    transform: scale(1.1);
    border-color: rgba(216,35,26,0.3);
    box-shadow: 0 8px 24px rgba(216,35,26,0.15);
}

.step-icon-box i[b-pm5s9pc7w2],
.step-icon-box svg[b-pm5s9pc7w2] {
    width: 24px;
    height: 24px;
}

/* Text inside card */
.step-glass-card h3[b-pm5s9pc7w2] {
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
    z-index: 1;
}

.step-glass-card p[b-pm5s9pc7w2] {
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    z-index: 1;
}


/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .timeline-grid[b-pm5s9pc7w2] {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
    
    .timeline-track[b-pm5s9pc7w2] {
        display: none;
    }
    
    .step-marker[b-pm5s9pc7w2] {
        display: none;
    }
    
    .step-glass-card[b-pm5s9pc7w2] {
        padding: 32px;
    }
}

@media (max-width: 639px) {
    .timeline-grid[b-pm5s9pc7w2] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-glass-card[b-pm5s9pc7w2] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 24px;
    }

    .step-icon-box[b-pm5s9pc7w2] {
        margin: 0 0 16px 0;
    }

    .step-number[b-pm5s9pc7w2] {
        right: 10px;
        top: 10px;
        font-size: 80px;
    }
}
/* /Components/Landing/MarketplacePreview.razor.rz.scp.css */
/* =============================================
   MARKETPLACE PREVIEW – Feature Highlight
   ============================================= */

.marketplace-section[b-gfnyjpl2el] {
    background: var(--bg-soft);
    padding: clamp(80px, 10vw, 120px) 0;
    overflow: hidden;
}

.marketplace-split[b-gfnyjpl2el] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* --- Left Content --- */
.marketplace-content[b-gfnyjpl2el] {
    max-width: 540px;
}

.marketplace-content h2[b-gfnyjpl2el] {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.marketplace-content .section-subtitle[b-gfnyjpl2el] {
    margin: 0 0 40px 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.marketplace-features[b-gfnyjpl2el] {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.marketplace-features li[b-gfnyjpl2el] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon[b-gfnyjpl2el] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(216, 35, 26, 0.08);
}

.feature-icon i[b-gfnyjpl2el], .feature-icon svg[b-gfnyjpl2el] {
    width: 24px;
    height: 24px;
}

.feature-text h4[b-gfnyjpl2el] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.feature-text p[b-gfnyjpl2el] {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* --- Right Visual: Collage --- */
.marketplace-visual[b-gfnyjpl2el] {
    position: relative;
    padding: 20px;
}

.collage-grid[b-gfnyjpl2el] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.collage-col[b-gfnyjpl2el] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Offset columns for masonry effect */
.col-down[b-gfnyjpl2el] {
    transform: translateY(40px);
}
.col-up[b-gfnyjpl2el] {
    transform: translateY(-20px);
}

.collage-img[b-gfnyjpl2el] {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: transform 300ms ease;
}

.collage-img:hover[b-gfnyjpl2el] {
    transform: scale(1.03);
}

/* Floating Trust Badge */
.floating-badge[b-gfnyjpl2el] {
    position: absolute;
    bottom: -10px;
    left: -30px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: float-b-gfnyjpl2el 6s ease-in-out infinite;
}

.badge-icon[b-gfnyjpl2el] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i[b-gfnyjpl2el], .badge-icon svg[b-gfnyjpl2el] {
    width: 24px;
    height: 24px;
}

.badge-content[b-gfnyjpl2el] {
    display: flex;
    flex-direction: column;
}

.badge-num[b-gfnyjpl2el] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 4px;
}

.badge-lbl[b-gfnyjpl2el] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes float-b-gfnyjpl2el {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .marketplace-split[b-gfnyjpl2el] {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .marketplace-content[b-gfnyjpl2el] {
        max-width: 100%;
        text-align: center;
    }
    
    .marketplace-features[b-gfnyjpl2el] {
        text-align: left;
    }
    
    .marketplace-visual[b-gfnyjpl2el] {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 639px) {
    .floating-badge[b-gfnyjpl2el] {
        left: 50%;
        bottom: -20px;
        transform: translateX(-50%);
        animation: none;
    }
    
    .col-down[b-gfnyjpl2el] { transform: translateY(20px); }
    .col-up[b-gfnyjpl2el] { transform: translateY(-10px); }
}
/* /Components/Landing/Navbar.razor.rz.scp.css */
/* =============================================
   NAVBAR – Premium Glassmorphism
   ============================================= */

.navbar[b-hlwdlvyjw4] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: height 400ms ease, background-color 400ms ease;
}

.navbar.scrolled[b-hlwdlvyjw4] {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-container[b-hlwdlvyjw4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 400ms ease;
}

.navbar.scrolled .navbar-container[b-hlwdlvyjw4] {
    height: 70px;
}

.navbar-logo[b-hlwdlvyjw4] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.logo-text-primary[b-hlwdlvyjw4] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.logo-dot[b-hlwdlvyjw4] {
    color: var(--primary);
}

.logo-text-secondary[b-hlwdlvyjw4] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.navbar-links[b-hlwdlvyjw4] {
    display: flex;
    gap: 32px;
}

.navbar-links a[b-hlwdlvyjw4] {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-body);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: color 200ms ease;
    white-space: nowrap;
}

.navbar-links a[b-hlwdlvyjw4]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 300ms var(--ease-out);
}

.navbar-links a:hover[b-hlwdlvyjw4] {
    color: var(--primary);
}

.navbar-links a:hover[b-hlwdlvyjw4]::after {
    width: 100%;
}

.navbar-cta[b-hlwdlvyjw4] {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Navbar specific button sizes */
.btn-primary-sm[b-hlwdlvyjw4] {
    background: var(--primary);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn-primary-sm:hover[b-hlwdlvyjw4] {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(216, 35, 26, 0.2);
}

.btn-ghost-sm[b-hlwdlvyjw4] {
    background: transparent;
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    transition: background 200ms ease, color 200ms ease;
}

.btn-ghost-sm:hover[b-hlwdlvyjw4] {
    background: var(--bg-soft);
    color: var(--primary);
}

.hamburger-btn[b-hlwdlvyjw4] {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Mobile Drawer */
.drawer-overlay[b-hlwdlvyjw4] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease;
}

.drawer-overlay.open[b-hlwdlvyjw4] {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer[b-hlwdlvyjw4] {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: var(--bg-white);
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 400ms var(--ease-out);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-drawer.open[b-hlwdlvyjw4] {
    transform: translateX(0);
}

.drawer-close[b-hlwdlvyjw4] {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--bg-soft);
    border-radius: 50%;
    border: none;
    color: var(--text-dark);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease;
}

.drawer-close:hover[b-hlwdlvyjw4] {
    background: rgba(216, 35, 26, 0.1);
    color: var(--primary);
}

.drawer-links[b-hlwdlvyjw4] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 64px;
    margin-bottom: auto;
}

.drawer-links a[b-hlwdlvyjw4] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color 200ms ease, padding-left 200ms ease;
}

.drawer-links a:hover[b-hlwdlvyjw4] {
    color: var(--primary);
    padding-left: 8px;
    border-bottom-color: var(--primary);
}

.drawer-cta[b-hlwdlvyjw4] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 1024px) {
    .navbar-links[b-hlwdlvyjw4], .navbar-cta[b-hlwdlvyjw4] {
        display: none;
    }
    .hamburger-btn[b-hlwdlvyjw4] {
        display: flex;
    }
}
/* /Components/Landing/Pricing.razor.rz.scp.css */
/* =============================================
   PRICING – Single Premium Tier
   ============================================= */

.pricing-section[b-sb252ck1qw] {
    background: var(--bg-white);
    padding: clamp(80px, 10vw, 120px) 0;
}

/* --- Pricing Grid Layout --- */
.pricing-grid[b-sb252ck1qw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card[b-sb252ck1qw] {
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 5vw, 48px);
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: transform 350ms var(--ease-out), box-shadow 350ms var(--ease-out);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover[b-sb252ck1qw] {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(216, 35, 26, 0.15);
}

.pricing-header[b-sb252ck1qw] {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3[b-sb252ck1qw] {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.pricing-card.highlighted[b-sb252ck1qw] {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(168, 24, 18, 0.1);
}

.popular-badge[b-sb252ck1qw] {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(168, 24, 18, 0.3);
    white-space: nowrap;
}

.disabled-feature[b-sb252ck1qw] {
    opacity: 0.6;
}

.pricing-desc[b-sb252ck1qw] {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

.pricing-price[b-sb252ck1qw] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--primary);
}

.currency[b-sb252ck1qw] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 6px;
    margin-right: 4px;
}

.amount[b-sb252ck1qw] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.suffix[b-sb252ck1qw] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    align-self: flex-end;
    margin-bottom: 12px;
    margin-left: 2px;
}

.period[b-sb252ck1qw] {
    color: var(--text-muted);
    font-size: 1rem;
    align-self: flex-end;
    margin-bottom: 12px;
    margin-left: 4px;
}

.trust-row[b-sb252ck1qw] {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.trust-row span[b-sb252ck1qw] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-row i[b-sb252ck1qw], .trust-row svg[b-sb252ck1qw] {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.feature-list[b-sb252ck1qw] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
}

.feature-list li[b-sb252ck1qw] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.5;
}

.feature-list li i[b-sb252ck1qw], .feature-list li svg[b-sb252ck1qw] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

/* --- Testimonial Mini Strip --- */
.testimonial-mini-strip[b-sb252ck1qw] {
    margin-top: 80px;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonial-mini-strip[b-sb252ck1qw]::before,
.testimonial-mini-strip[b-sb252ck1qw]::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
}

.testimonial-mini-strip[b-sb252ck1qw]::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-white), transparent);
}

.testimonial-mini-strip[b-sb252ck1qw]::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-white), transparent);
}

.strip-track[b-sb252ck1qw] {
    display: flex;
    /* No gap here, gap is handled by the groups to make math perfect */
    animation: scrollStrip-b-sb252ck1qw 30s linear infinite;
    width: max-content;
}

.strip-group[b-sb252ck1qw] {
    display: flex;
    gap: 40px;
    padding-right: 40px; /* Acts as the gap between group 1 and group 2 */
}

/* Pause animation on hover for better UX */
.testimonial-mini-strip:hover .strip-track[b-sb252ck1qw] {
    animation-play-state: paused;
}

@keyframes scrollStrip-b-sb252ck1qw {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Exactly half the track width */
}

.mini-review[b-sb252ck1qw] {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-soft);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    border: 1px solid var(--border);
}

.mini-review .stars[b-sb252ck1qw] {
    display: flex;
    gap: 4px;
}

.mini-review .stars i[b-sb252ck1qw], .mini-review .stars svg[b-sb252ck1qw] {
    width: 16px;
    height: 16px;
    color: var(--gold);
    fill: var(--gold);
}

.mini-review p[b-sb252ck1qw] {
    margin: 0;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 639px) {
    .pricing-single[b-sb252ck1qw] {
        padding: 0 16px;
    }
    .pricing-card[b-sb252ck1qw] {
        padding: 32px 24px;
    }
    .mini-review[b-sb252ck1qw] {
        padding: 10px 18px;
        gap: 10px;
    }
    .mini-review p[b-sb252ck1qw] {
        font-size: 0.8rem;
    }
    .mini-review .stars i[b-sb252ck1qw], .mini-review .stars svg[b-sb252ck1qw] {
        width: 14px;
        height: 14px;
    }
}
/* /Components/Landing/StatsBand.razor.rz.scp.css */
/* =============================================
   STATS BAND – Premium Glassmorphism Cards
   ============================================= */

.stats-band[b-m3bi2in20q] {
    position: relative;
    background: linear-gradient(135deg, #d8231a 0%, #a81812 40%, #7a110d 100%);
    padding: clamp(48px, 7vw, 80px) 0;
    overflow: hidden;
}

/* Subtle dot pattern overlay */
.stats-bg-pattern[b-m3bi2in20q] {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.stats-container[b-m3bi2in20q] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* --- Individual Stat Card --- */
.stat-card[b-m3bi2in20q] {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px 28px;
    transition: background 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.stat-card:hover[b-m3bi2in20q] {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Icon container */
.stat-icon-wrap[b-m3bi2in20q] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.stat-icon-wrap i[b-m3bi2in20q],
.stat-icon-wrap svg[b-m3bi2in20q] {
    width: 22px;
    height: 22px;
    color: white;
}

/* Text content */
.stat-content[b-m3bi2in20q] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.stat-number[b-m3bi2in20q] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.stat-label[b-m3bi2in20q] {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
    white-space: nowrap;
}


/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
    .stats-container[b-m3bi2in20q] {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 639px) {
    .stats-band[b-m3bi2in20q] {
        padding: clamp(36px, 6vw, 56px) 0;
    }

    .stats-container[b-m3bi2in20q] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card[b-m3bi2in20q] {
        padding: 20px 24px;
        gap: 14px;
    }

    .stat-icon-wrap[b-m3bi2in20q] {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .stat-icon-wrap i[b-m3bi2in20q] {
        width: 20px;
        height: 20px;
    }

    .stat-number[b-m3bi2in20q] {
        font-size: 1.5rem;
    }
}
/* /Components/Landing/Testimonials.razor.rz.scp.css */
/* =============================================
   TESTIMONIALS – Infinite Marquee
   ============================================= */

.testimonials-section[b-3wmozn7bsv] {
    background: var(--bg-soft);
    padding: clamp(60px, 8vw, 80px) 0;
    overflow: hidden;
}

.testimonials-marquee-container[b-3wmozn7bsv] {
    overflow: hidden;
    position: relative;
    padding: 24px 0;
    margin-top: 40px;
}

/* Fading edges */
.testimonials-marquee-container[b-3wmozn7bsv]::before,
.testimonials-marquee-container[b-3wmozn7bsv]::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-marquee-container[b-3wmozn7bsv]::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-soft), transparent);
}

.testimonials-marquee-container[b-3wmozn7bsv]::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-soft), transparent);
}

.marquee-track[b-3wmozn7bsv] {
    display: flex;
    /* Gap is handled by .marquee-group for perfect math */
    animation: scrollTestimonial-b-3wmozn7bsv 50s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.testimonials-marquee-container:hover .marquee-track[b-3wmozn7bsv] {
    animation-play-state: paused;
}

.marquee-group[b-3wmozn7bsv] {
    display: flex;
    gap: 32px;
    padding-right: 32px; /* Acts as the gap between groups */
}

@keyframes scrollTestimonial-b-3wmozn7bsv {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Shift by exactly half the total width (one group) */
}

/* --- Card Styles --- */
.testimonial-card[b-3wmozn7bsv] {
    width: 420px; /* Fixed width for horizontal layout */
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 32px);
    position: relative;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.testimonial-card:hover[b-3wmozn7bsv] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.quote-icon[b-3wmozn7bsv] {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--primary);
    opacity: 0.1;
    width: 64px;
    height: 64px;
    z-index: 0;
}

.stars[b-3wmozn7bsv] {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.stars i[b-3wmozn7bsv], .stars svg[b-3wmozn7bsv] {
    width: 16px;
    height: 16px;
    color: var(--gold);
    fill: var(--gold);
}

.testimonial-text[b-3wmozn7bsv] {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    color: var(--text-dark);
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author[b-3wmozn7bsv] {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.avatar-circle[b-3wmozn7bsv] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(216, 35, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.author-info[b-3wmozn7bsv] {
    display: flex;
    flex-direction: column;
}

.author-info strong[b-3wmozn7bsv] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.author-info span[b-3wmozn7bsv] {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .testimonial-card[b-3wmozn7bsv] {
        width: 320px;
        padding: 24px;
    }
    
    .testimonials-marquee-container[b-3wmozn7bsv]::before,
    .testimonials-marquee-container[b-3wmozn7bsv]::after {
        width: 40px;
    }
}

@media (max-width: 639px) {
    .testimonial-card[b-3wmozn7bsv] {
        width: 280px;
        padding: 20px;
    }
    .testimonial-text[b-3wmozn7bsv] {
        font-size: 0.9rem;
    }
    .author-info strong[b-3wmozn7bsv] {
        font-size: 0.9rem;
    }
    .author-info span[b-3wmozn7bsv] {
        font-size: 0.75rem;
    }
    .author-avatar[b-3wmozn7bsv] {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    .stars[b-3wmozn7bsv] {
        margin-bottom: 12px;
    }
    .stars i[b-3wmozn7bsv], .stars svg[b-3wmozn7bsv] {
        width: 14px;
        height: 14px;
    }
}
/* /Layout/DashboardLayout.razor.rz.scp.css */
/* =============================================
   DASHBOARD LAYOUT
   ============================================= */
.db-layout[b-doa9uk8q5u] {
    display: flex;
    height: 100vh;
    background: #F0F2F5;
    overflow: hidden;
}

/* ---- Sidebar ---- */
.db-sidebar[b-doa9uk8q5u] {
    width: 260px;
    min-width: 260px;
    background: #FFFFFF;
    border-right: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-top-row[b-doa9uk8q5u] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 24px 36px;
}

.sidebar-brand[b-doa9uk8q5u] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-close-btn[b-doa9uk8q5u] {
    display: none;
    background: transparent;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.sidebar-close-btn:hover[b-doa9uk8q5u] {
    background: #F3F4F6;
    color: #1a1a2e;
}

.sidebar-close-btn i[b-doa9uk8q5u], .sidebar-close-btn svg[b-doa9uk8q5u] {
    width: 20px;
    height: 20px;
}

.brand-icon[b-doa9uk8q5u] {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #c4211a, #8c140f);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(168,24,18,0.2);
}

.brand-icon.small[b-doa9uk8q5u] {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.brand-text[b-doa9uk8q5u] {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong[b-doa9uk8q5u] {
    font-size: 1.1rem;
    color: var(--text-dark, #1a1a2e);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.brand-text span[b-doa9uk8q5u] {
    font-size: 0.72rem;
    color: var(--text-muted, #6B7280);
    font-weight: 500;
}

.sidebar-nav[b-doa9uk8q5u] {
    flex: 1;
    padding: 0 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-label[b-doa9uk8q5u] {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9CA3AF;
    padding: 4px 12px 10px;
}

.sidebar-link[b-doa9uk8q5u] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #4B5563;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.15s ease;
    font-family: 'Inter', sans-serif;
}

.sidebar-link i[b-doa9uk8q5u], .sidebar-link svg[b-doa9uk8q5u] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #9CA3AF;
    transition: color 0.15s ease;
}

.sidebar-link:hover[b-doa9uk8q5u] {
    background: #F9FAFB;
    color: #1a1a2e;
}

.sidebar-link:hover i[b-doa9uk8q5u], .sidebar-link:hover svg[b-doa9uk8q5u] {
    color: #6B7280;
}

.sidebar-link.active[b-doa9uk8q5u] {
    background: rgba(168, 24, 18, 0.08);
    color: var(--primary, #a81812);
    font-weight: 600;
}

.sidebar-link.active i[b-doa9uk8q5u], .sidebar-link.active svg[b-doa9uk8q5u] {
    color: var(--primary, #a81812);
}

.sidebar-footer[b-doa9uk8q5u] {
    padding: 14px;
    border-top: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
}

/* ---- Mobile top bar ---- */
.db-topbar-mobile[b-doa9uk8q5u] {
    display: none;
}

.sidebar-overlay[b-doa9uk8q5u] {
    display: none;
}

/* ---- Main Content Wrapper ---- */
.db-content-wrapper[b-doa9uk8q5u] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100vh;
}

/* ---- Main Content ---- */
.db-main[b-doa9uk8q5u] {
    flex: 1;
    padding: 32px 40px;
    overflow-y: auto;
}

/* =============================================
   TABLET (768px - 1023px) - Icon-only sidebar
   ============================================= */
@media (max-width: 1023px) {
    .db-sidebar[b-doa9uk8q5u] {
        width: 72px;
        min-width: 72px;
        align-items: center;
    }

    .sidebar-top-row[b-doa9uk8q5u] {
        padding: 22px 0 28px;
        justify-content: center;
    }

    .sidebar-brand[b-doa9uk8q5u] {
        justify-content: center;
    }

    .brand-text[b-doa9uk8q5u],
    .sidebar-link span[b-doa9uk8q5u],
    .nav-label[b-doa9uk8q5u] {
        display: none;
    }

    .sidebar-nav[b-doa9uk8q5u] {
        align-items: center;
        padding: 0 10px;
    }

    .sidebar-link[b-doa9uk8q5u] {
        justify-content: center;
        padding: 12px;
        border-radius: 12px;
        gap: 0;
    }

    .sidebar-footer[b-doa9uk8q5u] {
        align-items: center;
        padding: 10px;
    }

    .db-main[b-doa9uk8q5u] {
        padding: 28px 24px;
    }
}

/* =============================================
   MOBILE (< 768px) - Hidden sidebar + hamburger
   ============================================= */
@media (max-width: 767px) {
    .db-sidebar[b-doa9uk8q5u] {
        position: fixed;
        top: 0;
        left: -280px;
        width: 260px;
        min-width: 260px;
        height: 100vh;
        z-index: 1001;
        transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
        align-items: stretch;
    }

    .sidebar-close-btn[b-doa9uk8q5u] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar-top-row[b-doa9uk8q5u] {
        padding: 24px 24px 32px;
    }

    .db-sidebar.open[b-doa9uk8q5u] {
        left: 0;
        box-shadow: 6px 0 24px rgba(0,0,0,0.12);
    }

    .sidebar-overlay.open[b-doa9uk8q5u] {
        display: block;
    }

    .sidebar-overlay[b-doa9uk8q5u] {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.35);
        z-index: 1000;
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
    }

    /* Restore full sidebar elements on mobile drawer */
    .brand-text[b-doa9uk8q5u],
    .sidebar-link span[b-doa9uk8q5u],
    .nav-label[b-doa9uk8q5u] {
        display: block;
    }

    .sidebar-brand[b-doa9uk8q5u] {
        padding: 24px 24px 32px;
        justify-content: flex-start;
    }

    .sidebar-nav[b-doa9uk8q5u] {
        align-items: stretch;
        padding: 0 14px;
    }

    .sidebar-link[b-doa9uk8q5u] {
        justify-content: flex-start;
        padding: 10px 14px;
        border-radius: 10px;
        gap: 12px;
    }

    .sidebar-footer[b-doa9uk8q5u] {
        align-items: stretch;
        padding: 14px;
    }

    .db-topbar-mobile[b-doa9uk8q5u] {
        display: flex;
        align-items: center;
        gap: 10px;
        position: sticky;
        top: 0;
        z-index: 50;
        background: #FFFFFF;
        padding: 14px 20px;
        border-bottom: 1px solid #E5E7EB;
    }

    .topbar-title[b-doa9uk8q5u] {
        flex: 1;
        font-size: 0.95rem;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .mobile-menu-btn[b-doa9uk8q5u] {
        background: transparent;
        border: none;
        color: var(--text-dark, #1a1a2e);
        cursor: pointer;
        padding: 6px;
    }

    .mobile-menu-btn i[b-doa9uk8q5u], .mobile-menu-btn svg[b-doa9uk8q5u] {
        width: 24px;
        height: 24px;
    }

    .db-main[b-doa9uk8q5u] {
        padding: 20px 16px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-x1uor4yb09] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-x1uor4yb09] {
    flex: 1;
}

.sidebar[b-x1uor4yb09] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-x1uor4yb09] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-x1uor4yb09]  a, .top-row[b-x1uor4yb09]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-x1uor4yb09]  a:hover, .top-row[b-x1uor4yb09]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-x1uor4yb09]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-x1uor4yb09] {
        justify-content: space-between;
    }

    .top-row[b-x1uor4yb09]  a, .top-row[b-x1uor4yb09]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-x1uor4yb09] {
        flex-direction: row;
    }

    .sidebar[b-x1uor4yb09] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-x1uor4yb09] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-x1uor4yb09]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-x1uor4yb09], article[b-x1uor4yb09] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-7pw07urjb9] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-7pw07urjb9] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-7pw07urjb9] {
    font-size: 1.1rem;
}

.bi[b-7pw07urjb9] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-7pw07urjb9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-7pw07urjb9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-7pw07urjb9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-7pw07urjb9] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-7pw07urjb9] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-7pw07urjb9] {
        padding-bottom: 1rem;
    }

    .nav-item[b-7pw07urjb9]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-7pw07urjb9]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-7pw07urjb9]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-7pw07urjb9] {
        display: none;
    }

    .collapse[b-7pw07urjb9] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-7pw07urjb9] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Auth/ChangePassword.razor.rz.scp.css */
.auth-container[b-c44u14phpv] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    padding: 2rem;
    font-family: 'Inter', sans-serif;
}

.auth-card[b-c44u14phpv] {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 480px;
    padding: 3rem 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card:hover[b-c44u14phpv] {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.auth-header[b-c44u14phpv] {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-title[b-c44u14phpv] {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-c44u14phpv] {
    color: #697386;
    font-size: 0.95rem;
}

.form-group[b-c44u14phpv] {
    margin-bottom: 1.5rem;
}

.form-label[b-c44u14phpv] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3c4257;
    margin-bottom: 0.5rem;
}

.form-control[b-c44u14phpv] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #e3e8ee;
    border-radius: 8px;
    background-color: #fafbfc;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.form-control:focus[b-c44u14phpv] {
    border-color: #635bff;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.1);
}

.btn-primary[b-c44u14phpv] {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #635bff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover[b-c44u14phpv] {
    background-color: #4a41d6;
}

.btn-primary:disabled[b-c44u14phpv] {
    background-color: #a39ffc;
    cursor: not-allowed;
}

.auth-footer[b-c44u14phpv] {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #697386;
}

.auth-link[b-c44u14phpv] {
    color: #635bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover[b-c44u14phpv] {
    color: #4a41d6;
    text-decoration: underline;
}

.forgot-password[b-c44u14phpv] {
    text-align: right;
    margin-bottom: 1.5rem;
}

.forgot-password a[b-c44u14phpv] {
    font-size: 0.875rem;
}

.error-message[b-c44u14phpv] {
    background-color: #fdeaea;
    color: #d92d20;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-left: 4px solid #d92d20;
}

.spinner[b-c44u14phpv] {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin-b-c44u14phpv 0.8s linear infinite;
}

@keyframes spin-b-c44u14phpv {
    to { transform: rotate(360deg); }
}

/* /Pages/Auth/ForgotPassword.razor.rz.scp.css */
/* Split layout container */
.auth-split-layout[b-rdi83www5x] {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-soft, #f8f7f6);
}

/* Left Pane - Promotional and Branding */
.auth-promo-pane[b-rdi83www5x] {
    background: linear-gradient(135deg, #c4211a 0%, #8c140f 100%);
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Add a subtle graphic pattern overlay */
.auth-promo-pane[b-rdi83www5x]::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.promo-brand[b-rdi83www5x] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
}

.brand-text-primary[b-rdi83www5x] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.brand-dot[b-rdi83www5x] {
    color: var(--gold, #D4A017);
    font-weight: 800;
}

.brand-text-secondary[b-rdi83www5x] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--gold, #D4A017);
}

.promo-content[b-rdi83www5x] {
    max-width: 520px;
    margin: auto 0;
}

.promo-title[b-rdi83www5x] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.promo-subtitle[b-rdi83www5x] {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.promo-features[b-rdi83www5x] {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.promo-features li[b-rdi83www5x] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon-wrap[b-rdi83www5x] {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrap i[b-rdi83www5x], .feature-icon-wrap svg[b-rdi83www5x] {
    width: 20px;
    height: 20px;
    color: var(--gold, #D4A017);
}

.feature-text strong[b-rdi83www5x] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
}

.feature-text p[b-rdi83www5x] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.4;
}

.promo-footer[b-rdi83www5x] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Right Pane - Form */
.auth-form-pane[b-rdi83www5x] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
}

.auth-card[b-rdi83www5x] {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-lg, 0 12px 40px rgba(0,0,0,0.06));
    border: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 440px;
    padding: 3rem 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-brand-header[b-rdi83www5x] {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.mobile-brand-header .brand-text-primary[b-rdi83www5x] {
    color: #c4211a;
}

.mobile-brand-header .brand-text-secondary[b-rdi83www5x] {
    color: var(--gold, #D4A017);
}

.auth-header[b-rdi83www5x] {
    text-align: center;
    margin-bottom: 2.25rem;
}

.auth-title[b-rdi83www5x] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark, #111111);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.auth-subtitle[b-rdi83www5x] {
    color: var(--text-muted, #6B7280);
    font-size: 0.95rem;
}

.form-group[b-rdi83www5x] {
    margin-bottom: 1.5rem;
}

.form-label[b-rdi83www5x] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body, #374151);
    margin-bottom: 0.5rem;
}

/* Input elements with Lucide icons inside */
.input-with-icon[b-rdi83www5x] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon[b-rdi83www5x] {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    color: var(--text-light, #9CA3AF);
    pointer-events: none;
    transition: color 0.2s ease;
}

.form-control[b-rdi83www5x] {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.75rem;
    font-size: 0.95rem;
    border: 1.5px solid var(--border, #E5E7EB);
    border-radius: 10px;
    background-color: #fafbfc;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark, #111111);
}

.form-control:focus[b-rdi83www5x] {
    border-color: var(--primary, #d8231a);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-glow, rgba(216, 35, 26, 0.12));
}

.form-control:focus + .input-icon[b-rdi83www5x],
.input-with-icon:focus-within .input-icon[b-rdi83www5x] {
    color: var(--primary, #d8231a);
}

.btn-primary-auth[b-rdi83www5x] {
    width: 100%;
    height: 48px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--primary, #d8231a);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s var(--ease-out, ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(216, 35, 26, 0.15);
}

.btn-primary-auth:hover[b-rdi83www5x] {
    background-color: var(--primary-dark, #a81812);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(216, 35, 26, 0.25);
}

.btn-primary-auth:active[b-rdi83www5x] {
    transform: translateY(0);
}

.btn-primary-auth:disabled[b-rdi83www5x] {
    background-color: #f3a3a0;
    box-shadow: none;
    cursor: not-allowed;
}

.auth-footer[b-rdi83www5x] {
    margin-top: 1.75rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted, #6B7280);
}

.auth-link[b-rdi83www5x] {
    color: var(--primary, #d8231a);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.15s ease;
}

.auth-link:hover[b-rdi83www5x] {
    color: var(--primary-dark, #a81812);
    text-decoration: underline;
}

.error-message[b-rdi83www5x] {
    background-color: var(--error-light, #fee2e2);
    color: var(--error, #dc2626);
    padding: 0.875rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-left: 4px solid var(--error, #dc2626);
}

.error-message i[b-rdi83www5x], .error-message svg[b-rdi83www5x] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.success-message[b-rdi83www5x] {
    background-color: #edfdf3;
    color: #027a48;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-left: 4px solid #027a48;
}

.success-message i[b-rdi83www5x], .success-message svg[b-rdi83www5x] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.info-message[b-rdi83www5x] {
    background-color: #e0f2fe;
    color: #0369a1;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-left: 4px solid #0369a1;
}

.info-message i[b-rdi83www5x], .info-message svg[b-rdi83www5x] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.spinner[b-rdi83www5x] {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin-b-rdi83www5x 0.8s linear infinite;
}

@keyframes spin-b-rdi83www5x {
    to { transform: rotate(360deg); }
}

/* =============================================
   RESPONSIVENESS
   ============================================= */
@media (max-width: 991px) {
    .auth-split-layout[b-rdi83www5x] {
        grid-template-columns: 1fr;
    }
    
    .auth-promo-pane[b-rdi83www5x] {
        display: none;
    }
    
    .auth-form-pane[b-rdi83www5x] {
        padding: 2rem 1.5rem;
    }
    
    .mobile-brand-header[b-rdi83www5x] {
        display: flex;
    }
    
    .auth-card[b-rdi83www5x] {
        padding: 2.5rem 1.75rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    }
}
/* /Pages/Auth/Login.razor.rz.scp.css */
/* Split layout container */
.auth-split-layout[b-b71ktet8jw] {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-soft, #f8f7f6);
}

/* Left Pane - Promotional and Branding */
.auth-promo-pane[b-b71ktet8jw] {
    background: linear-gradient(135deg, #c4211a 0%, #8c140f 100%);
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Add a subtle graphic pattern overlay */
.auth-promo-pane[b-b71ktet8jw]::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.promo-brand[b-b71ktet8jw] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
}

.brand-text-primary[b-b71ktet8jw] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.brand-dot[b-b71ktet8jw] {
    color: var(--gold, #D4A017);
    font-weight: 800;
}

.brand-text-secondary[b-b71ktet8jw] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--gold, #D4A017);
}

.promo-content[b-b71ktet8jw] {
    max-width: 520px;
    margin: auto 0;
}

.promo-title[b-b71ktet8jw] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.promo-subtitle[b-b71ktet8jw] {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.promo-features[b-b71ktet8jw] {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.promo-features li[b-b71ktet8jw] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon-wrap[b-b71ktet8jw] {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrap i[b-b71ktet8jw], .feature-icon-wrap svg[b-b71ktet8jw] {
    width: 20px;
    height: 20px;
    color: var(--gold, #D4A017);
}

.feature-text strong[b-b71ktet8jw] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
}

.feature-text p[b-b71ktet8jw] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.4;
}

.promo-footer[b-b71ktet8jw] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Right Pane - Form */
.auth-form-pane[b-b71ktet8jw] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
}

.auth-card[b-b71ktet8jw] {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-lg, 0 12px 40px rgba(0,0,0,0.06));
    border: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 440px;
    padding: 3rem 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-brand-header[b-b71ktet8jw] {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.mobile-brand-header .brand-text-primary[b-b71ktet8jw] {
    color: #c4211a;
}

.mobile-brand-header .brand-text-secondary[b-b71ktet8jw] {
    color: var(--gold, #D4A017);
}

.auth-header[b-b71ktet8jw] {
    text-align: center;
    margin-bottom: 2.25rem;
}

.auth-title[b-b71ktet8jw] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark, #111111);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.auth-subtitle[b-b71ktet8jw] {
    color: var(--text-muted, #6B7280);
    font-size: 0.95rem;
}

.form-group[b-b71ktet8jw] {
    margin-bottom: 1.25rem;
}

.form-label[b-b71ktet8jw] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body, #374151);
    margin-bottom: 0.5rem;
}

/* Input elements with Lucide icons inside */
.input-with-icon[b-b71ktet8jw] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon[b-b71ktet8jw] {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    color: var(--text-light, #9CA3AF);
    pointer-events: none;
    transition: color 0.2s ease;
}

.form-control[b-b71ktet8jw] {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.75rem;
    font-size: 0.95rem;
    border: 1.5px solid var(--border, #E5E7EB);
    border-radius: 10px;
    background-color: #fafbfc;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark, #111111);
}

.form-control:focus[b-b71ktet8jw] {
    border-color: var(--primary, #d8231a);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-glow, rgba(216, 35, 26, 0.12));
}

.form-control:focus + .input-icon[b-b71ktet8jw],
.input-with-icon:focus-within .input-icon[b-b71ktet8jw] {
    color: var(--primary, #d8231a);
}

.forgot-password[b-b71ktet8jw] {
    text-align: right;
    margin-bottom: 1.5rem;
}

.forgot-password a[b-b71ktet8jw] {
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-primary-auth[b-b71ktet8jw] {
    width: 100%;
    height: 48px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--primary, #d8231a);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s var(--ease-out, ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(216, 35, 26, 0.15);
}

.btn-primary-auth:hover[b-b71ktet8jw] {
    background-color: var(--primary-dark, #a81812);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(216, 35, 26, 0.25);
}

.btn-primary-auth:active[b-b71ktet8jw] {
    transform: translateY(0);
}

.btn-primary-auth:disabled[b-b71ktet8jw] {
    background-color: #f3a3a0;
    box-shadow: none;
    cursor: not-allowed;
}

.auth-footer[b-b71ktet8jw] {
    margin-top: 1.75rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted, #6B7280);
}

.auth-link[b-b71ktet8jw] {
    color: var(--primary, #d8231a);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.15s ease;
}

.auth-link:hover[b-b71ktet8jw] {
    color: var(--primary-dark, #a81812);
    text-decoration: underline;
}

.error-message[b-b71ktet8jw] {
    background-color: var(--error-light, #fee2e2);
    color: var(--error, #dc2626);
    padding: 0.875rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-left: 4px solid var(--error, #dc2626);
}

.error-message i[b-b71ktet8jw], .error-message svg[b-b71ktet8jw] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.spinner[b-b71ktet8jw] {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin-b-b71ktet8jw 0.8s linear infinite;
}

@keyframes spin-b-b71ktet8jw {
    to { transform: rotate(360deg); }
}

/* =============================================
   RESPONSIVENESS
   ============================================= */
@media (max-width: 991px) {
    .auth-split-layout[b-b71ktet8jw] {
        grid-template-columns: 1fr;
    }
    
    .auth-promo-pane[b-b71ktet8jw] {
        display: none;
    }
    
    .auth-form-pane[b-b71ktet8jw] {
        padding: 2rem 1.5rem;
    }
    
    .mobile-brand-header[b-b71ktet8jw] {
        display: flex;
    }
    
    .auth-card[b-b71ktet8jw] {
        padding: 2.5rem 1.75rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    }
}
/* /Pages/Auth/PaymentFinish.razor.rz.scp.css */
.auth-container[b-5loe0ty6m9] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    padding: 2rem;
    font-family: 'Inter', sans-serif;
}

.auth-card[b-5loe0ty6m9] {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 480px;
    padding: 3rem 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card:hover[b-5loe0ty6m9] {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.auth-header[b-5loe0ty6m9] {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-title[b-5loe0ty6m9] {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-5loe0ty6m9] {
    color: #697386;
    font-size: 0.95rem;
}

.form-group[b-5loe0ty6m9] {
    margin-bottom: 1.5rem;
}

.form-label[b-5loe0ty6m9] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3c4257;
    margin-bottom: 0.5rem;
}

.form-control[b-5loe0ty6m9] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #e3e8ee;
    border-radius: 8px;
    background-color: #fafbfc;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.form-control:focus[b-5loe0ty6m9] {
    border-color: #635bff;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.1);
}

.btn-primary[b-5loe0ty6m9] {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #635bff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover[b-5loe0ty6m9] {
    background-color: #4a41d6;
}

.btn-primary:disabled[b-5loe0ty6m9] {
    background-color: #a39ffc;
    cursor: not-allowed;
}

.auth-footer[b-5loe0ty6m9] {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #697386;
}

.auth-link[b-5loe0ty6m9] {
    color: #635bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover[b-5loe0ty6m9] {
    color: #4a41d6;
    text-decoration: underline;
}

.forgot-password[b-5loe0ty6m9] {
    text-align: right;
    margin-bottom: 1.5rem;
}

.forgot-password a[b-5loe0ty6m9] {
    font-size: 0.875rem;
}

.error-message[b-5loe0ty6m9] {
    background-color: #fdeaea;
    color: #d92d20;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-left: 4px solid #d92d20;
}

.spinner[b-5loe0ty6m9] {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin-b-5loe0ty6m9 0.8s linear infinite;
}

@keyframes spin-b-5loe0ty6m9 {
    to { transform: rotate(360deg); }
}

/* /Pages/Auth/Register.razor.rz.scp.css */
/* Split layout container */
.auth-split-layout[b-begxxjvrv4] {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-soft, #f8f7f6);
}

/* Left Pane - Promotional and Branding */
.auth-promo-pane[b-begxxjvrv4] {
    background: linear-gradient(135deg, #c4211a 0%, #8c140f 100%);
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Graphic pattern overlay */
.auth-promo-pane[b-begxxjvrv4]::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.promo-brand[b-begxxjvrv4] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
}

.brand-text-primary[b-begxxjvrv4] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.brand-dot[b-begxxjvrv4] {
    color: var(--gold, #D4A017);
    font-weight: 800;
}

.brand-text-secondary[b-begxxjvrv4] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--gold, #D4A017);
}

.promo-content[b-begxxjvrv4] {
    max-width: 520px;
    margin: auto 0;
}

.promo-title[b-begxxjvrv4] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.promo-subtitle[b-begxxjvrv4] {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.promo-features[b-begxxjvrv4] {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.promo-features li[b-begxxjvrv4] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon-wrap[b-begxxjvrv4] {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrap i[b-begxxjvrv4], .feature-icon-wrap svg[b-begxxjvrv4] {
    width: 20px;
    height: 20px;
    color: var(--gold, #D4A017);
}

.feature-text strong[b-begxxjvrv4] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
}

.feature-text p[b-begxxjvrv4] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.4;
}

.promo-footer[b-begxxjvrv4] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Right Pane - Form */
.auth-form-pane[b-begxxjvrv4] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    overflow-y: auto;
}

.auth-card[b-begxxjvrv4] {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-lg, 0 12px 40px rgba(0,0,0,0.06));
    border: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 480px;
    padding: 3.5rem 2.75rem;
    margin: 2rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-brand-header[b-begxxjvrv4] {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.mobile-brand-header .brand-text-primary[b-begxxjvrv4] {
    color: #c4211a;
}

.mobile-brand-header .brand-text-secondary[b-begxxjvrv4] {
    color: var(--gold, #D4A017);
}

.auth-header[b-begxxjvrv4] {
    text-align: center;
    margin-bottom: 2.25rem;
}

.auth-title[b-begxxjvrv4] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark, #111111);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.auth-subtitle[b-begxxjvrv4] {
    color: var(--text-muted, #6B7280);
    font-size: 0.95rem;
}

.form-group[b-begxxjvrv4] {
    margin-bottom: 1.25rem;
}

.form-label[b-begxxjvrv4] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body, #374151);
    margin-bottom: 0.5rem;
}

/* Inputs and Selects with Icons */
.input-with-icon[b-begxxjvrv4], .select-with-icon[b-begxxjvrv4] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon[b-begxxjvrv4] {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    color: var(--text-light, #9CA3AF);
    pointer-events: none;
    transition: color 0.2s ease;
}

.form-control[b-begxxjvrv4] {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.75rem;
    font-size: 0.95rem;
    border: 1.5px solid var(--border, #E5E7EB);
    border-radius: 10px;
    background-color: #fafbfc;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark, #111111);
    appearance: none;
}

.form-control:focus[b-begxxjvrv4] {
    border-color: var(--primary, #d8231a);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-glow, rgba(216, 35, 26, 0.12));
}

.form-control:focus + .input-icon[b-begxxjvrv4],
.input-with-icon:focus-within .input-icon[b-begxxjvrv4],
.select-with-icon:focus-within .input-icon[b-begxxjvrv4] {
    color: var(--primary, #d8231a);
}

/* Dropdown arrow custom design */
.select-with-icon[b-begxxjvrv4]::after {
    content: "▼";
    font-size: 0.7rem;
    color: var(--text-light, #9CA3AF);
    position: absolute;
    right: 1.2rem;
    pointer-events: none;
}

/* Phone input group */
.phone-input-group[b-begxxjvrv4] {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border, #E5E7EB);
    border-radius: 10px;
    background-color: #fafbfc;
    overflow: hidden;
    transition: all 0.2s ease;
}

.phone-input-group:focus-within[b-begxxjvrv4] {
    border-color: var(--primary, #d8231a);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-glow, rgba(216, 35, 26, 0.12));
}

.phone-prefix[b-begxxjvrv4] {
    padding: 0.8rem 1rem;
    background-color: var(--bg-soft, #f8f7f6);
    color: var(--text-body, #374151);
    border-right: 1.5px solid var(--border, #E5E7EB);
    font-weight: 700;
    font-size: 0.95rem;
}

.form-control-phone[b-begxxjvrv4] {
    border: none;
    background: transparent;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    color: var(--text-dark, #111111);
    font-family: 'Inter', sans-serif;
}

/* Spinner inline for dropdowns */
.spinner-inline[b-begxxjvrv4] {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary, #d8231a);
    animation: spin-b-begxxjvrv4 0.8s linear infinite;
}

/* Button style */
.btn-primary-auth[b-begxxjvrv4] {
    width: 100%;
    height: 48px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--primary, #d8231a);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s var(--ease-out, ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(216, 35, 26, 0.15);
}

.btn-primary-auth:hover[b-begxxjvrv4] {
    background-color: var(--primary-dark, #a81812);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(216, 35, 26, 0.25);
}

.btn-primary-auth:active[b-begxxjvrv4] {
    transform: translateY(0);
}

.btn-primary-auth:disabled[b-begxxjvrv4] {
    background-color: #f3a3a0;
    box-shadow: none;
    cursor: not-allowed;
}

.auth-footer[b-begxxjvrv4] {
    margin-top: 1.75rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted, #6B7280);
}

.auth-link[b-begxxjvrv4] {
    color: var(--primary, #d8231a);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.15s ease;
}

.auth-link:hover[b-begxxjvrv4] {
    color: var(--primary-dark, #a81812);
    text-decoration: underline;
}

/* Alert Boxes */
.error-message[b-begxxjvrv4] {
    background-color: var(--error-light, #fee2e2);
    color: var(--error, #dc2626);
    padding: 0.875rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-left: 4px solid var(--error, #dc2626);
}

.success-message[b-begxxjvrv4] {
    background-color: var(--success-light, #dcfce7);
    color: var(--success, #16a34a);
    padding: 0.875rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-left: 4px solid var(--success, #16a34a);
}

.info-message[b-begxxjvrv4] {
    background-color: var(--gold-light, #fdf7e3);
    color: #856404;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    border-left: 4px solid var(--gold, #D4A017);
    line-height: 1.4;
}

.info-message i[b-begxxjvrv4], .info-message svg[b-begxxjvrv4],
.error-message i[b-begxxjvrv4], .error-message svg[b-begxxjvrv4],
.success-message i[b-begxxjvrv4], .success-message svg[b-begxxjvrv4] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.info-message i[b-begxxjvrv4], .info-message svg[b-begxxjvrv4] {
    margin-top: 2px;
}

.spinner[b-begxxjvrv4] {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin-b-begxxjvrv4 0.8s linear infinite;
}

@keyframes spin-b-begxxjvrv4 {
    to { transform: rotate(360deg); }
}

/* =============================================
   RESPONSIVENESS
   ============================================= */
@media (max-width: 991px) {
    .auth-split-layout[b-begxxjvrv4] {
        grid-template-columns: 1fr;
    }
    
    .auth-promo-pane[b-begxxjvrv4] {
        display: none;
    }
    
    .auth-form-pane[b-begxxjvrv4] {
        padding: 2rem 1.5rem;
    }
    
    .mobile-brand-header[b-begxxjvrv4] {
        display: flex;
    }
    
    .auth-card[b-begxxjvrv4] {
        padding: 2.5rem 1.75rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        margin: 1rem 0;
    }
}
/* /Pages/Auth/RegisterPayment.razor.rz.scp.css */
.auth-container[b-rwg6lt5amy] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    padding: 2rem;
    font-family: 'Inter', sans-serif;
}

.auth-card[b-rwg6lt5amy] {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 480px;
    padding: 3rem 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card:hover[b-rwg6lt5amy] {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.auth-header[b-rwg6lt5amy] {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-title[b-rwg6lt5amy] {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-rwg6lt5amy] {
    color: #697386;
    font-size: 0.95rem;
}

.form-group[b-rwg6lt5amy] {
    margin-bottom: 1.5rem;
}

.form-label[b-rwg6lt5amy] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3c4257;
    margin-bottom: 0.5rem;
}

.form-control[b-rwg6lt5amy] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #e3e8ee;
    border-radius: 8px;
    background-color: #fafbfc;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.form-control:focus[b-rwg6lt5amy] {
    border-color: #635bff;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.1);
}

.btn-primary[b-rwg6lt5amy] {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #635bff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover[b-rwg6lt5amy] {
    background-color: #4a41d6;
}

.btn-primary:disabled[b-rwg6lt5amy] {
    background-color: #a39ffc;
    cursor: not-allowed;
}

.auth-footer[b-rwg6lt5amy] {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #697386;
}

.auth-link[b-rwg6lt5amy] {
    color: #635bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-link:hover[b-rwg6lt5amy] {
    color: #4a41d6;
    text-decoration: underline;
}

.forgot-password[b-rwg6lt5amy] {
    text-align: right;
    margin-bottom: 1.5rem;
}

.forgot-password a[b-rwg6lt5amy] {
    font-size: 0.875rem;
}

.error-message[b-rwg6lt5amy] {
    background-color: #fdeaea;
    color: #d92d20;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-left: 4px solid #d92d20;
}

.spinner[b-rwg6lt5amy] {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin-b-rwg6lt5amy 0.8s linear infinite;
}

@keyframes spin-b-rwg6lt5amy {
    to { transform: rotate(360deg); }
}

/* /Pages/Auth/ResetPassword.razor.rz.scp.css */
/* Split layout container */
.auth-split-layout[b-3mg3cjn1gz] {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-soft, #f8f7f6);
}

/* Left Pane - Promotional and Branding */
.auth-promo-pane[b-3mg3cjn1gz] {
    background: linear-gradient(135deg, #c4211a 0%, #8c140f 100%);
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Add a subtle graphic pattern overlay */
.auth-promo-pane[b-3mg3cjn1gz]::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.promo-brand[b-3mg3cjn1gz] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
}

.brand-text-primary[b-3mg3cjn1gz] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.brand-dot[b-3mg3cjn1gz] {
    color: var(--gold, #D4A017);
    font-weight: 800;
}

.brand-text-secondary[b-3mg3cjn1gz] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--gold, #D4A017);
}

.promo-content[b-3mg3cjn1gz] {
    max-width: 520px;
    margin: auto 0;
}

.promo-title[b-3mg3cjn1gz] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.promo-subtitle[b-3mg3cjn1gz] {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.promo-features[b-3mg3cjn1gz] {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.promo-features li[b-3mg3cjn1gz] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon-wrap[b-3mg3cjn1gz] {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrap i[b-3mg3cjn1gz], .feature-icon-wrap svg[b-3mg3cjn1gz] {
    width: 20px;
    height: 20px;
    color: var(--gold, #D4A017);
}

.feature-text strong[b-3mg3cjn1gz] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
}

.feature-text p[b-3mg3cjn1gz] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.4;
}

.promo-footer[b-3mg3cjn1gz] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Right Pane - Form */
.auth-form-pane[b-3mg3cjn1gz] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
}

.auth-card[b-3mg3cjn1gz] {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-lg, 0 12px 40px rgba(0,0,0,0.06));
    border: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 440px;
    padding: 3rem 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-brand-header[b-3mg3cjn1gz] {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.mobile-brand-header .brand-text-primary[b-3mg3cjn1gz] {
    color: #c4211a;
}

.mobile-brand-header .brand-text-secondary[b-3mg3cjn1gz] {
    color: var(--gold, #D4A017);
}

.auth-header[b-3mg3cjn1gz] {
    text-align: center;
    margin-bottom: 2.25rem;
}

.auth-title[b-3mg3cjn1gz] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark, #111111);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.auth-subtitle[b-3mg3cjn1gz] {
    color: var(--text-muted, #6B7280);
    font-size: 0.95rem;
}

.form-group[b-3mg3cjn1gz] {
    margin-bottom: 1.25rem;
}

.form-label[b-3mg3cjn1gz] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body, #374151);
    margin-bottom: 0.5rem;
}

/* Input elements with Lucide icons inside */
.input-with-icon[b-3mg3cjn1gz] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon[b-3mg3cjn1gz] {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    color: var(--text-light, #9CA3AF);
    pointer-events: none;
    transition: color 0.2s ease;
}

.form-control[b-3mg3cjn1gz] {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.75rem;
    font-size: 0.95rem;
    border: 1.5px solid var(--border, #E5E7EB);
    border-radius: 10px;
    background-color: #fafbfc;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark, #111111);
}

.form-control:focus[b-3mg3cjn1gz] {
    border-color: var(--primary, #d8231a);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-glow, rgba(216, 35, 26, 0.12));
}

.form-control:focus + .input-icon[b-3mg3cjn1gz],
.input-with-icon:focus-within .input-icon[b-3mg3cjn1gz] {
    color: var(--primary, #d8231a);
}

.btn-primary-auth[b-3mg3cjn1gz] {
    width: 100%;
    height: 48px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--primary, #d8231a);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s var(--ease-out, ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(216, 35, 26, 0.15);
}

.btn-primary-auth:hover[b-3mg3cjn1gz] {
    background-color: var(--primary-dark, #a81812);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(216, 35, 26, 0.25);
}

.btn-primary-auth:active[b-3mg3cjn1gz] {
    transform: translateY(0);
}

.btn-primary-auth:disabled[b-3mg3cjn1gz] {
    background-color: #f3a3a0;
    box-shadow: none;
    cursor: not-allowed;
}

.auth-footer[b-3mg3cjn1gz] {
    margin-top: 1.75rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted, #6B7280);
}

.auth-link[b-3mg3cjn1gz] {
    color: var(--primary, #d8231a);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.15s ease;
}

.auth-link:hover[b-3mg3cjn1gz] {
    color: var(--primary-dark, #a81812);
    text-decoration: underline;
}

.error-message[b-3mg3cjn1gz] {
    background-color: var(--error-light, #fee2e2);
    color: var(--error, #dc2626);
    padding: 0.875rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-left: 4px solid var(--error, #dc2626);
}

.error-message i[b-3mg3cjn1gz], .error-message svg[b-3mg3cjn1gz] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.success-message[b-3mg3cjn1gz] {
    background-color: #edfdf3;
    color: #027a48;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-left: 4px solid #027a48;
}

.success-message i[b-3mg3cjn1gz], .success-message svg[b-3mg3cjn1gz] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.info-message[b-3mg3cjn1gz] {
    background-color: #e0f2fe;
    color: #0369a1;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-left: 4px solid #0369a1;
}

.info-message i[b-3mg3cjn1gz], .info-message svg[b-3mg3cjn1gz] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.spinner[b-3mg3cjn1gz] {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin-b-3mg3cjn1gz 0.8s linear infinite;
}

@keyframes spin-b-3mg3cjn1gz {
    to { transform: rotate(360deg); }
}

/* =============================================
   RESPONSIVENESS
   ============================================= */
@media (max-width: 991px) {
    .auth-split-layout[b-3mg3cjn1gz] {
        grid-template-columns: 1fr;
    }
    
    .auth-promo-pane[b-3mg3cjn1gz] {
        display: none;
    }
    
    .auth-form-pane[b-3mg3cjn1gz] {
        padding: 2rem 1.5rem;
    }
    
    .mobile-brand-header[b-3mg3cjn1gz] {
        display: flex;
    }
    
    .auth-card[b-3mg3cjn1gz] {
        padding: 2.5rem 1.75rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    }
}
/* /Pages/Dashboard/ComingSoon.razor.rz.scp.css */
.coming-soon-page[b-dfz1y0ych1] {
    padding: 24px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.header[b-dfz1y0ych1] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}
.back-btn[b-dfz1y0ych1] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}
.header h2[b-dfz1y0ych1] {
    margin: 0;
    font-size: 1.1rem;
}
.content[b-dfz1y0ych1] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -80px;
}
.icon-wrapper[b-dfz1y0ych1] {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.icon-wrapper svg[b-dfz1y0ych1] {
    width: 40px;
    height: 40px;
}
.content h1[b-dfz1y0ych1] {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.content p[b-dfz1y0ych1] {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 300px;
}
.mt-4[b-dfz1y0ych1] { margin-top: 24px; }
/* /Pages/Dashboard/EventDetail.razor.rz.scp.css */
.event-detail-page[b-3ok2vs0nrl] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 100px;
}

/* ---- Back Navigation ---- */
.back-nav[b-3ok2vs0nrl] {
    margin-bottom: 24px;
}

.back-link[b-3ok2vs0nrl] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
}

.back-link:hover[b-3ok2vs0nrl] {
    color: #1a1a2e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.back-link i[b-3ok2vs0nrl] {
    width: 18px;
    height: 18px;
}

/* ---- Hero Banner ---- */
.event-banner[b-3ok2vs0nrl] {
    width: 100%;
    height: 460px;
    border-radius: 24px;
    background-color: #F3F4F6;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin-bottom: 48px;
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
    border: 4px solid white;
}

.banner-badge[b-3ok2vs0nrl] {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #d8231a;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(216,35,26,0.3);
}

/* ---- Content Grid ---- */
.event-content-grid[b-3ok2vs0nrl] {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* ---- Main Column ---- */
.event-main[b-3ok2vs0nrl] {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.event-title[b-3ok2vs0nrl] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.event-organizer[b-3ok2vs0nrl] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #F3F4F6;
    margin-bottom: 32px;
}

.org-avatar[b-3ok2vs0nrl] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #d8231a;
    font-size: 1.2rem;
}

.org-label[b-3ok2vs0nrl] {
    font-size: 0.8rem;
    color: #6B7280;
    margin-bottom: 2px;
}

.org-name[b-3ok2vs0nrl] {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1.05rem;
}

.event-meta-list[b-3ok2vs0nrl] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.meta-item[b-3ok2vs0nrl] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.meta-icon[b-3ok2vs0nrl] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(216,35,26,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d8231a;
    flex-shrink: 0;
}

.meta-icon i[b-3ok2vs0nrl] {
    width: 24px;
    height: 24px;
}

.meta-text[b-3ok2vs0nrl] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-text strong[b-3ok2vs0nrl] {
    color: #1a1a2e;
    font-size: 1.05rem;
}

.meta-text span[b-3ok2vs0nrl] {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.event-time-local[b-3ok2vs0nrl] {
    color: #1a1a2e !important;
    font-weight: 600;
}

.timezone-note[b-3ok2vs0nrl] {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(243, 244, 246, 0.8);
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    font-size: 0.85rem;
    color: #4B5563;
}

.timezone-note i[b-3ok2vs0nrl] {
    width: 14px;
    height: 14px;
    color: #6B7280;
    margin-top: 2px;
    flex-shrink: 0;
}

.event-description[b-3ok2vs0nrl] {
    color: #4B5563;
    line-height: 1.7;
    font-size: 1.05rem;
}

.event-description h2[b-3ok2vs0nrl] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px 0;
}

.event-description p[b-3ok2vs0nrl] {
    margin: 0 0 16px 0;
}

.event-description ul[b-3ok2vs0nrl] {
    margin: 0 0 16px 0;
    padding-left: 20px;
}

.event-description li[b-3ok2vs0nrl] {
    margin-bottom: 8px;
}

/* ---- Additional Info (Map, Facilities) ---- */
.event-extra-info[b-3ok2vs0nrl] {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #E5E7EB;
}

.event-extra-info h2[b-3ok2vs0nrl] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
}

.facilities-grid[b-3ok2vs0nrl] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.facility-item[b-3ok2vs0nrl] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4B5563;
    border: 1px solid #F3F4F6;
}

.facility-item i[b-3ok2vs0nrl] {
    color: #d8231a;
    width: 20px;
    height: 20px;
}

.contact-card[b-3ok2vs0nrl] {
    background: #F9FAFB;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #F3F4F6;
}

.contact-info[b-3ok2vs0nrl] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #4B5563;
    font-size: 0.95rem;
}

.contact-info:last-child[b-3ok2vs0nrl] {
    margin-bottom: 0;
}

.contact-info i[b-3ok2vs0nrl] {
    color: #6B7280;
    width: 18px;
    height: 18px;
}

.location-map[b-3ok2vs0nrl] {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ---- Ticket Sidebar ---- */
.ticket-card[b-3ok2vs0nrl] {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 12px 24px -8px rgba(0,0,0,0.06);
    position: sticky;
    top: 32px;
}

.ticket-card h3[b-3ok2vs0nrl] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 24px 0;
    color: #1a1a2e;
}

.price-row[b-3ok2vs0nrl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.price-label[b-3ok2vs0nrl] {
    color: #6B7280;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.price-val[b-3ok2vs0nrl] {
    font-weight: 600;
    color: #4B5563;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
}

.strikethrough[b-3ok2vs0nrl] {
    text-decoration: line-through;
    opacity: 0.7;
}

.price-row.highlight[b-3ok2vs0nrl] {
    background: rgba(216,35,26,0.04);
    padding: 16px;
    border-radius: 12px;
    margin: 0 -16px 20px;
}

.price-row.highlight .price-label[b-3ok2vs0nrl] {
    color: #1a1a2e;
    font-weight: 600;
}

.price-row.highlight .price-val[b-3ok2vs0nrl] {
    color: #d8231a;
    font-size: 1.4rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

.discount-badge[b-3ok2vs0nrl] {
    background: #10B981;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 700;
}

.ticket-divider[b-3ok2vs0nrl] {
    height: 1px;
    background: #E5E7EB;
    margin: 0 0 20px 0;
}

.ticket-status[b-3ok2vs0nrl] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d8231a;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.ticket-status i[b-3ok2vs0nrl] {
    width: 16px;
    height: 16px;
}

.btn-register[b-3ok2vs0nrl] {
    background: #d8231a;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-register:hover[b-3ok2vs0nrl] {
    background: #b71c15;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216,35,26,0.25);
}

.w-100[b-3ok2vs0nrl] {
    width: 100%;
}

/* ---- Mobile Sticky Bottom Bar ---- */
.mobile-sticky-action[b-3ok2vs0nrl] {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 16px 24px;
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
    z-index: 100;
}

.sticky-price[b-3ok2vs0nrl] {
    display: flex;
    flex-direction: column;
}

.sticky-label[b-3ok2vs0nrl] {
    font-size: 0.75rem;
    color: #6B7280;
    margin-bottom: 2px;
}

.sticky-val[b-3ok2vs0nrl] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #d8231a;
}

.mobile-sticky-action .btn-register[b-3ok2vs0nrl] {
    padding: 14px 32px;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1023px) {
    .event-content-grid[b-3ok2vs0nrl] {
        grid-template-columns: 1fr;
    }

    .event-main[b-3ok2vs0nrl] {
        padding: 32px 24px;
    }

    .ticket-card[b-3ok2vs0nrl] {
        display: none; /* Hide sidebar ticket card on tablet/mobile */
    }

    .mobile-sticky-action[b-3ok2vs0nrl] {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .event-detail-page[b-3ok2vs0nrl] {
        padding-bottom: 120px; /* Make room for sticky bar */
    }
}

@media (max-width: 767px) {
    .event-banner[b-3ok2vs0nrl] {
        height: 240px;
        border-radius: 16px;
        margin-bottom: 24px;
    }

    .event-title[b-3ok2vs0nrl] {
        font-size: 1.6rem;
    }
    
    .mobile-sticky-action[b-3ok2vs0nrl] {
        /* On very small screens, the DB layout adds left padding, let's reset it if needed,
           but DashboardLayout puts main content inside db-main wrapper. 
           We use fixed so it aligns to viewport. */
    }
}
/* /Pages/Dashboard/Events.razor.rz.scp.css */
.events-page[b-v45vg01c1l] {
    max-width: 1400px;
    margin: 0 auto; /* Center to fix the whitespace on right side */
    padding: 0;
}

/* ---- Premium Gradient Header ---- */
.events-hero-header[b-v45vg01c1l] {
    background: linear-gradient(135deg, #d8231a 0%, #9e140d 100%);
    border-radius: 20px;
    padding: 48px 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 12px 32px -8px rgba(216,35,26,0.3);
}

.header-content[b-v45vg01c1l] {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.header-title[b-v45vg01c1l] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.header-subtitle[b-v45vg01c1l] {
    font-size: 1.05rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
    color: #ffffff;
}

/* Header Background Decorations */
.header-decoration[b-v45vg01c1l] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
    z-index: 1;
}

.circle-glow[b-v45vg01c1l] {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.dot-pattern[b-v45vg01c1l] {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 24px 24px;
    opacity: 0.5;
}


/* ---- Calendar Timeline (Breakthrough UI) ---- */
.calendar-timeline-container[b-v45vg01c1l] {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calendar-timeline[b-v45vg01c1l] {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 12px 0 24px;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.calendar-timeline[b-v45vg01c1l]::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}


.scroll-btn[b-v45vg01c1l] {
    position: absolute;
    top: calc(50% - 15px);
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #4B5563;
    transition: all 0.2s;
}
.scroll-btn:hover[b-v45vg01c1l] {
    color: #d8231a;
    border-color: #d8231a;
}
.scroll-btn.left[b-v45vg01c1l] { left: -16px; }
.scroll-btn.right[b-v45vg01c1l] { right: -16px; }

.calendar-day[b-v45vg01c1l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 80px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    background: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.calendar-day:hover[b-v45vg01c1l] {
    transform: translateY(-4px);
    border-color: #d8231a;
    box-shadow: 0 8px 16px rgba(216, 35, 26, 0.08);
}

.calendar-day.active[b-v45vg01c1l] {
    background: #d8231a;
    border-color: #d8231a;
    color: white;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 24px rgba(216, 35, 26, 0.25);
}

.calendar-day .day-name[b-v45vg01c1l] {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-day.active .day-name[b-v45vg01c1l] {
    color: rgba(255, 255, 255, 0.9);
}

.calendar-day .day-num[b-v45vg01c1l] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
}

.event-dot[b-v45vg01c1l] {
    position: absolute;
    bottom: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d8231a;
}
.calendar-day.active .event-dot[b-v45vg01c1l] {
    background: white;
}

.clear-date-btn[b-v45vg01c1l] {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(216,35,26,0.08);
    color: #d8231a;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.clear-date-btn:hover[b-v45vg01c1l] {
    background: rgba(216,35,26,0.15);
}
.clear-date-btn i[b-v45vg01c1l] {
    width: 14px;
    height: 14px;
}

/* ---- Custom Dropdowns (Location) ---- */
.events-filter-section[b-v45vg01c1l] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.category-pills[b-v45vg01c1l] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    width: 100%;
}
.category-pill[b-v45vg01c1l] {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    background: white;
    color: #4B5563;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.category-pill:hover[b-v45vg01c1l] {
    border-color: #d8231a;
    color: #d8231a;
    background: rgba(216,35,26,0.04);
}
.category-pill.active[b-v45vg01c1l] {
    background: #d8231a;
    color: white;
    border-color: #d8231a;
    box-shadow: 0 4px 12px rgba(216,35,26,0.25);
}

.basic-filters[b-v45vg01c1l] {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%; /* Take full width to accommodate large dropdowns */
}

.custom-dropdown[b-v45vg01c1l] {
    position: relative;
    width: 280px;
    flex: 1;
    min-width: 240px;
}

.custom-dropdown.disabled[b-v45vg01c1l] {
    opacity: 0.5;
    pointer-events: none;
}

.dropdown-trigger[b-v45vg01c1l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.dropdown-trigger:hover[b-v45vg01c1l] {
    border-color: #d8231a;
}

.custom-dropdown.open .dropdown-trigger[b-v45vg01c1l] {
    border-color: #d8231a;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.trigger-text[b-v45vg01c1l] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trigger-text i[b-v45vg01c1l] {
    width: 18px;
    height: 18px;
    color: #6B7280;
}

.chevron[b-v45vg01c1l] {
    width: 18px;
    height: 18px;
    color: #6B7280;
    transition: transform 0.3s;
}

.custom-dropdown.open .chevron[b-v45vg01c1l] {
    transform: rotate(180deg);
}

.dropdown-menu[b-v45vg01c1l] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #d8231a;
    border-top: none;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    z-index: 100;
    overflow: hidden;
}

.dropdown-search[b-v45vg01c1l] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.dropdown-search i[b-v45vg01c1l] {
    width: 16px;
    height: 16px;
    color: #6B7280;
    margin-right: 8px;
}

.dropdown-search input[b-v45vg01c1l] {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    color: #1a1a2e;
}

.dropdown-list[b-v45vg01c1l] {
    max-height: 240px;
    overflow-y: auto;
}

.dropdown-list[b-v45vg01c1l]::-webkit-scrollbar {
    width: 6px;
}
.dropdown-list[b-v45vg01c1l]::-webkit-scrollbar-thumb {
    background: #E5E7EB;
    border-radius: 4px;
}

.dropdown-item[b-v45vg01c1l] {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #4B5563;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-item:hover[b-v45vg01c1l] {
    background: #F3F4F6;
    color: #1a1a2e;
}

.dropdown-item.selected[b-v45vg01c1l] {
    background: rgba(216,35,26,0.06);
    color: #d8231a;
    font-weight: 600;
}

.dropdown-empty[b-v45vg01c1l] {
    padding: 24px;
    text-align: center;
    color: #6B7280;
    font-size: 0.9rem;
}

.btn-clear-inline[b-v45vg01c1l] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: transparent;
    border: 1px dashed #E5E7EB;
    border-radius: 12px;
    color: #6B7280;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-clear-inline:hover[b-v45vg01c1l] {
    border-color: #d8231a;
    color: #d8231a;
    background: rgba(216,35,26,0.04);
}
.btn-clear-inline i[b-v45vg01c1l] {
    width: 16px;
    height: 16px;
}

/* ---- Empty State ---- */
.empty-state[b-v45vg01c1l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    background: white;
    border-radius: 24px;
    border: 1px dashed #E5E7EB;
    text-align: center;
    margin-top: 24px;
}

.empty-icon-wrapper[b-v45vg01c1l] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(216,35,26,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.empty-icon-wrapper i[b-v45vg01c1l] {
    width: 36px;
    height: 36px;
    color: #d8231a;
}

.empty-state h3[b-v45vg01c1l] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 12px 0;
}

.empty-state p[b-v45vg01c1l] {
    color: #6B7280;
    font-size: 1.05rem;
    max-width: 400px;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.btn-clear-filters[b-v45vg01c1l] {
    background: #d8231a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(216,35,26,0.25);
}

.btn-clear-filters:hover[b-v45vg01c1l] {
    background: #b71c15;
    transform: translateY(-2px);
}

/* ---- Grid Layout ---- */
.events-grid[b-v45vg01c1l] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* ---- Event Card ---- */
.event-card[b-v45vg01c1l] {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    background: white;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.event-card:hover[b-v45vg01c1l] {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.12);
    border-color: #D1D5DB;
}

.event-image[b-v45vg01c1l] {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #F3F4F6;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.event-card:hover .event-image[b-v45vg01c1l] {
    /* Optional slight zoom on hover */
}

.event-badge[b-v45vg01c1l] {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    color: #d8231a;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.event-details[b-v45vg01c1l] {
    padding: 24px 24px 20px;
    flex: 1;
}

.event-date[b-v45vg01c1l] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d8231a;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: rgba(216,35,26,0.06);
    padding: 6px 12px;
    border-radius: 8px;
}

.event-date i[b-v45vg01c1l] {
    width: 16px;
    height: 16px;
}

.event-details h3[b-v45vg01c1l] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.event-card:hover h3[b-v45vg01c1l] {
    color: #d8231a;
}

.event-details p[b-v45vg01c1l] {
    font-size: 0.95rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-footer[b-v45vg01c1l] {
    padding: 16px 24px;
    border-top: 1px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FAFAFA;
}

.event-location[b-v45vg01c1l] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6B7280;
}

.event-location i[b-v45vg01c1l] {
    width: 14px;
    height: 14px;
}

.event-price[b-v45vg01c1l] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #1a1a2e;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 767px) {
    .events-hero-header[b-v45vg01c1l] {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .header-title[b-v45vg01c1l] {
        font-size: 1.6rem;
    }
}
/* /Pages/Dashboard/Index.razor.rz.scp.css */
/* =============================================
   DASHBOARD HOME PAGE
   ============================================= */
.dashboard-home[b-044dtsfxl7] {
    width: 100%;
}

/* ---- Page Header ---- */
.page-header[b-044dtsfxl7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    background: #FFFFFF;
    padding: 18px 24px;
    border-radius: 14px;
    border: 1px solid #E5E7EB;
}

.header-left[b-044dtsfxl7] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar[b-044dtsfxl7] {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted, #6B7280);
    font-size: 0.9rem;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar img[b-044dtsfxl7] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-info[b-044dtsfxl7] {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.greeting[b-044dtsfxl7] {
    font-size: 0.75rem;
    color: var(--text-muted, #6B7280);
}

.user-name[b-044dtsfxl7] {
    font-size: 1.05rem;
    color: var(--text-dark, #1a1a2e);
}

.user-status[b-044dtsfxl7] {
    font-size: 0.7rem;
    color: var(--primary, #a81812);
    font-weight: 600;
}

.header-right[b-044dtsfxl7] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.upgrade-btn[b-044dtsfxl7] {
    background: #d8231a;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.upgrade-btn i[b-044dtsfxl7], .upgrade-btn svg[b-044dtsfxl7] {
    width: 14px;
    height: 14px;
}

.notification-btn[b-044dtsfxl7] {
    background: transparent;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    color: var(--text-dark, #1a1a2e);
    transition: background 0.15s ease;
}

.notification-btn:hover[b-044dtsfxl7] {
    background: var(--bg-soft, #F9FAFB);
}

.notification-btn i[b-044dtsfxl7], .notification-btn svg[b-044dtsfxl7] {
    width: 20px;
    height: 20px;
}

.notif-dot[b-044dtsfxl7] {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 7px;
    height: 7px;
    background: var(--primary, #a81812);
    border-radius: 50%;
    border: 2px solid white;
}

/* ---- Section Title ---- */
.section-title[b-044dtsfxl7] {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #9CA3AF;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ---- Home Grid: Card + Menu side by side ---- */
.home-grid[b-044dtsfxl7] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
    align-items: start;
}

.home-card-col[b-044dtsfxl7] {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #E5E7EB;
}

.home-menu-col[b-044dtsfxl7] {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #E5E7EB;
}

/* ---- Menu Grid ---- */
.menu-grid[b-044dtsfxl7] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 12px;
}

.menu-item[b-044dtsfxl7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark, #1a1a2e);
    transition: transform 0.15s ease;
}

.menu-item:hover[b-044dtsfxl7] {
    transform: translateY(-2px);
}

.menu-icon[b-044dtsfxl7] {
    width: 52px;
    height: 52px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.menu-item:hover .menu-icon[b-044dtsfxl7] {
    background: rgba(168, 24, 18, 0.06);
    border-color: rgba(168, 24, 18, 0.15);
}

.menu-icon i[b-044dtsfxl7], .menu-icon svg[b-044dtsfxl7] {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
    color: var(--text-dark, #1a1a2e);
}

.menu-item span[b-044dtsfxl7] {
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.2;
}

/* ---- Banner ---- */
.home-banner[b-044dtsfxl7] {
    background: linear-gradient(135deg, #6b100c, #b71c15);
    border-radius: 14px;
    padding: 28px 32px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(183, 28, 21, 0.15);
}

.banner-content[b-044dtsfxl7] {
    position: relative;
    z-index: 2;
}

.home-banner h3[b-044dtsfxl7] {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 6px;
    color: white;
}

.home-banner p[b-044dtsfxl7] {
    font-size: 0.72rem;
    opacity: 0.85;
    letter-spacing: 0.06em;
    margin: 0;
}

.banner-bg[b-044dtsfxl7] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    background-image: url('/images/card-bg-pinisi.png');
    background-size: cover;
    background-position: center right;
    opacity: 0.25;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
}

/* =============================================
   TABLET
   ============================================= */
@media (max-width: 1023px) {
    .home-grid[b-044dtsfxl7] {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .menu-grid[b-044dtsfxl7] {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px 8px;
    }
}

/* =============================================
   MOBILE
   ============================================= */
@media (max-width: 767px) {
    .home-grid[b-044dtsfxl7] {
        grid-template-columns: 1fr;
    }

    .home-card-col[b-044dtsfxl7] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .home-card-col .section-title[b-044dtsfxl7] {
        align-self: flex-start;
    }

    .page-header[b-044dtsfxl7] {
        padding: 14px 16px;
        border-radius: 12px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .header-right[b-044dtsfxl7] {
        width: 100%;
        justify-content: space-between;
    }

    .home-card-col[b-044dtsfxl7],
    .home-menu-col[b-044dtsfxl7] {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .menu-grid[b-044dtsfxl7] {
        gap: 16px 8px;
    }

    .menu-icon[b-044dtsfxl7] {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .home-banner[b-044dtsfxl7] {
        padding: 22px 20px;
        border-radius: 12px;
    }
}
/* /Pages/Dashboard/Profile.razor.rz.scp.css */
.profile-page[b-z5nx0wuz5l] {
    width: 100%;
}

.page-header[b-z5nx0wuz5l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.page-title[b-z5nx0wuz5l] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    margin: 0;
}

.btn[b-z5nx0wuz5l] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn i[b-z5nx0wuz5l], .btn svg[b-z5nx0wuz5l] {
    width: 16px;
    height: 16px;
}

.btn-outline[b-z5nx0wuz5l] {
    background: transparent;
    border: 1px solid #E5E7EB;
    color: var(--text-dark, #1a1a2e);
}

.btn-outline:hover[b-z5nx0wuz5l] {
    background: #F9FAFB;
    border-color: #D1D5DB;
}

.btn-text[b-z5nx0wuz5l] {
    background: transparent;
    color: var(--primary, #a81812);
    padding: 0;
    font-weight: 600;
}

.btn-text:hover[b-z5nx0wuz5l] {
    text-decoration: underline;
}

.profile-grid[b-z5nx0wuz5l] {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    align-items: start;
}

.profile-card[b-z5nx0wuz5l] {
    background: #FFFFFF;
    border-radius: 14px;
    border: 1px solid #E5E7EB;
    padding: 24px;
}

/* Sidebar Styles */
.profile-sidebar[b-z5nx0wuz5l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.avatar-section[b-z5nx0wuz5l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    width: 100%;
}

.avatar-large[b-z5nx0wuz5l] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted, #6B7280);
    font-size: 2rem;
    position: relative;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.avatar-large img[b-z5nx0wuz5l] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-edit-btn[b-z5nx0wuz5l] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary, #a81812);
    color: white;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.avatar-edit-btn:hover[b-z5nx0wuz5l] {
    transform: scale(1.1);
}

.avatar-edit-btn i[b-z5nx0wuz5l], .avatar-edit-btn svg[b-z5nx0wuz5l] {
    width: 16px;
    height: 16px;
}

.user-name[b-z5nx0wuz5l] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    margin: 0 0 8px 0;
}

.badge[b-z5nx0wuz5l] {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.badge-success[b-z5nx0wuz5l] {
    background: #DEF7EC;
    color: #03543F;
}

.sidebar-details[b-z5nx0wuz5l] {
    width: 100%;
    border-top: 1px solid #E5E7EB;
    padding-top: 20px;
}

.detail-row[b-z5nx0wuz5l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.detail-row:last-child[b-z5nx0wuz5l] {
    margin-bottom: 0;
}

.detail-label[b-z5nx0wuz5l] {
    color: var(--text-muted, #6B7280);
}

.detail-value[b-z5nx0wuz5l] {
    font-weight: 500;
    color: var(--text-dark, #1a1a2e);
}

.text-muted[b-z5nx0wuz5l] {
    color: var(--text-muted, #6B7280);
}
.small[b-z5nx0wuz5l] {
    font-size: 0.75rem;
}

/* Main Profile Info Styles */
.card-title[b-z5nx0wuz5l] {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}

.info-grid[b-z5nx0wuz5l] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-group[b-z5nx0wuz5l] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-group.full-width[b-z5nx0wuz5l] {
    grid-column: 1 / -1;
}

.info-group label[b-z5nx0wuz5l] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted, #6B7280);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-val[b-z5nx0wuz5l] {
    font-size: 0.95rem;
    color: var(--text-dark, #1a1a2e);
    font-weight: 500;
    background: #F9FAFB;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #F3F4F6;
}

.info-divider[b-z5nx0wuz5l] {
    grid-column: 1 / -1;
    height: 1px;
    background: #E5E7EB;
    margin: 8px 0;
}

.password-row[b-z5nx0wuz5l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F9FAFB;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #F3F4F6;
}

.password-row .info-val[b-z5nx0wuz5l] {
    background: transparent;
    padding: 0;
    border: none;
    letter-spacing: 0.2em;
}

.card-footer-info[b-z5nx0wuz5l] {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted, #6B7280);
}

.card-footer-info i[b-z5nx0wuz5l], .card-footer-info svg[b-z5nx0wuz5l] {
    width: 14px;
    height: 14px;
}

/* Responsive */
@media (max-width: 1023px) {
    .profile-grid[b-z5nx0wuz5l] {
        grid-template-columns: 1fr;
    }
    
    .profile-sidebar[b-z5nx0wuz5l] {
        flex-direction: row;
        text-align: left;
        gap: 24px;
    }
    
    .avatar-section[b-z5nx0wuz5l] {
        width: auto;
        margin-bottom: 0;
    }
    
    .sidebar-details[b-z5nx0wuz5l] {
        border-top: none;
        border-left: 1px solid #E5E7EB;
        padding-top: 0;
        padding-left: 24px;
        flex: 1;
    }
}

@media (max-width: 767px) {
    .profile-sidebar[b-z5nx0wuz5l] {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .sidebar-details[b-z5nx0wuz5l] {
        border-left: none;
        border-top: 1px solid #E5E7EB;
        padding-left: 0;
        padding-top: 20px;
    }
    
    .info-grid[b-z5nx0wuz5l] {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .page-header[b-z5nx0wuz5l] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* Form inputs and edits */
.form-control[b-z5nx0wuz5l] {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    background-color: #fafbfc;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark, #1a1a2e);
}

.form-control:focus[b-z5nx0wuz5l] {
    border-color: var(--primary, #a81812);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(168, 24, 18, 0.12);
}

.form-control:disabled[b-z5nx0wuz5l] {
    background-color: #F3F4F6;
    color: #9CA3AF;
    cursor: not-allowed;
    border-color: #E5E7EB;
}

/* Phone input group */
.phone-input-group[b-z5nx0wuz5l] {
    display: flex;
    align-items: center;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    background-color: #fafbfc;
    overflow: hidden;
    transition: all 0.2s ease;
    width: 100%;
}

.phone-input-group:focus-within[b-z5nx0wuz5l] {
    border-color: var(--primary, #a81812);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(168, 24, 18, 0.12);
}

.phone-prefix[b-z5nx0wuz5l] {
    padding: 12px 16px;
    background-color: #f8f7f6;
    color: var(--text-dark, #1a1a2e);
    border-right: 1.5px solid #E5E7EB;
    font-weight: 700;
    font-size: 0.95rem;
    user-select: none;
}

.form-control-phone[b-z5nx0wuz5l] {
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    color: var(--text-dark, #1a1a2e);
    font-family: 'Inter', sans-serif;
}

.form-control-phone:disabled[b-z5nx0wuz5l] {
    color: #9CA3AF;
    cursor: not-allowed;
}

/* Button variants */
.btn-primary[b-z5nx0wuz5l] {
    background: var(--primary, #a81812);
    color: white;
}

.btn-primary:hover[b-z5nx0wuz5l] {
    background: #8c140f;
}

.btn-secondary[b-z5nx0wuz5l] {
    background: #F3F4F6;
    color: #374151;
}

.btn-secondary:hover[b-z5nx0wuz5l] {
    background: #E5E7EB;
}

.edit-actions[b-z5nx0wuz5l] {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

/* Alert Boxes */
.error-message[b-z5nx0wuz5l] {
    background-color: #fee2e2;
    color: #dc2626;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-left: 4px solid #dc2626;
    width: 100%;
}

.success-message[b-z5nx0wuz5l] {
    background-color: #dcfce7;
    color: #16a34a;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-left: 4px solid #16a34a;
    width: 100%;
}

.spinner[b-z5nx0wuz5l] {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin-b-z5nx0wuz5l 0.8s linear infinite;
}

@keyframes spin-b-z5nx0wuz5l {
    to { transform: rotate(360deg); }
}

/* /Pages/Events/Detail.razor.rz.scp.css */
/* ─────────────────────────────────── */
/*  Event Detail Page                  */
/* ─────────────────────────────────── */

.event-detail-page[b-a7bqsywnrz] {
    background: var(--background, #f8f9fa);
    min-height: 100vh;
}

/* ── SKELETON LOADER ─── */
.detail-skeleton[b-a7bqsywnrz] {
    animation: pulse-b-a7bqsywnrz 1.5s ease-in-out infinite;
}
.skeleton-hero[b-a7bqsywnrz] {
    height: 60vh;
    background: #e0e0e0;
}
.skeleton-body[b-a7bqsywnrz] {
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.skeleton-line[b-a7bqsywnrz] {
    height: 20px;
    border-radius: 8px;
    background: #e0e0e0;
}
.skeleton-line.wide[b-a7bqsywnrz]   { width: 70%; }
.skeleton-line.medium[b-a7bqsywnrz] { width: 50%; }
.skeleton-line.narrow[b-a7bqsywnrz] { width: 30%; }
@keyframes pulse-b-a7bqsywnrz {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

/* ── NOT FOUND ─── */
.not-found-state[b-a7bqsywnrz] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
}
.not-found-icon[b-a7bqsywnrz] { font-size: 5rem; margin-bottom: 24px; }

/* ── HERO ─── */
.detail-hero[b-a7bqsywnrz] {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg[b-a7bqsywnrz] {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #111111;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.detail-hero:hover .hero-bg[b-a7bqsywnrz] {
    transform: scale(1);
}

.hero-overlay[b-a7bqsywnrz] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.5) 40%,
        rgba(0,0,0,0.85) 100%
    );
}

.hero-content[b-a7bqsywnrz] {
    position: relative;
    z-index: 1;
    padding-top: 120px; /* clears the transparent navbar */
    padding-bottom: 60px;
    color: white;
}

.back-btn[b-a7bqsywnrz] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s;
}
.back-btn:hover[b-a7bqsywnrz] { color: white; }

.hero-badges[b-a7bqsywnrz] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.badge-category[b-a7bqsywnrz] {
    background: var(--primary, #d8231a);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.badge-member[b-a7bqsywnrz] {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-title[b-a7bqsywnrz] {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: white;
    margin: 0 0 28px;
    max-width: 800px;
}

.hero-meta-row[b-a7bqsywnrz] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-meta-item[b-a7bqsywnrz] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}
.hero-meta-item svg[b-a7bqsywnrz] { flex-shrink: 0; }

.seats-indicator[b-a7bqsywnrz] {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 4px 12px;
}

/* ── BODY LAYOUT ─── */
.detail-body[b-a7bqsywnrz] {
    padding: 60px 0 80px;
}

.detail-layout[b-a7bqsywnrz] {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 36px;
    align-items: start;
}

/* ── CARDS ─── */
.detail-card[b-a7bqsywnrz] {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.card-title[b-a7bqsywnrz] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0,0,0,0.06);
}
.card-title svg[b-a7bqsywnrz] { color: var(--primary, #d8231a); flex-shrink: 0; }

.description-text[b-a7bqsywnrz] {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color, #444);
    margin: 0;
}

/* ── FACILITIES ─── */
.facilities-grid[b-a7bqsywnrz] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.facility-chip[b-a7bqsywnrz] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(188,38,38,0.05);
    border: 1px solid rgba(188,38,38,0.12);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark, #1a1a2e);
}
.facility-chip svg[b-a7bqsywnrz] { color: var(--primary, #d8231a); flex-shrink: 0; }

/* ── ORGANIZER ─── */
.organizer-details[b-a7bqsywnrz] {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.organizer-avatar[b-a7bqsywnrz] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary, #d8231a);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
}
.organizer-info[b-a7bqsywnrz] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.organizer-info strong[b-a7bqsywnrz] { font-size: 1.05rem; color: var(--text-dark, #1a1a2e); }
.organizer-info span[b-a7bqsywnrz]  { font-size: 0.9rem; color: var(--text-muted, #888); }
.contact-link[b-a7bqsywnrz] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary, #d8231a);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 4px;
}
.contact-link:hover[b-a7bqsywnrz] { text-decoration: underline; }

/* ── SPONSORS ─── */
.sponsors-row[b-a7bqsywnrz] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.sponsor-chip[b-a7bqsywnrz] {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    background: white;
    transition: box-shadow 0.2s;
}
.sponsor-chip:hover[b-a7bqsywnrz] { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.sponsor-chip img[b-a7bqsywnrz] {
    max-height: 48px;
    max-width: 120px;
    object-fit: contain;
}
.sponsor-text[b-a7bqsywnrz] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
}

/* ── SIDEBAR STICKY ─── */
.sidebar-sticky[b-a7bqsywnrz] {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── PRICE CARD ─── */
.price-card[b-a7bqsywnrz] {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    border: 2px solid rgba(188,38,38,0.1);
}

.price-header[b-a7bqsywnrz] { margin-bottom: 24px; }

.price-eyebrow[b-a7bqsywnrz] {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted, #888);
    margin-bottom: 8px;
}

.price-main[b-a7bqsywnrz] {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
}
.price-amount[b-a7bqsywnrz] {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary, #d8231a);
    line-height: 1;
}
.price-per[b-a7bqsywnrz] {
    font-size: 0.9rem;
    color: var(--text-muted, #888);
}

.member-price-box[b-a7bqsywnrz] {
    background: linear-gradient(135deg, rgba(188,38,38,0.08), rgba(188,38,38,0.03));
    border: 1px solid rgba(188,38,38,0.2);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.member-label[b-a7bqsywnrz] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary, #d8231a);
}
.member-price-amount[b-a7bqsywnrz] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary, #d8231a);
}

/* ── SEATS BAR ─── */
.seats-bar-wrapper[b-a7bqsywnrz] { margin-bottom: 24px; }
.seats-bar-label[b-a7bqsywnrz] {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
}
.seats-bar-label span[b-a7bqsywnrz] { color: var(--text-muted, #888); }
.seats-bar-label strong[b-a7bqsywnrz] { color: var(--text-dark, #1a1a2e); }
.seats-bar[b-a7bqsywnrz] {
    height: 6px;
    background: rgba(0,0,0,0.08);
    border-radius: 99px;
    overflow: hidden;
}
.seats-bar-fill[b-a7bqsywnrz] {
    height: 100%;
    background: linear-gradient(90deg, var(--primary, #d8231a), #e85454);
    border-radius: 99px;
    min-width: 5%;
}

/* ── REGISTER BUTTON ─── */
.btn-register[b-a7bqsywnrz] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--primary, #d8231a);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(188,38,38,0.35);
    margin-bottom: 12px;
}
.btn-register:hover[b-a7bqsywnrz] {
    background: #a01f1f;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(188,38,38,0.45);
}
.register-note[b-a7bqsywnrz] {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted, #aaa);
    margin: 0;
}

/* ── INFO CARD ─── */
.info-card[b-a7bqsywnrz] {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}
.info-card-title[b-a7bqsywnrz] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.info-item[b-a7bqsywnrz] {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.info-item:last-child[b-a7bqsywnrz] { margin-bottom: 0; }
.info-icon[b-a7bqsywnrz] {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(188,38,38,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary, #bc2626);
}
.info-text[b-a7bqsywnrz] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 2px;
}
.info-label[b-a7bqsywnrz] {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted, #aaa);
    font-weight: 600;
}
.info-text strong[b-a7bqsywnrz] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
}
.info-sub[b-a7bqsywnrz] {
    font-size: 0.85rem;
    color: var(--text-muted, #888);
}

/* ── RESPONSIVE ─── */
@media (max-width: 991px) {
    .detail-layout[b-a7bqsywnrz] {
        grid-template-columns: 1fr;
    }
    .sidebar-sticky[b-a7bqsywnrz] {
        position: static;
    }
    .detail-sidebar[b-a7bqsywnrz] {
        order: -1;
    }
    .price-card[b-a7bqsywnrz], .info-card[b-a7bqsywnrz] {
        border-radius: 16px;
    }
}

@media (max-width: 640px) {
    .detail-hero[b-a7bqsywnrz] {
        min-height: 70vh;
    }
    .hero-title[b-a7bqsywnrz] {
        font-size: 1.8rem;
    }
    .hero-meta-row[b-a7bqsywnrz] {
        gap: 12px;
    }
    .hero-meta-item[b-a7bqsywnrz] {
        font-size: 0.85rem;
    }
    .detail-card[b-a7bqsywnrz] {
        padding: 20px;
    }
    .facilities-grid[b-a7bqsywnrz] {
        grid-template-columns: 1fr 1fr;
    }
    .price-amount[b-a7bqsywnrz] {
        font-size: 1.6rem;
    }
    .detail-body[b-a7bqsywnrz] {
        padding: 32px 0 60px;
    }
}

/* ── MODAL ─── */
.modal-backdrop[b-a7bqsywnrz] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content[b-a7bqsywnrz] {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: modalSlideUp-b-a7bqsywnrz 0.3s ease-out forwards;
}

.modal-header[b-a7bqsywnrz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-header h3[b-a7bqsywnrz] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
}

.close-btn[b-a7bqsywnrz] {
    background: none;
    border: none;
    color: var(--text-muted, #aaa);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s;
}

.close-btn:hover[b-a7bqsywnrz] {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark, #1a1a2e);
}

@keyframes modalSlideUp-b-a7bqsywnrz {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-actions[b-a7bqsywnrz] {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

@media (max-width: 480px) {
    .modal-actions[b-a7bqsywnrz] {
        flex-direction: column;
    }
    .modal-content[b-a7bqsywnrz] {
        width: 95%;
        padding-bottom: 8px;
    }
}
/* /Pages/Events/Index.razor.rz.scp.css */
.events-page[b-53nn6y3exf] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Premium Gradient Header ---- */
.events-hero-header[b-53nn6y3exf] {
    background: linear-gradient(135deg, #d8231a 0%, #9e140d 100%);
    border-radius: 20px;
    padding: 48px 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 12px 32px -8px rgba(216,35,26,0.3);
}

.header-content[b-53nn6y3exf] {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.header-title[b-53nn6y3exf] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.header-subtitle[b-53nn6y3exf] {
    font-size: 1.05rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
    color: #ffffff;
}

/* Header Background Decorations */
.header-decoration[b-53nn6y3exf] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
    z-index: 1;
}

.circle-glow[b-53nn6y3exf] {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.dot-pattern[b-53nn6y3exf] {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 24px 24px;
    opacity: 0.5;
}


/* ---- Calendar Timeline (Breakthrough UI) ---- */
.calendar-timeline-container[b-53nn6y3exf] {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calendar-timeline[b-53nn6y3exf] {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 12px 0 24px;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.calendar-timeline[b-53nn6y3exf]::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}


.scroll-btn[b-53nn6y3exf] {
    position: absolute;
    top: calc(50% - 15px);
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #4B5563;
    transition: all 0.2s;
}
.scroll-btn:hover[b-53nn6y3exf] {
    color: #d8231a;
    border-color: #d8231a;
}
.scroll-btn.left[b-53nn6y3exf] { left: -16px; }
.scroll-btn.right[b-53nn6y3exf] { right: -16px; }

.calendar-day[b-53nn6y3exf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 80px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    background: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.calendar-day:hover[b-53nn6y3exf] {
    transform: translateY(-4px);
    border-color: #d8231a;
    box-shadow: 0 8px 16px rgba(216, 35, 26, 0.08);
}

.calendar-day.active[b-53nn6y3exf] {
    background: #d8231a;
    border-color: #d8231a;
    color: white;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 24px rgba(216, 35, 26, 0.25);
}

.calendar-day .day-name[b-53nn6y3exf] {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-day.active .day-name[b-53nn6y3exf] {
    color: rgba(255, 255, 255, 0.9);
}

.calendar-day .day-num[b-53nn6y3exf] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
}

.event-dot[b-53nn6y3exf] {
    position: absolute;
    bottom: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d8231a;
}
.calendar-day.active .event-dot[b-53nn6y3exf] {
    background: white;
}

.clear-date-btn[b-53nn6y3exf] {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(216,35,26,0.08);
    color: #d8231a;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.clear-date-btn:hover[b-53nn6y3exf] {
    background: rgba(216,35,26,0.15);
}
.clear-date-btn i[b-53nn6y3exf] {
    width: 14px;
    height: 14px;
}

/* ---- Custom Dropdowns (Location) ---- */
.events-filter-section[b-53nn6y3exf] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.category-pills[b-53nn6y3exf] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    width: 100%;
}
.category-pill[b-53nn6y3exf] {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    background: white;
    color: #4B5563;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.category-pill:hover[b-53nn6y3exf] {
    border-color: #d8231a;
    color: #d8231a;
    background: rgba(216,35,26,0.04);
}
.category-pill.active[b-53nn6y3exf] {
    background: #d8231a;
    color: white;
    border-color: #d8231a;
    box-shadow: 0 4px 12px rgba(216,35,26,0.25);
}

.basic-filters[b-53nn6y3exf] {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%; /* Take full width to accommodate large dropdowns */
}

.custom-dropdown[b-53nn6y3exf] {
    position: relative;
    width: 280px;
    flex: 1;
    min-width: 240px;
}

.custom-dropdown.disabled[b-53nn6y3exf] {
    opacity: 0.5;
    pointer-events: none;
}

.dropdown-trigger[b-53nn6y3exf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.dropdown-trigger:hover[b-53nn6y3exf] {
    border-color: #d8231a;
}

.custom-dropdown.open .dropdown-trigger[b-53nn6y3exf] {
    border-color: #d8231a;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.trigger-text[b-53nn6y3exf] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trigger-text i[b-53nn6y3exf] {
    width: 18px;
    height: 18px;
    color: #6B7280;
}

.chevron[b-53nn6y3exf] {
    width: 18px;
    height: 18px;
    color: #6B7280;
    transition: transform 0.3s;
}

.custom-dropdown.open .chevron[b-53nn6y3exf] {
    transform: rotate(180deg);
}

.dropdown-menu[b-53nn6y3exf] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #d8231a;
    border-top: none;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    z-index: 100;
    overflow: hidden;
}

.dropdown-search[b-53nn6y3exf] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.dropdown-search i[b-53nn6y3exf] {
    width: 16px;
    height: 16px;
    color: #6B7280;
    margin-right: 8px;
}

.dropdown-search input[b-53nn6y3exf] {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    color: #1a1a2e;
}

.dropdown-list[b-53nn6y3exf] {
    max-height: 240px;
    overflow-y: auto;
}

.dropdown-list[b-53nn6y3exf]::-webkit-scrollbar {
    width: 6px;
}
.dropdown-list[b-53nn6y3exf]::-webkit-scrollbar-thumb {
    background: #E5E7EB;
    border-radius: 4px;
}

.dropdown-item[b-53nn6y3exf] {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #4B5563;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-item:hover[b-53nn6y3exf] {
    background: #F3F4F6;
    color: #1a1a2e;
}

.dropdown-item.selected[b-53nn6y3exf] {
    background: rgba(216,35,26,0.06);
    color: #d8231a;
    font-weight: 600;
}

.dropdown-empty[b-53nn6y3exf] {
    padding: 24px;
    text-align: center;
    color: #6B7280;
    font-size: 0.9rem;
}

.btn-clear-inline[b-53nn6y3exf] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: transparent;
    border: 1px dashed #E5E7EB;
    border-radius: 12px;
    color: #6B7280;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-clear-inline:hover[b-53nn6y3exf] {
    border-color: #d8231a;
    color: #d8231a;
    background: rgba(216,35,26,0.04);
}
.btn-clear-inline i[b-53nn6y3exf] {
    width: 16px;
    height: 16px;
}

/* ---- Empty State ---- */
.empty-state[b-53nn6y3exf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    background: white;
    border-radius: 24px;
    border: 1px dashed #E5E7EB;
    text-align: center;
    margin-top: 24px;
}

.empty-icon-wrapper[b-53nn6y3exf] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(216,35,26,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.empty-icon-wrapper i[b-53nn6y3exf] {
    width: 36px;
    height: 36px;
    color: #d8231a;
}

.empty-state h3[b-53nn6y3exf] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 12px 0;
}

.empty-state p[b-53nn6y3exf] {
    color: #6B7280;
    font-size: 1.05rem;
    max-width: 400px;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.btn-clear-filters[b-53nn6y3exf] {
    background: #d8231a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(216,35,26,0.25);
}

.btn-clear-filters:hover[b-53nn6y3exf] {
    background: #b71c15;
    transform: translateY(-2px);
}

/* ---- Grid Layout ---- */
.events-grid[b-53nn6y3exf] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* ---- Event Card ---- */
.event-card[b-53nn6y3exf] {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    background: white;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.event-card:hover[b-53nn6y3exf] {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.12);
    border-color: #D1D5DB;
}

.event-image[b-53nn6y3exf] {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #F3F4F6;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.event-card:hover .event-image[b-53nn6y3exf] {
    /* Optional slight zoom on hover */
}

.event-badge[b-53nn6y3exf] {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    color: #d8231a;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.event-details[b-53nn6y3exf] {
    padding: 24px 24px 20px;
    flex: 1;
}

.event-date[b-53nn6y3exf] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d8231a;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: rgba(216,35,26,0.06);
    padding: 6px 12px;
    border-radius: 8px;
}

.event-date i[b-53nn6y3exf] {
    width: 16px;
    height: 16px;
}

.event-details h3[b-53nn6y3exf] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.event-card:hover h3[b-53nn6y3exf] {
    color: #d8231a;
}

.event-details p[b-53nn6y3exf] {
    font-size: 0.95rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-footer[b-53nn6y3exf] {
    padding: 16px 24px;
    border-top: 1px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FAFAFA;
}

.event-location[b-53nn6y3exf] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6B7280;
}

.event-location i[b-53nn6y3exf] {
    width: 14px;
    height: 14px;
}

.event-price[b-53nn6y3exf] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #1a1a2e;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 767px) {
    .events-hero-header[b-53nn6y3exf] {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .header-title[b-53nn6y3exf] {
        font-size: 1.6rem;
    }
}

.events-index-page[b-53nn6y3exf] { padding-top: 100px; padding-bottom: 60px; min-height: 100vh; background: var(--background); } 
@media (max-width: 767px) { .events-page[b-53nn6y3exf] { padding: 0 16px; } .events-hero-header[b-53nn6y3exf] { padding: 24px 16px; border-radius: 12px; } .header-title[b-53nn6y3exf] { font-size: 1.5rem; } .custom-dropdown[b-53nn6y3exf] { min-width: 100%; width: 100%; } .btn-clear-inline[b-53nn6y3exf] { width: 100%; justify-content: center; } }
