@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Light Mode Palette requested */
    --bg-color: #ececec;
    --text-color: #1a1a1a;
    --text-muted: #4d4d4d;
    --card-bg: #e8edf5;
    --accent-color: #9e9e9e;
    --accent-icon: #ffffff;
    --pill-bg: #cccccc;
    --pill-text: #1a1a1a;
    --border-color: #d0d0d0;
    --bottom-nav-bg: #121212;
    --bottom-nav-icon: #bbbbbb;
    --icon-hover: #ffffff;
    --modal-bg: #ffffff;
    --card-radius: 24px;
    --app-max-width: 100%; /* Responsive full width */

    /* Colors per category for Cards Light Mode */
    --cat-Sports: #ffe0b2;
    --cat-Education: #bbdefb;
    --cat-Music: #e1bee7;
    --cat-Entertainment: #f8bbd0;
    
    /* Icon Colors per category */
    --icon-Sports: #e65100;
    --icon-Education: #0d47a1;
    --icon-Music: #4a148c;
    --icon-Entertainment: #880e4f;
}

[data-theme='dark'] {
    /* Dark Mode Palette based on Mushroom Reference */
    --bg-color: #0c091f;
    --text-color: #f5f5fa;
    --text-muted: #a09eb6;
    --card-bg: #1c1532;
    --accent-color: #db2777; /* Hot Pink Accent */
    --accent-icon: #f5f5fa;
    --pill-bg: #231d3f;
    --pill-text: #f5f5fa;
    --border-color: #2a2a3f;
    --bottom-nav-bg: #050410;
    --bottom-nav-icon: #a09eb6;
    --icon-hover: #ec4899;
    --modal-bg: #1c1532;
    
    /* Colors per category for Cards Dark Mode (neon feeling) */
    --cat-Sports: #3e2723;
    --cat-Education: #0d47a1;
    --cat-Music: #4a148c;
    --cat-Entertainment: #880e4f;
    
    /* Icon Colors per category Dark */
    --icon-Sports: #ffcc80;
    --icon-Education: #90caf9;
    --icon-Music: #ce93d8;
    --icon-Entertainment: #f48fb1;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.app-container {
    background-color: var(--bg-color);
    width: 100%;
    max-width: var(--app-max-width);
    flex: 1 0 auto;
    position: relative;
    overflow-x: hidden;
    padding-bottom: 24px;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
}

.search-container {
    display: flex;
    align-items: center;
    background: var(--pill-bg);
    border-radius: 30px;
    padding: 10px 16px;
    flex-grow: 1;
    margin-right: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: background-color 0.3s ease;
    position: relative;
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 8px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    max-height: 250px;
    overflow-y: auto;
    z-index: 50;
    display: flex;
    flex-direction: column;
}

.search-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: var(--text-color);
}
.search-dropdown-item:hover {
    background: var(--pill-bg);
}
.search-dropdown-item:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.search-dropdown-item:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.search-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.search-item-icon i {
    width: 16px;
    height: 16px;
}
.search-item-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.search-item-title {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-item-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* City Filters */
.city-pill {
    background: #e0e0e0 !important;
    color: #4d4d4d !important;
    opacity: 1 !important;
    border: none !important;
}
.city-pill.active {
    background: #4d4d4d !important;
    color: #ffffff !important;
}

[data-theme='dark'] .city-pill {
    background: #2a2a2a !important;
    color: #a09eb6 !important;
}
[data-theme='dark'] .city-pill.active {
    background: #888 !important;
    color: #fff !important;
}

.search-icon {
    color: var(--text-muted);
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.search-container input {
    border: none;
    background: transparent;
    outline: none;
    color: var(--text-color);
    font-size: 16px;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.avatar-container {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
}
.avatar-container:hover {
    border: 2px solid var(--accent-color);
}
.avatar-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Categories */
.categories {
    display: flex;
    gap: 12px;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
}
.categories::-webkit-scrollbar {
    display: none;
}
.filter-pill {
    background: var(--pill-bg);
    color: var(--pill-text);
    border: 2px solid transparent;
    padding: 8px 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    opacity: 0.6;
}
.filter-pill span {
    font-size: 10px;
    text-transform: lowercase;
}
.filter-pill.active {
    opacity: 1;
    border-color: var(--text-color);
}
.filter-pill i {
    width: 20px;
    height: 20px;
}

/* Category Specific Pill Colors */
.filter-pill[data-category="Sports"] { background: var(--cat-Sports); color: var(--icon-Sports); }
.filter-pill[data-category="Education"] { background: var(--cat-Education); color: var(--icon-Education); }
.filter-pill[data-category="Music"] { background: var(--cat-Music); color: var(--icon-Music); }
.filter-pill[data-category="Entertainment"] { background: var(--cat-Entertainment); color: var(--icon-Entertainment); }

#my-events-btn.active {
    background: #ff4757;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.35);
}
[data-theme='dark'] #my-events-btn.active {
    background: #ff6b81;
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 107, 129, 0.3);
}

/* Main Events Area */
.events-main {
    padding: 24px 20px;
}
.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.events-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}
.events-header span {
    font-size: 12px;
    font-weight: 400;
    background: var(--pill-bg);
    padding: 4px 10px;
    border-radius: 12px;
    color: var(--text-muted);
}
.header-actions {
    display: flex;
    gap: 12px;
}
.icon-btn {
    background: var(--pill-bg);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-color);
    transition: background 0.3s ease;
}
.icon-btn:hover {
    background: var(--accent-color);
}
.icon-btn i {
    width: 18px;
    height: 18px;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
    padding-bottom: calc(var(--fab-primary-size, 56px) + 48px);
}
.event-card {
    border-radius: var(--card-radius);
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    height: 220px;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

/* Injecting Category Colors */
.event-card[data-cat="Sports"] { background: var(--cat-Sports); }
.event-card[data-cat="Education"] { background: var(--cat-Education); }
.event-card[data-cat="Music"] { background: var(--cat-Music); }
.event-card[data-cat="Entertainment"] { background: var(--cat-Entertainment); }

.card-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
[data-theme='dark'] .card-icon {
    background: rgba(0, 0, 0, 0.4);
}
.event-card[data-cat="Sports"] .card-icon { color: var(--icon-Sports); }
.event-card[data-cat="Education"] .card-icon { color: var(--icon-Education); }
.event-card[data-cat="Music"] .card-icon { color: var(--icon-Music); }
.event-card[data-cat="Entertainment"] .card-icon { color: var(--icon-Entertainment); }

.card-category-label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    font-size: 13px;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.card-image-wrapper {
    height: 50%;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}
.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.placeholder-image {
    background: rgba(0,0,0,0.1);
}
[data-theme='dark'] .placeholder-image {
    background: rgba(255,255,255,0.05);
}

.card-content-wrapper {
    height: 50%;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.card-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 6px 0;
}
.card-date, .card-location {
    font-size: 11px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 4px;
}
.meta-icon {
    width: 12px;
    height: 12px;
}

/* Floating Action Buttons — opposite corners */
#theme-toggle {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 100;
}
#admin-add-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #666666;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, background 0.3s ease;
}
.fab-btn:hover {
    transform: scale(1.05);
}
.fab-btn i {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.fab-primary { background: #666666; }
.fab-primary:hover { background: #444444; }
[data-theme='dark'] .fab-primary { background: #444444; }
[data-theme='dark'] .fab-primary:hover { background: #222222; }

.fab-secondary {
    width: 44px;
    height: 44px;
    background: var(--pill-bg);
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.fab-secondary:hover {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.05);
}
.fab-secondary i {
    width: 20px;
    height: 20px;
    filter: none;
}

/* Bottom Navigation */
.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--bottom-nav-bg);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    z-index: 10;
}
.nav-item {
    background: transparent;
    border: none;
    color: var(--bottom-nav-icon);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 10px;
}
.nav-item:hover {
    color: var(--accent-color);
}
.nav-center-wrap {
    position: relative;
    top: -20px;
    background: var(--bg-color);
    padding: 8px;
    border-radius: 50%;
}
.nav-center-btn {
    background: var(--accent-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-icon);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.modal-content {
    background: var(--modal-bg);
    width: 90%;
    max-width: var(--app-max-width);
    border-radius: 24px;
    padding: 24px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    color: var(--text-color);
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.close-btn {
    background: var(--pill-bg);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}
.toggle-list {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--card-bg);
    border-radius: 12px;
}
.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: #ccc;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.toggle-switch.active {
    background: var(--accent-color);
}
.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.toggle-switch.active::after {
    transform: translateX(20px);
    background: var(--accent-icon);
}

.form-body .form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--card-bg);
    background: var(--bg-color);
    color: var(--text-color);
    outline: none;
    font-family: inherit;
}
.save-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}
.save-btn {
    background: var(--accent-color);
    color: var(--accent-icon);
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
}

/* Event Detail View */
.event-detail-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: var(--bg-color);
    z-index: 5;
    padding-bottom: 24px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.back-btn {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
}
[data-theme='dark'] .back-btn {
    background: rgba(0, 0, 0, 0.5);
}

.detail-image-wrapper {
    margin: 16px 16px 0 16px;
    height: 35vh;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.detail-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-content {
    background: var(--bg-color);
    border-radius: 32px 32px 0 0;
    padding: 24px 20px;
    position: relative;
    top: -24px;
    z-index: 2;
}

.detail-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.2;
}

.detail-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}
.detail-date i {
    width: 16px;
    height: 16px;
}

.detail-info-cards {
    display: flex;
    gap: 12px;
    margin: 24px 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.detail-info-cards::-webkit-scrollbar {
    display: none;
}

.info-card {
    flex: 1;
    min-width: 105px;
    background: transparent;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.04);
}
[data-theme='dark'] .info-card {
    background: var(--pill-bg);
}

.info-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.info-card-value {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

.avatar-stack {
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar-stack img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-left: -8px;
    object-fit: cover;
}
.avatar-stack img:first-child {
    margin-left: 0;
}
.avatar-more {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-color);
    margin-left: -8px;
    z-index: 10;
}
[data-theme='dark'] .avatar-more {
    background: #f5f5fa;
    color: #1a1a1a;
}

.detail-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.event-section-divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 40px 0 32px;
    width: 100%;
}

/* ── Geo banner ─────────────────────────────────────────────────────────────── */
#geo-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--pill-bg);
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}
#geo-banner strong {
    color: var(--text-color);
    font-weight: 600;
}
#geo-change-btn {
    margin-left: auto;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}
#geo-change-btn:hover {
    color: var(--text-color);
    border-color: var(--text-color);
}
#geo-dismiss-btn {
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0 2px;
    transition: color 0.2s;
}
#geo-dismiss-btn:hover { color: var(--text-color); }

/* ── Mobile collapsible filter cards ────────────────────────────────────────── */
.mobile-filters {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-top: 12px;
    padding: 0 20px;
    width: 100%;
}
.mobile-filters .filter-card {
    flex: 0 0 auto;
    width: auto;        /* override .filter-card { width: 100% } */
    min-width: 140px;
    max-width: 220px;
}
.mobile-filters .filter-panel {
    flex-basis: 100%;
    order: 1;
}

.filter-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    background: var(--pill-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    color: var(--text-color);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    transition: background 0.2s, border-color 0.2s;
}
.filter-card:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: transparent;
}
.filter-card i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.filter-card[aria-expanded="true"] .filter-card-chevron {
    transform: rotate(180deg);
}

.filter-panel[aria-hidden="true"] { display: none; }
.filter-panel {
    padding: 8px 0 4px;
    overflow-x: auto;
    scrollbar-width: none;
}
.filter-panel::-webkit-scrollbar { display: none; }

/* ── Bottom-sheet modals on mobile ──────────────────────────────────────────── */
@media (max-width: 640px) {
    .modal-overlay {
        align-items: flex-end;
    }
    .modal-content {
        width: 100%;
        max-width: 100%;
        border-radius: 24px 24px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        transform: translateY(100%);
    }
    .modal-overlay.active .modal-content {
        transform: translateY(0);
    }
}

/* ── Tablet ≥ 641px ──────────────────────────────────────────────────────────── */
@media (min-width: 641px) {
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* ── Desktop ≥ 961px ─────────────────────────────────────────────────────────── */
@media (min-width: 961px) {
    .app-container {
        max-width: 960px;
        margin: 0 auto;
        box-shadow: 0 0 40px rgba(0,0,0,0.15);
    }
    .header {
        padding: 32px 32px 24px;
    }
    .categories {
        padding: 0 32px;
    }
    .events-main {
        padding: 24px 32px;
    }
    #geo-banner {
        padding: 8px 32px;
    }
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}


/* ── Event disclaimer box (Addendum B) ─────────────────────────── */
.event-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin: 20px 0;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #78350f;
}
.event-disclaimer i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #d97706;
}
.event-disclaimer p { margin: 0; }
[data-theme="dark"] .event-disclaimer {
    background: #422006;
    border-color: #78350f;
    color: #fde68a;
}
[data-theme="dark"] .event-disclaimer i { color: #fbbf24; }

/* ── About / intro section ──────────────────────────────────────────────────── */
.about-eventeria {
    margin: 24px 0 32px;
    padding: 0 4px;
    max-width: 720px;
}
.about-heading {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-color);
}
.about-body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-color, #6e6e73);
    margin: 0 0 12px;
}
.about-cta {
    font-size: 0.95rem;
    color: var(--muted-color, #6e6e73);
    margin: 0;
}
.about-cta strong {
    color: var(--text-color);
}
.about-eventeria.hidden {
    display: none;
}
