/* =====================================================================
   ASKGEN Ã¢â‚¬â€ GATHERLY THEME
   Royal + Gold, dark. Faithful port of the Gatherly design system,
   scoped under body.theme-gatherly so backend pages stay unaffected.
   ===================================================================== */

body.theme-gatherly {
    --royal: #1a0a4a;
    --royal-mid: #2d1270;
    --royal-light: #4a22a8;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --gold-pale: #f5e6b0;
    --gold-dim: #7a6030;
    --cream: #fdf8ee;
    --cream-dark: #f0e8cc;
    --white: #ffffff;
    --text-dark: #1a1228;
    --text-mid: #4a3d6b;
    --text-muted: #8a7ea8;
    --crimson: #8b1a3a;
    --crimson-light: #c2395f;
    --emerald: #0d4a35;
    --emerald-light: #1a7a56;
    --shadow-royal: 0 8px 40px rgba(26,10,74,0.18);
    --shadow-gold: 0 4px 24px rgba(201,168,76,0.22);
    --border-gold: 1px solid rgba(201,168,76,0.35);
    --border-royal: 1px solid rgba(74,34,168,0.18);
    --r: 12px;
    --r-lg: 20px;
    --r-pill: 100px;

    font-family: 'Inter', sans-serif;
    background: var(--royal);
    color: var(--white);
    scroll-behavior: smooth;
}

body.theme-gatherly *,
body.theme-gatherly *::before,
body.theme-gatherly *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.theme-gatherly h1,
body.theme-gatherly h2,
body.theme-gatherly h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
}

body.theme-gatherly h4,
body.theme-gatherly h5,
body.theme-gatherly h6 {
    color: var(--white);
}

body.theme-gatherly p,
body.theme-gatherly span,
body.theme-gatherly div,
body.theme-gatherly a,
body.theme-gatherly li,
body.theme-gatherly label,
body.theme-gatherly td,
body.theme-gatherly th {
    color: inherit;
}

body.theme-gatherly em {
    font-style: italic;
    color: var(--gold-light);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ NAV Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .g-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26,10,74,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body.theme-gatherly .g-nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

body.theme-gatherly .g-nav-logo .crown { font-size: 1.2rem; }

body.theme-gatherly .g-nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

body.theme-gatherly .g-nav-links a {
    color: rgba(255,255,255,0.72);
    font-size: 0.87rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
    position: relative;
    padding: 4px 0;
}

body.theme-gatherly .g-nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}

body.theme-gatherly .g-nav-links a:hover,
body.theme-gatherly .g-nav-links a.active { color: var(--gold-light); }
body.theme-gatherly .g-nav-links a:hover::after,
body.theme-gatherly .g-nav-links a.active::after { transform: scaleX(1); }

body.theme-gatherly .g-nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

body.theme-gatherly .g-nav-mobile-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: var(--r);
    color: var(--gold-light);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
}

body.theme-gatherly .g-nav-mobile {
    display: none;
    padding: 16px 5% 20px;
    background: rgba(10,5,30,0.98);
    border-top: 1px solid rgba(201,168,76,0.15);
}

body.theme-gatherly .g-nav-mobile.open { display: block; }

body.theme-gatherly .g-nav-mobile a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 8px;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 0.92rem;
    transition: background 0.15s, color 0.15s;
}

body.theme-gatherly .g-nav-mobile a:hover,
body.theme-gatherly .g-nav-mobile a.active {
    background: rgba(201,168,76,0.1);
    color: var(--gold-light);
}

body.theme-gatherly .g-nav-mobile-cta {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

body.theme-gatherly .g-nav-mobile-cta a { flex: 1; justify-content: center; }

body.theme-gatherly .g-mobile-bottom {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 99;
    background: rgba(10,5,30,0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 8px max(16px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-right));
    justify-content: space-around;
}

body.theme-gatherly .g-mobile-bottom-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 0;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.66rem;
    font-weight: 500;
    transition: color 0.2s;
}

body.theme-gatherly .g-mobile-bottom-item i { font-size: 1.05rem; }

body.theme-gatherly .g-mobile-bottom-item:hover,
body.theme-gatherly .g-mobile-bottom-item.active {
    color: var(--gold-light);
}

body.theme-gatherly .g-mobile-bottom-fab {
    color: var(--royal) !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    width: 48px;
    height: 48px;
    margin-top: -18px;
    box-shadow: 0 4px 16px rgba(201,168,76,0.4);
    flex: 0 0 auto;
}

body.theme-gatherly .g-mobile-bottom-fab i { font-size: 1.2rem; }
body.theme-gatherly .g-mobile-bottom-fab span { font-size: 0.6rem; }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ BUTTONS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .btn-ghost {
    padding: 8px 18px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(201,168,76,0.4);
    background: transparent;
    color: var(--gold-light);
    font-size: 0.83rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

body.theme-gatherly .btn-ghost:hover {
    background: rgba(201,168,76,0.1);
    color: var(--gold-light);
}

body.theme-gatherly .btn-primary {
    padding: 9px 22px;
    border-radius: var(--r-pill);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    color: var(--royal);
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 2px 12px rgba(201,168,76,0.3);
}

body.theme-gatherly .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    color: var(--royal);
}

body.theme-gatherly .btn-primary:disabled,
body.theme-gatherly .btn-ghost:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ HERO Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .hero {
    min-height: 88vh;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74,34,168,0.55) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 60%, rgba(139,26,58,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(13,74,53,0.2) 0%, transparent 60%),
        var(--royal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 5% 60px;
    position: relative;
    overflow: hidden;
}

body.theme-gatherly .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(201,168,76,0.07) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

body.theme-gatherly .hero > * { position: relative; z-index: 1; }

body.theme-gatherly .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--r-pill);
    padding: 6px 16px;
    margin-bottom: 28px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    text-transform: uppercase;
}

body.theme-gatherly .hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: g-pulse 2s infinite;
}

@keyframes g-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

body.theme-gatherly .hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -0.02em;
    text-align: center;
    max-width: 780px;
    margin-bottom: 22px;
    color: var(--white);
}

body.theme-gatherly .hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    text-align: center;
    max-width: 560px;
    margin-bottom: 44px;
}

/* Search bar */
body.theme-gatherly .search-bar {
    width: 100%;
    max-width: 700px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--r-pill);
    padding: 6px 8px 6px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-gold);
    margin-bottom: 16px;
}

body.theme-gatherly .search-bar > i { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

body.theme-gatherly .search-bar input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    padding: 8px 0;
}

body.theme-gatherly .search-bar input::placeholder { color: rgba(255,255,255,0.4); }

body.theme-gatherly .search-bar .sep {
    width: 1px;
    height: 24px;
    background: rgba(201,168,76,0.25);
}

body.theme-gatherly .search-bar select {
    background: none;
    border: none;
    outline: none;
    color: rgba(255,255,255,0.65);
    font-size: 0.86rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    padding: 0 8px;
}

body.theme-gatherly .search-bar select option { background: var(--royal-mid); color: white; }

body.theme-gatherly .search-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    border-radius: var(--r-pill);
    padding: 10px 24px;
    color: var(--royal);
    font-weight: 600;
    font-size: 0.86rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

body.theme-gatherly .search-btn:hover {
    box-shadow: 0 4px 16px rgba(201,168,76,0.4);
    transform: translateY(-1px);
}

body.theme-gatherly .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

body.theme-gatherly .hero-tag {
    padding: 6px 14px;
    border-radius: var(--r-pill);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body.theme-gatherly .hero-tag:hover {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.4);
    color: var(--gold-light);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ STATS STRIP Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .stats-strip {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 28px 5%;
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(201,168,76,0.12);
    border-bottom: 1px solid rgba(201,168,76,0.12);
}

body.theme-gatherly .stat-item { text-align: center; }

body.theme-gatherly .stat-num {
    font-size: 25px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

body.theme-gatherly .stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ SECTION WRAPPER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly section { padding: 72px 5%; }
body.theme-gatherly section + section { padding-top: 60px; }
body.theme-gatherly.has-mobile-bottom main { padding-bottom: 0px; flex: none; }

body.theme-gatherly .section-header { margin-bottom: 40px; }
body.theme-gatherly .section-header.row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
body.theme-gatherly .section-header.center { text-align: center; }

body.theme-gatherly .section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
    font-family: 'Inter', sans-serif;
}

body.theme-gatherly .section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

body.theme-gatherly .section-title em { font-style: italic; color: var(--gold-light); }

body.theme-gatherly .section-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 580px;
    margin: 12px 0 0;
}

body.theme-gatherly .section-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ FEATURED EVENTS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .featured-section {
    background: rgba(0,0,0,0.2);
}

body.theme-gatherly .featured-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

body.theme-gatherly .event-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

body.theme-gatherly .event-card:hover {
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: inherit;
}

body.theme-gatherly .event-card.hero-card { grid-row: 1 / 3; }

body.theme-gatherly .card-img {
    width: 100%;
    background: linear-gradient(135deg, var(--royal-mid), var(--crimson));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

body.theme-gatherly .event-card.hero-card .card-img { height: 340px; }
body.theme-gatherly .event-card:not(.hero-card) .card-img { height: 160px; }
body.theme-gatherly .event-card.compact .card-img { height: 140px; }

body.theme-gatherly .card-img-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.25;
}

body.theme-gatherly .event-card.compact .card-img-inner { font-size: 2.4rem; }

body.theme-gatherly .card-img-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: saturate(1.04) contrast(1.02);
}

body.theme-gatherly .event-card:hover .card-img-photo {
    transform: scale(1.06);
    filter: saturate(1.12) contrast(1.05);
}

body.theme-gatherly .card-img-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,5,30,0.08) 0%, rgba(10,5,30,0.28) 100%),
        radial-gradient(circle at 20% 20%, rgba(201,168,76,0.18), transparent 38%);
}

body.theme-gatherly .card-img-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(10,5,30,0.85) 0%, transparent 100%);
}

body.theme-gatherly .card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: var(--r-pill);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
}

body.theme-gatherly .badge-free { background: rgba(13,74,53,0.9); color: #6ee7b7; border: 1px solid rgba(110,231,183,0.3); }
body.theme-gatherly .badge-paid { background: rgba(139,26,58,0.9); color: #fca5a5; border: 1px solid rgba(252,165,165,0.3); }
body.theme-gatherly .badge-featured { background: rgba(201,168,76,0.9); color: var(--royal); }

body.theme-gatherly .card-date-chip {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(26,10,74,0.85);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 8px;
    padding: 6px 10px;
    text-align: center;
    backdrop-filter: blur(4px);
    z-index: 2;
}

body.theme-gatherly .card-date-chip .day {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

body.theme-gatherly .card-date-chip .month {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

body.theme-gatherly .card-body { padding: 18px 20px; display: flex; flex-direction: column; }

body.theme-gatherly .event-card:not(.hero-card) .card-body { flex: 1; }

body.theme-gatherly .card-organizer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

body.theme-gatherly .org-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-light), var(--crimson-light));
    font-size: 0.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

body.theme-gatherly .org-name {
    font-size: 0.74rem;
    color: var(--gold);
    font-weight: 500;
}

body.theme-gatherly .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 10px;
}

body.theme-gatherly .event-card.hero-card .card-title { font-size: 1.4rem; }
body.theme-gatherly .event-card.compact .card-title { font-size: 0.95rem; }

body.theme-gatherly .card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

body.theme-gatherly .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
}

body.theme-gatherly .meta-icon { font-size: 0.75rem; }

body.theme-gatherly .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

body.theme-gatherly .attendees {
    font-size: 0.72rem;
    color: var(--text-muted);
}

body.theme-gatherly .attendees span {
    color: var(--gold-light);
    font-weight: 600;
}

body.theme-gatherly .card-btn {
    padding: 7px 16px;
    border-radius: var(--r-pill);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: 1px solid var(--gold);
    color: var(--royal);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

body.theme-gatherly .card-btn:hover {
    box-shadow: 0 2px 12px rgba(201,168,76,0.4);
    transform: translateY(-1px);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ CATEGORIES Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .categories-section { background: var(--royal); }

body.theme-gatherly .cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}

body.theme-gatherly .cat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r);
    padding: 22px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    color: inherit;
    display: block;
}

body.theme-gatherly .cat-card:hover {
    background: rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-2px);
    color: inherit;
}

body.theme-gatherly .cat-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block;
}

body.theme-gatherly .cat-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

body.theme-gatherly .cat-count {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ HOW IT WORKS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .how-section {
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(74,34,168,0.3) 0%, transparent 70%),
                rgba(0,0,0,0.3);
}

body.theme-gatherly .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

body.theme-gatherly .steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}

body.theme-gatherly .step-card {
    text-align: center;
    padding: 28px 16px;
    position: relative;
}

body.theme-gatherly .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74,34,168,0.5), rgba(139,26,58,0.4));
    border: 1.5px solid rgba(201,168,76,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
    box-shadow: 0 0 24px rgba(201,168,76,0.15);
}

body.theme-gatherly .step-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

body.theme-gatherly .step-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ DASHBOARD PREVIEW Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .dashboard-preview {
    background: rgba(0,0,0,0.25);
}

body.theme-gatherly .dash-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
}

body.theme-gatherly .dash-sidebar {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--r-lg);
    padding: 20px 16px;
}

body.theme-gatherly .dash-logo {
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 8px;
}

body.theme-gatherly .dash-org-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(201,168,76,0.1);
    border-radius: 10px;
    border: 1px solid rgba(201,168,76,0.2);
    margin-bottom: 20px;
}

body.theme-gatherly .dash-org-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-light), var(--crimson-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

body.theme-gatherly .dash-org-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

body.theme-gatherly .dash-org-verified {
    font-size: 0.68rem;
    color: var(--gold);
}

body.theme-gatherly .dash-nav { display: flex; flex-direction: column; }

body.theme-gatherly .dash-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    margin-bottom: 2px;
    text-decoration: none;
    font-size: 0.81rem;
    color: rgba(255,255,255,0.55);
    transition: all 0.2s;
}

body.theme-gatherly .dash-nav a:hover,
body.theme-gatherly .dash-nav a.active {
    background: rgba(201,168,76,0.12);
    color: var(--gold-light);
}

body.theme-gatherly .dash-nav a.active { border-left: 2px solid var(--gold); }

body.theme-gatherly .dash-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

body.theme-gatherly .dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

body.theme-gatherly .dash-stat {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r);
    padding: 16px;
}

body.theme-gatherly .dash-stat .label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body.theme-gatherly .dash-stat .value {
    font-size: 1.6rem;
    color: var(--gold-light);
    font-weight: 700;
}

body.theme-gatherly .dash-stat .change {
    font-size: 0.7rem;
    color: #6ee7b7;
    margin-top: 3px;
}

body.theme-gatherly .dash-events-table {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-lg);
    overflow: hidden;
}

body.theme-gatherly .table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    gap: 16px;
    flex-wrap: wrap;
}

body.theme-gatherly .table-header h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

body.theme-gatherly .new-event-btn {
    padding: 7px 14px;
    border-radius: var(--r-pill);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    color: var(--royal);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

body.theme-gatherly .new-event-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(201,168,76,0.4);
    color: var(--royal);
}

body.theme-gatherly .dash-events-table table { width: 100%; border-collapse: collapse; }

body.theme-gatherly .dash-events-table thead th {
    padding: 10px 20px;
    text-align: left;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

body.theme-gatherly .dash-events-table tbody tr { transition: background 0.15s; }

body.theme-gatherly .dash-events-table tbody tr:hover { background: rgba(255,255,255,0.03); }

body.theme-gatherly .dash-events-table tbody td {
    padding: 13px 20px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

body.theme-gatherly .dash-events-table tbody td.event-name {
    color: var(--white);
    font-weight: 500;
}

body.theme-gatherly .status-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    font-size: 0.67rem;
    font-weight: 600;
}

body.theme-gatherly .status-live { background: rgba(13,74,53,0.5); color: #6ee7b7; }
body.theme-gatherly .status-upcoming { background: rgba(201,168,76,0.2); color: var(--gold-light); }
body.theme-gatherly .status-draft { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); }
body.theme-gatherly .status-ended { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.4); }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ORGANIZER CTA Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .organizer-section {
    background: linear-gradient(135deg, var(--royal-mid) 0%, rgba(45,18,112,0.8) 50%, rgba(139,26,58,0.4) 100%);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

body.theme-gatherly .org-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

body.theme-gatherly .org-cta-text { max-width: 580px; }

body.theme-gatherly .org-cta-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
    line-height: 1.2;
}

body.theme-gatherly .org-cta-text h2 em { font-style: italic; color: var(--gold-light); }

body.theme-gatherly .org-cta-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

body.theme-gatherly .org-cta-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
}

body.theme-gatherly .cta-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
}

body.theme-gatherly .cta-feat .check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--gold-light);
    flex-shrink: 0;
}

body.theme-gatherly .org-cta-action { flex-shrink: 0; text-align: center; }

body.theme-gatherly .org-cta-action .big-btn {
    display: block;
    padding: 16px 36px;
    border-radius: var(--r-pill);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    color: var(--royal);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    box-shadow: 0 4px 24px rgba(201,168,76,0.3);
    margin-bottom: 12px;
    white-space: nowrap;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

body.theme-gatherly .org-cta-action .big-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.45);
    color: var(--royal);
}

body.theme-gatherly .org-cta-action small {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ UPCOMING / FILTERS / LIST Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .upcoming-section {
    background: rgba(0,0,0,0.15);
}

body.theme-gatherly .filters-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    align-items: center;
}

body.theme-gatherly .filter-pill {
    padding: 7px 16px;
    border-radius: var(--r-pill);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.18);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

body.theme-gatherly .filter-pill:hover {
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.35);
    color: var(--gold-light);
    transform: translateY(-1px);
}

body.theme-gatherly .filter-pill.active {
    background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.1));
    border-color: rgba(201,168,76,0.5);
    color: var(--gold-light);
    box-shadow: 0 0 12px rgba(201,168,76,0.15);
}

body.theme-gatherly .events-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly footer {
    background: rgba(0,0,0,0.5);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 52px 5% 32px;
}

body.theme-gatherly .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

body.theme-gatherly .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.theme-gatherly .footer-brand p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 280px;
}

body.theme-gatherly .footer-col h4 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

body.theme-gatherly .footer-col a {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color 0.2s;
}

body.theme-gatherly .footer-col a:hover { color: var(--gold-light); }

body.theme-gatherly .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    gap: 16px;
    flex-wrap: wrap;
}

body.theme-gatherly .payment-chips { display: flex; gap: 8px; }

body.theme-gatherly .payment-chip {
    padding: 3px 10px;
    border-radius: 4px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ AUTH MODAL Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,5,30,0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

body.theme-gatherly .modal-overlay.open { display: flex; }

body.theme-gatherly .modal {
    background: var(--royal-mid);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    position: relative;
}

body.theme-gatherly .modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

body.theme-gatherly .modal-close:hover {
    color: var(--gold-light);
    background: rgba(201,168,76,0.1);
}

body.theme-gatherly .modal h2 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 6px;
}

body.theme-gatherly .modal .sub {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

body.theme-gatherly .tabs {
    display: flex;
    gap: 4px;
    background: rgba(0,0,0,0.3);
    border-radius: var(--r-pill);
    padding: 4px;
    margin-bottom: 22px;
}

body.theme-gatherly .tab {
    flex: 1;
    padding: 8px;
    border-radius: var(--r-pill);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.55);
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

body.theme-gatherly .tab.active {
    background: rgba(201,168,76,0.2);
    color: var(--gold-light);
    border: 1px solid rgba(201,168,76,0.35);
}

body.theme-gatherly .form-field { margin-bottom: 14px; }

body.theme-gatherly .form-field label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

body.theme-gatherly .form-field input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}

body.theme-gatherly .form-field input::placeholder { color: rgba(255,255,255,0.3); }
body.theme-gatherly .form-field input:focus { border-color: rgba(201,168,76,0.5); }

body.theme-gatherly .modal-submit {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    border-radius: var(--r-pill);
    color: var(--royal);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 6px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}

body.theme-gatherly .modal-submit:hover {
    box-shadow: 0 4px 24px rgba(201,168,76,0.45);
    transform: translateY(-1px);
}

body.theme-gatherly .divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
}

body.theme-gatherly .divider::before,
body.theme-gatherly .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

body.theme-gatherly .divider span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    font-family: 'Inter', sans-serif;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ EVENT DETAIL Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .event-hero {
    padding: 56px 5% 44px;
    background:
        radial-gradient(ellipse 60% 50% at 30% 30%, rgba(74,34,168,0.4) 0%, transparent 60%),
        var(--royal);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

body.theme-gatherly .event-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 36px;
    align-items: center;
}

body.theme-gatherly .event-hero .event-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 10px;
}

body.theme-gatherly .event-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.18;
    margin: 0 0 14px;
    color: var(--white);
    letter-spacing: -0.02em;
}

body.theme-gatherly .event-summary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 22px;
}

body.theme-gatherly .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

body.theme-gatherly .event-meta span i { color: var(--gold-light); margin-right: 6px; }

body.theme-gatherly .event-hero-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.3);
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--royal-mid), var(--crimson));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.18);
}

body.theme-gatherly .event-body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 5%;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 36px;
}

body.theme-gatherly .event-content {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--r-lg);
    padding: 28px 32px;
}

body.theme-gatherly .event-content h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--gold-light);
}

body.theme-gatherly .event-content p,
body.theme-gatherly .event-content li {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

body.theme-gatherly .register-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--r-lg);
    padding: 28px;
}

body.theme-gatherly aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: start;
    position: sticky;
    top: 80px;
}

body.theme-gatherly .register-card h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--gold-light);
}

body.theme-gatherly .register-card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

body.theme-gatherly .ticket-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r);
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

body.theme-gatherly .ticket-pill:hover,
body.theme-gatherly .ticket-pill.selected {
    border-color: rgba(201,168,76,0.5);
    background: rgba(201,168,76,0.1);
}

body.theme-gatherly .ticket-pill .t-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

body.theme-gatherly .ticket-pill .t-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

body.theme-gatherly .ticket-pill .t-price {
    font-weight: 700;
    color: var(--gold-light);
    font-size: 1rem;
}

/* â”€â”€â”€ EVENT DETAIL: ABOUT TEXT â”€â”€â”€ */
body.theme-gatherly .event-about-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
    margin-bottom: 32px;
}

body.theme-gatherly .event-about-text p { margin-bottom: 14px; }

/* â”€â”€â”€ EVENT DETAIL: DETAIL GRID â”€â”€â”€ */
body.theme-gatherly .event-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

body.theme-gatherly .event-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r);
}

body.theme-gatherly .event-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 0.9rem;
    flex-shrink: 0;
}

body.theme-gatherly .event-detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}

body.theme-gatherly .event-detail-value {
    font-weight: 600;
    color: var(--white);
    font-size: 0.92rem;
}

body.theme-gatherly .event-detail-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

/* â”€â”€â”€ EVENT DETAIL: MAP â”€â”€â”€ */
body.theme-gatherly .event-map-section {
    margin-bottom: 32px;
}

body.theme-gatherly .event-map-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.theme-gatherly .event-map-section h2 i {
    color: var(--gold-light);
    font-size: 1.1rem;
}

body.theme-gatherly .event-map {
    width: 100%;
    height: 320px;
    border-radius: var(--r);
    border: 1px solid rgba(201,168,76,0.2);
    overflow: hidden;
    margin: 16px 0;
    background: rgba(0,0,0,0.3);
    position: relative;
}

body.theme-gatherly .event-map .leaflet-container {
    border-radius: var(--r);
}

body.theme-gatherly .event-map .leaflet-popup {
    z-index: 1000;
}

body.theme-gatherly .event-map .leaflet-popup-content-wrapper {
    background: #1a0a4a;
    color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(201,168,76,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

body.theme-gatherly .event-map .leaflet-popup-tip {
    background: #1a0a4a;
}

body.theme-gatherly .event-map .leaflet-popup-content {
    margin: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    line-height: 1.5;
}

body.theme-gatherly .event-map .leaflet-popup-content strong {
    color: #e8c96a;
    font-size: 0.88rem;
    display: block;
    margin-bottom: 4px;
}

body.theme-gatherly .event-map .leaflet-popup-content span {
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
}

body.theme-gatherly .event-map .leaflet-popup-close-button {
    color: rgba(255,255,255,0.5);
    font-size: 18px;
}

body.theme-gatherly .event-map .leaflet-popup-close-button:hover {
    color: #e8c96a;
}

body.theme-gatherly .event-map-directions {
    display: flex;
    gap: 10px;
}

body.theme-gatherly .event-map-directions .btn-ghost {
    padding: 8px 16px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(201,168,76,0.3);
    background: transparent;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

body.theme-gatherly .event-map-directions .btn-ghost:hover {
    background: rgba(201,168,76,0.1);
}

body.theme-gatherly .event-map-marker {
    background: transparent !important;
    border: none !important;
}

/* â”€â”€â”€ EVENT DETAIL: ORGANIZER CARD â”€â”€â”€ */
body.theme-gatherly .event-organizer-section {
    margin-bottom: 32px;
}

body.theme-gatherly .event-organizer-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r);
    margin-top: 16px;
}

body.theme-gatherly .event-organizer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--royal-light), var(--crimson-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

body.theme-gatherly .event-organizer-info { flex: 1; }

body.theme-gatherly .event-organizer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 6px;
}

body.theme-gatherly .event-organizer-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 10px;
}

body.theme-gatherly .event-organizer-stats {
    display: flex;
    gap: 18px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

body.theme-gatherly .event-organizer-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

body.theme-gatherly .event-organizer-stats i {
    color: var(--gold);
    font-size: 0.72rem;
}

/* â”€â”€â”€ EVENT DETAIL: SHARE â”€â”€â”€ */
body.theme-gatherly .event-share-section {
    margin-bottom: 32px;
}

body.theme-gatherly .event-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

body.theme-gatherly .event-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: var(--r-pill);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

body.theme-gatherly .event-share-btn:hover {
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.35);
    color: var(--gold-light);
}

body.theme-gatherly .event-share-btn.facebook:hover { border-color: rgba(59,89,152,0.6); color: #8fa8d6; }
body.theme-gatherly .event-share-btn.twitter:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }
body.theme-gatherly .event-share-btn.whatsapp:hover { border-color: rgba(37,211,102,0.5); color: #6ee7b7; }
body.theme-gatherly .event-share-btn.email:hover { border-color: rgba(201,168,76,0.4); color: var(--gold-light); }
body.theme-gatherly .event-share-btn.copy-link:hover { border-color: rgba(201,168,76,0.4); color: var(--gold-light); }

/* â”€â”€â”€ EVENT DETAIL: SIDEBAR LIST â”€â”€â”€ */
body.theme-gatherly .event-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.theme-gatherly .event-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

body.theme-gatherly .event-sidebar-list li:last-child {
    border-bottom: none;
}

body.theme-gatherly .event-sidebar-list li i {
    color: var(--gold);
    width: 16px;
    text-align: center;
    font-size: 0.82rem;
}

/* â”€â”€â”€ EVENT DETAIL: RELATED EVENTS â”€â”€â”€ */
body.theme-gatherly .event-related-section {
    margin-bottom: 32px;
}

body.theme-gatherly .event-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 16px;
}

body.theme-gatherly .event-card.compact {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

body.theme-gatherly .event-card.compact:hover {
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: inherit;
}

/* â”€â”€â”€ BACKEND GATHERLY THEME â”€â”€â”€ */
body.theme-gatherly.dashboard-layout {
    font-size: 13px;
}

body.theme-gatherly .dashboard-container {
    background: var(--royal);
}

body.dashboard-layout .sidebar-nav {
    padding: 14px 12px;
    background-color: #120735;
}

/* â”€â”€â”€ SIDEBAR â”€â”€â”€ */
body.theme-gatherly .modern-sidebar {
    background: rgba(10,5,30,0.95);
    border-right: 1px solid rgba(201,168,76,0.15);
}

body.theme-gatherly .user-profile {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

body.theme-gatherly .avatar {
    background: linear-gradient(135deg, var(--royal-light), var(--crimson-light));
}

body.theme-gatherly .status-indicator {
    border: 2px solid rgba(10,5,30,0.95);
}

body.theme-gatherly .profile-info h4 {
    color: var(--white);
}

body.theme-gatherly .profile-info p {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
}

body.theme-gatherly .nav-section-title {
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    padding: 0.4rem 0.75rem 0.2rem;
}

body.theme-gatherly .nav-item {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

body.theme-gatherly .nav-item i {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
}

body.theme-gatherly .nav-item:hover {
    background: rgba(201,168,76,0.12);
    color: var(--gold-light);
}

body.theme-gatherly .nav-item:hover i {
    color: var(--gold-light);
}

body.theme-gatherly .nav-item.active {
    background: rgba(201,168,76,0.15);
    color: var(--gold-light);
    border-left: 2px solid var(--gold);
}

body.theme-gatherly .nav-item.active i {
    color: var(--gold-light);
}

body.theme-gatherly .sidebar-footer {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 0.5rem 0.75rem;
}

body.theme-gatherly .sidebar-footer .footer-link {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

body.theme-gatherly .sidebar-footer .footer-link:hover {
    color: var(--gold-light);
    background: rgba(201,168,76,0.1);
}

body.theme-gatherly .sidebar-footer .footer-link.logout {
    color: #fca5a5;
}

body.theme-gatherly .sidebar-footer .footer-link.logout:hover {
    background: rgba(139,26,58,0.25);
    color: #fecaca;
}

/* â”€â”€â”€ MAIN CONTENT â”€â”€â”€ */
body.theme-gatherly .dashboard-main {
    background: var(--royal);
}

body.theme-gatherly .dashboard-main > section {
    color: rgba(255,255,255,0.85);
}

body.theme-gatherly .dashboard-header {
    background: rgba(10,5,30,0.6);
    padding: 0.65rem 1.5rem;
}

body.theme-gatherly .dashboard-header .page-title h1 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

body.theme-gatherly .dashboard-header .page-title p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
}

body.theme-gatherly .dashboard-header .date-display {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
}

/* â”€â”€â”€ PAGE HEADER â”€â”€â”€ */
body.theme-gatherly .page-header__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

body.theme-gatherly .page-header__subtitle {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* â”€â”€â”€ STAT CARDS â”€â”€â”€ */
body.theme-gatherly .stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--r);
    color: var(--white);
    padding: 1rem 1.25rem;
}

body.theme-gatherly a.stat-card:hover {
    border-color: rgba(201,168,76,0.4);
    box-shadow: var(--shadow-gold);
}

body.theme-gatherly .stat-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 0.65rem;
}

body.theme-gatherly .stat-card__label {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body.theme-gatherly .stat-card__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.2;
}

body.theme-gatherly .stat-card__change {
    font-size: 0.7rem;
    color: #6ee7b7;
    margin-top: 2px;
}

/* â”€â”€â”€ CARDS & CONTAINERS â”€â”€â”€ */
body.theme-gatherly .card,
body.theme-gatherly .bg-white {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(201,168,76,0.18) !important;
    color: var(--white);
    border-radius: var(--r);
}

/* â”€â”€â”€ TABLES â”€â”€â”€ */
body.theme-gatherly table {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
}

body.theme-gatherly thead th {
    color: rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body.theme-gatherly tbody td {
    color: rgba(255,255,255,0.78);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.65rem 0.85rem;
}

body.theme-gatherly tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

/* â”€â”€â”€ TEXT & TYPOGRAPHY â”€â”€â”€ */
body.theme-gatherly h1, body.theme-gatherly h2, body.theme-gatherly h3,
body.theme-gatherly h4, body.theme-gatherly h5, body.theme-gatherly h6 {
    color: var(--white);
}

body.theme-gatherly.dashboard-layout p,
body.theme-gatherly.dashboard-layout span,
body.theme-gatherly.dashboard-layout li,
body.theme-gatherly.dashboard-layout td {
    font-size: 0.8rem;
}

body.theme-gatherly .text-gray-500, body.theme-gatherly .text-gray-600,
body.theme-gatherly .text-gray-700, body.theme-gatherly .text-gray-800,
body.theme-gatherly .text-gray-900 {
    color: rgba(255,255,255,0.7) !important;
}

body.theme-gatherly .bg-gray-50, body.theme-gatherly .bg-gray-100 {
    background: rgba(255,255,255,0.03) !important;
}

body.theme-gatherly .border, body.theme-gatherly .border-gray-200 {
    border-color: rgba(255,255,255,0.08) !important;
}

/* â”€â”€â”€ BUTTONS â”€â”€â”€ */
body.theme-gatherly .btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--royal);
    font-weight: 600;
}

body.theme-gatherly .btn-primary:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

body.theme-gatherly .btn-outline {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold-light);
}

body.theme-gatherly .btn-outline:hover {
    background: rgba(201,168,76,0.1);
}

body.theme-gatherly .btn-muted {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

body.theme-gatherly .btn-danger {
    background: rgba(139,26,58,0.6);
    color: #fca5a5;
    border: 1px solid rgba(252,165,165,0.2);
}

body.theme-gatherly .btn-danger:hover {
    background: rgba(139,26,58,0.8);
}

/* â”€â”€â”€ FORM ELEMENTS â”€â”€â”€ */
body.theme-gatherly input, body.theme-gatherly select, body.theme-gatherly textarea {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    font-size: 0.82rem;
    padding: 0.5rem 0.75rem;
}

body.theme-gatherly input:focus, body.theme-gatherly select:focus, body.theme-gatherly textarea:focus {
    border-color: rgba(201,168,76,0.5);
    box-shadow: 0 0 0 2px rgba(201,168,76,0.15);
    outline: none;
}

body.theme-gatherly input::placeholder, body.theme-gatherly textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

body.theme-gatherly .form-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
}

/* â”€â”€â”€ ALERTS â”€â”€â”€ */
body.theme-gatherly .alert {
    border-radius: var(--r);
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
}

body.theme-gatherly .alert-success {
    background: rgba(13,74,53,0.5);
    border: 1px solid rgba(110,231,183,0.2);
    color: #d1fae5;
}

body.theme-gatherly .alert-error {
    background: rgba(139,26,58,0.5);
    border: 1px solid rgba(252,165,165,0.2);
    color: #fecaca;
}

/* â”€â”€â”€ BADGES â”€â”€â”€ */
body.theme-gatherly .badge {
    border-radius: 999px;
    padding: 0.15rem 0.5rem;
    font-size: 0.68rem;
    font-weight: 600;
}

body.theme-gatherly .mobile-menu-toggle {
    color: var(--white);
}

/* â”€â”€â”€ STATUS PILLS â”€â”€â”€ */
body.theme-gatherly .status-pill.status-live {
    background: rgba(13,74,53,0.5);
    color: #6ee7b7;
}

body.theme-gatherly .status-pill.status-upcoming {
    background: rgba(201,168,76,0.2);
    color: var(--gold-light);
}

body.theme-gatherly .status-pill.status-draft {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.5);
}

body.theme-gatherly .status-pill.status-ended {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.4);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ EMPTY STATE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(201,168,76,0.2);
    border-radius: var(--r-lg);
    grid-column: 1 / -1;
}

body.theme-gatherly .empty-state-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 14px;
}

body.theme-gatherly .empty-state h3 {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

body.theme-gatherly .empty-state p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ALERTS / FLASH Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .alert {
    max-width: 900px;
    margin: 16px auto 0;
    padding: 12px 18px;
    border-radius: var(--r);
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
}

body.theme-gatherly .alert-success {
    background: rgba(13,74,53,0.5);
    border: 1px solid rgba(110,231,183,0.3);
    color: #d1fae5;
}

body.theme-gatherly .alert-error {
    background: rgba(139,26,58,0.5);
    border: 1px solid rgba(252,165,165,0.3);
    color: #fecaca;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ PAGE HEADER (for /pages/* and /calendar) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .page-header {
    text-align: center;
    padding: 72px 5% 40px;
    background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(74,34,168,0.4) 0%, transparent 70%), var(--royal);
    border-bottom: 1px solid rgba(201,168,76,0.12);
}

body.theme-gatherly .page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin: 0 0 10px;
}

body.theme-gatherly .page-header p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
}

body.theme-gatherly .content-card {
    max-width: 900px;
    margin: 40px auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--r-lg);
    padding: 40px 48px;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

body.theme-gatherly .content-card h2 {
    color: var(--gold-light);
    margin: 1.4em 0 0.5em;
    font-size: 1.4rem;
}

body.theme-gatherly .content-card a { color: var(--gold-light); }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ CONTACT FORM Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
}

body.theme-gatherly .contact-info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--r-lg);
    padding: 28px;
}

body.theme-gatherly .contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

body.theme-gatherly .contact-info-item:last-child { border-bottom: 0; }

body.theme-gatherly .contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(74,34,168,0.4), rgba(201,168,76,0.25));
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
}

body.theme-gatherly .contact-info-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body.theme-gatherly .contact-info-value {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

body.theme-gatherly .contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--r-lg);
    padding: 28px;
}

body.theme-gatherly .contact-form textarea {
    width: 100%;
    padding: 11px 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
    min-height: 140px;
    resize: vertical;
}

body.theme-gatherly .contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
body.theme-gatherly .contact-form textarea:focus { border-color: rgba(201,168,76,0.5); }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ CALENDAR Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--r-lg);
    padding: 16px;
}

body.theme-gatherly .cal-head {
    text-align: center;
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    padding: 8px 0;
}

body.theme-gatherly .cal-day {
    aspect-ratio: 1;
    background: rgba(0,0,0,0.2);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
    transition: all 0.2s;
}

body.theme-gatherly .cal-day:hover { border-color: rgba(201,168,76,0.4); }

body.theme-gatherly .cal-day.has-events {
    background: linear-gradient(135deg, rgba(74,34,168,0.4), rgba(201,168,76,0.2));
    border-color: rgba(201,168,76,0.3);
}

body.theme-gatherly .cal-day-num {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

body.theme-gatherly .cal-day.has-events .cal-day-num { color: var(--gold-light); font-weight: 700; }

body.theme-gatherly .cal-day.is-today {
    border-color: #e8c96a;
    box-shadow: 0 0 0 1px rgba(232,201,106,0.4);
}
body.theme-gatherly .cal-day.is-today .cal-day-num {
    color: #e8c96a;
    font-weight: 800;
}

body.theme-gatherly .cal-day-event {
    font-size: 0.62rem;
    color: var(--white);
    background: rgba(201,168,76,0.2);
    border-radius: 3px;
    padding: 1px 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
}

body.theme-gatherly .cal-day-event:hover { background: rgba(201,168,76,0.4); color: var(--white); }

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1024px) {
    body.theme-gatherly .featured-grid { grid-template-columns: 1fr; }
    body.theme-gatherly .event-card.hero-card { grid-row: auto; }
    body.theme-gatherly .event-body,
    body.theme-gatherly .event-hero-inner { grid-template-columns: 1fr; }
    body.theme-gatherly .event-related-grid { grid-template-columns: 1fr 1fr; }
    body.theme-gatherly .contact-grid { grid-template-columns: 1fr; }
    body.theme-gatherly .footer-top { grid-template-columns: 1fr 1fr; }
    body.theme-gatherly .steps-grid { grid-template-columns: 1fr 1fr; }
    body.theme-gatherly .dash-grid { grid-template-columns: 1fr; }
    body.theme-gatherly .dash-stats { grid-template-columns: 1fr 1fr; }
    body.theme-gatherly .events-list { grid-template-columns: repeat(2, 1fr); }
    body.theme-gatherly .stats-strip { gap: 30px; flex-wrap: wrap; }
    body.theme-gatherly .org-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
    body.theme-gatherly .g-nav-links { display: none; }
    body.theme-gatherly .g-nav-cta { display: none; }
    body.theme-gatherly .g-nav-mobile-toggle { display: inline-flex; }
    body.theme-gatherly .g-mobile-bottom { display: flex; }

    body.theme-gatherly section { padding: 56px 5%; }
    body.theme-gatherly .hero { min-height: 78vh; padding: 60px 5% 50px; }
    body.theme-gatherly .hero h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
    body.theme-gatherly .hero p { font-size: 1.1rem; }
    body.theme-gatherly .search-bar { flex-wrap: wrap; padding: 10px 14px; border-radius: 18px; }
    body.theme-gatherly .search-bar > i { display: none; }
    body.theme-gatherly .search-bar .sep { display: none; }
    body.theme-gatherly .search-bar input { flex: 1 1 100%; }
    body.theme-gatherly .search-bar select { flex: 1; min-width: 0; }
    body.theme-gatherly .search-btn { width: 100%; }

    body.theme-gatherly .stats-strip { padding: 22px 5%; }
    body.theme-gatherly .featured-grid { grid-template-columns: 1fr; }
    body.theme-gatherly .events-list { grid-template-columns: 1fr; }
    body.theme-gatherly .cats-grid { grid-template-columns: repeat(2, 1fr); }
    body.theme-gatherly .steps-grid { grid-template-columns: 1fr 1fr; }
    body.theme-gatherly .steps-grid::before { display: none; }
    body.theme-gatherly .dash-stats { grid-template-columns: 1fr 1fr; }
    body.theme-gatherly .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    body.theme-gatherly .footer-bottom { flex-direction: column; align-items: flex-start; }
    body.theme-gatherly .section-header.row { flex-direction: column; align-items: flex-start; }
    body.theme-gatherly .modal { padding: 28px 24px; }
    body.theme-gatherly .cookie-banner { right: 12px; left: 12px; width: auto; bottom: 12px; padding: 16px; }
    body.theme-gatherly .event-detail-grid { grid-template-columns: 1fr; }
    body.theme-gatherly .event-related-grid { grid-template-columns: 1fr; }
    body.theme-gatherly .event-share-buttons { gap: 8px; }
    body.theme-gatherly .event-map { height: 240px; }
    body.theme-gatherly section > div[style*="repeat(3"] { grid-template-columns: 1fr !important; }
    body.theme-gatherly section > div[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
    body.theme-gatherly section > div[style*="repeat(5"] { grid-template-columns: repeat(2, 1fr) !important; }
    body.theme-gatherly section > div[style*="repeat(6"] { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ COOKIE BANNER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
body.theme-gatherly .cookie-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 200;
    width: 360px;
    max-width: calc(100vw - 32px);
    background: var(--royal-mid);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--r-lg);
    padding: 18px 20px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

body.theme-gatherly .cookie-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.1rem;
}

body.theme-gatherly .cookie-body { flex: 1; min-width: 0; }

body.theme-gatherly .cookie-body h4 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

body.theme-gatherly .cookie-body p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 12px;
}

body.theme-gatherly .cookie-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

body.theme-gatherly .cookie-actions button {
    padding: 7px 14px;
    border-radius: var(--r-pill);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    color: var(--royal);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

body.theme-gatherly .cookie-actions button.ghost {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
}

body.theme-gatherly .cookie-actions button:hover { transform: translateY(-1px); }

body.theme-gatherly .cookie-actions a {
    margin-left: auto;
    font-size: 0.72rem;
    color: var(--gold-light);
    text-decoration: none;
}

body.theme-gatherly .cookie-actions a:hover { color: var(--white); }

body.theme-gatherly .cookie-banner.hidden { display: none; }

body.theme-gatherly.has-mobile-bottom main {padding-bottom: 0px;}
@media (max-width: 768px) {
    body.theme-gatherly.has-mobile-bottom main { padding-bottom: 80px; }
}

/* Hide nav + bottom on large screens when content is short */
body.theme-gatherly main { min-height: calc(100vh - 68px - 200px); }
