/* RENDEZVOUS 2026 EGYPTIAN SAND THEME CSS */

:root {
    --sand-primary: #F3E9DC;      /* Papyrus Sand Beige */
    --sand-dark: #1E160D;         /* Desert Shadows */
    --sand-deep: #0F0B06;         /* Ancient Abyss Black */
    --gold-bright: #FFD700;       /* Solar Gold */
    --gold-metallic: #D4AF37;     /* Solid Gold Accent */
    --gold-glow: rgba(212, 175, 55, 0.4);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #AA7C11 100%);
    --rust-accent: #C05A3E;       /* Terracotta Clay */
    --turquoise-accent: #2E8B9A;  /* Nile Turquoise */
    --card-bg: rgba(30, 22, 13, 0.65);
    --card-border: rgba(212, 175, 55, 0.25);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
}

/* Base resets & theme scrollbar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--sand-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-metallic);
    border-radius: 5px;
    border: 2px solid var(--sand-deep);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-bright);
}

body {
    background-color: var(--sand-deep);
    color: var(--sand-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Ambient Hieroglyphic Background */
.hieroglyphs-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
                      radial-gradient(circle at 10% 70%, rgba(192, 90, 62, 0.05) 0%, transparent 50%);
    z-index: -2;
    pointer-events: none;
}

/* Floating Sand Storm Particles */
.sand-storm-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.sand-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: var(--gold-metallic);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-bright);
    animation: drift linear infinite;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translate(-15vw, -30vh) rotate(360deg);
        opacity: 0;
    }
}

/* Reusable Typography classes */
.gold-txt {
    color: var(--gold-metallic);
    text-shadow: 0 0 3px rgba(212, 175, 55, 0.2);
}
.gold-title {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    color: var(--gold-bright);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Navbar */
.navbar {
    background: rgba(15, 11, 6, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-metallic);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
}
.logo-img {
    height: 65px !important;
    width: auto !important;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7)) !important;
    transition: transform 0.3s ease !important;
}
.logo-img:hover {
    transform: scale(1.05) !important;
}
.logo-text {
    display: none !important;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    color: var(--sand-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-link:hover {
    color: var(--gold-bright);
    transform: translateY(-2px);
    text-shadow: 0 0 5px var(--gold-glow);
}
.user-info-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--card-border);
}
.welcome-txt {
    font-size: 0.95rem;
    font-weight: 500;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-bright);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--sand-deep);
    border: 1px solid var(--gold-bright);
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 10px var(--gold-glow);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px var(--gold-metallic);
    color: #000;
}
.btn-logout {
    color: var(--rust-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.btn-logout:hover {
    color: #ff6347;
}
.btn-secondary {
    background: rgba(30, 20, 10, 0.3);
    color: var(--gold-bright);
    border: 1px solid var(--gold-metallic);
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(circle, rgba(30, 20, 10, 0.6) 0%, rgba(15, 11, 6, 0.92) 100%),
                url('../images/egyptian_background.jpg') no-repeat center center/cover;
    border-bottom: 1px solid var(--gold-metallic);
}
.hero-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}
.hero-logo-img {
    max-width: 580px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(214, 175, 55, 0.4));
    animation: floatLogo 5s ease-in-out infinite;
    transition: filter 0.3s ease;
}
.hero-logo-img:hover {
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.65));
}
@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
.hero-subtitle {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--sand-primary);
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
.glass-card:hover {
    border-color: var(--gold-metallic);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15), 0 0 10px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

/* Events Categories & Grid */
.events-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0.8rem auto 0;
    box-shadow: 0 0 8px var(--gold-bright);
}
.category-container {
    margin-bottom: 4rem;
}
.category-header {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 0.5rem;
}
.category-header i {
    font-size: 1.8rem;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}
.event-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.event-name {
    font-size: 1.4rem;
    color: var(--gold-bright);
}
.event-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sand-primary);
}
.event-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 1rem;
}
.meta-tag {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-metallic);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}
.event-criteria {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
.event-card-actions {
    display: flex;
    justify-content: flex-end;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    background: var(--sand-dark);
    border: 2px solid var(--gold-metallic);
    border-radius: 8px;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 0 30px var(--gold-glow);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.modal.active .modal-content {
    transform: scale(1);
}
.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--gold-bright);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}
.close-modal:hover {
    color: #ff6347;
}

/* Forms & Authentication */
.auth-container {
    max-width: 450px;
    margin: 5rem auto;
    padding: 2.5rem;
}
.auth-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gold-bright);
}
.form-control {
    width: 100%;
    background: rgba(15, 11, 6, 0.8);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    color: var(--sand-primary);
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--gold-bright);
    box-shadow: 0 0 8px var(--gold-glow);
}
.auth-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}
.auth-links a {
    color: var(--gold-bright);
    text-decoration: none;
}
.auth-links a:hover {
    text-decoration: underline;
}
.error-msg {
    background: rgba(192, 90, 62, 0.2);
    border: 1px solid var(--rust-accent);
    padding: 0.8rem;
    border-radius: 4px;
    color: #ff9e80;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Dashboard & Custom Registration Layout */
.dashboard-container {
    max-width: 1600px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
}
.dashboard-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
}
.profile-card {
    text-align: center;
}
.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--sand-deep);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 15px var(--gold-glow);
}
.profile-name {
    font-size: 1.4rem;
    color: var(--gold-bright);
    margin-bottom: 0.3rem;
}
.profile-detail {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.reg-wizard-container {
    position: relative;
}
.wizard-header {
    border-bottom: 2px solid var(--gold-metallic);
    padding-bottom: 0.8rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.events-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-height: 450px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-bottom: 2rem;
}
.selection-card {
    border: 1px solid var(--card-border);
    padding: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(15, 11, 6, 0.4);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.selection-card:hover {
    border-color: var(--gold-metallic);
    background: rgba(212, 175, 55, 0.05);
}
.selection-card.selected {
    border-color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}
.checkbox-custom {
    margin-top: 0.3rem;
}
.selection-details {
    flex: 1;
}
.selection-name {
    font-weight: 600;
    color: var(--sand-primary);
}
.selection-card.selected .selection-name {
    color: var(--gold-bright);
}
.selection-meta {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.3rem;
}

/* Team form blocks */
.team-details-section {
    border-top: 1px solid var(--card-border);
    padding-top: 2rem;
    margin-top: 2rem;
}
.team-card {
    border: 1px solid var(--gold-glow);
    background: rgba(30, 20, 10, 0.3);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.team-card-title {
    color: var(--gold-bright);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}
.team-members-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.team-member-row {
    grid-column: span 2;
    border-top: 1px dashed rgba(212, 175, 55, 0.15);
    padding-top: 1rem;
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.8rem;
}
.team-member-row h5 {
    grid-column: span 3;
    font-size: 0.85rem;
    color: var(--gold-metallic);
}

/* Cart Checkout Summary */
.checkout-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--gold-metallic);
    padding-top: 1.5rem;
    margin-top: 2rem;
}
.cart-summary-txt {
    font-size: 1.1rem;
}
.cart-total-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-bright);
    margin-left: 0.5rem;
}

/* Success & Failed Pages */
.outcome-container {
    max-width: 600px;
    margin: 6rem auto;
    text-align: center;
    padding: 3rem;
}
.outcome-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}
.outcome-icon.success {
    color: var(--turquoise-accent);
    text-shadow: 0 0 15px rgba(46, 139, 154, 0.4);
}
.outcome-icon.failed {
    color: var(--rust-accent);
    text-shadow: 0 0 15px rgba(192, 90, 62, 0.4);
}
.outcome-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.outcome-msg {
    margin-bottom: 2rem;
    opacity: 0.9;
}
.outcome-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* My Registrations List */
.my-registrations-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.my-reg-group {
    background: rgba(15, 11, 6, 0.5);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.my-reg-group-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
}
.my-reg-item {
    padding: 0.8rem 0;
}
.my-reg-item-name {
    font-weight: 600;
    color: var(--gold-bright);
    font-size: 1.1rem;
}
.my-reg-item-team {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 0.3rem;
}
.participant-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.15rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

/* Double column styling */
.col-span-2 {
    grid-column: span 2;
}

/* Footer Section styling */
.footer {
    background: #080603;
    border-top: 1px solid var(--gold-metallic);
    padding: 4rem 2rem 2rem;
    margin-top: auto;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}
.footer-section {
    flex: 1 1 250px;
}
.footer-section p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 0.8rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.8rem;
}
.footer-links a {
    color: var(--sand-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--gold-bright);
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive queries */
@media(max-width: 1024px) {
    .dashboard-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(15, 11, 6, 0.98);
        border-top: 1px solid var(--gold-metallic);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
        gap: 1.2rem;
    }
    .nav-menu.active {
        display: flex;
    }
    .user-info-nav {
        border-left: none;
        border-top: 1px solid var(--card-border);
        padding-left: 0;
        padding-top: 1.2rem;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    .team-members-inputs {
        grid-template-columns: 1fr;
    }
    .team-member-row {
        grid-template-columns: 1fr;
        grid-column: span 1;
    }
    .team-member-row h5 {
        grid-column: span 1;
    }
}

/* Dynamic Igloo.inc Ultra-Modern Enhancements */
.mouse-follower {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(46, 139, 154, 0.05) 45%, transparent 70%);
    pointer-events: none;
    z-index: -2;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    opacity: 0;
}

.live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 139, 154, 0.15);
    border: 1px solid rgba(46, 139, 154, 0.5);
    color: #4cd137;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-left: 12px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #4cd137;
    border-radius: 50%;
    box-shadow: 0 0 8px #4cd137;
    animation: pulseGlow 1.8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

/* Glassmorphism Dynamic Cards */
.glass-card-interactive {
    background: rgba(20, 16, 12, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.glass-card-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.glass-card-interactive:hover::before {
    left: 150%;
}

.glass-card-interactive:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--gold-bright);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.25);
}

/* Stat Ticker Cards */
.stat-ticker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.stat-ticker-card {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-ticker-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-bright);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

/* Filter Pavilion Glass Card */
.filter-pavilion-box {
    background: radial-gradient(135deg, rgba(30, 22, 13, 0.65) 0%, rgba(15, 11, 6, 0.85) 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    border-top: 2px solid var(--gold-metallic) !important;
    border-radius: 14px !important;
    padding: 1.5rem 1.8rem !important;
    max-width: 850px !important;
    margin: 0 auto 2.5rem auto !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 35px rgba(0, 0, 0, 0.55) !important;
}

/* Real-time search bar */
.search-filter-wrapper {
    max-width: 600px !important;
    margin: 0 auto 1.2rem auto !important;
    position: relative !important;
}

.search-filter-input {
    width: 100% !important;
    padding: 0.85rem 1.2rem 0.85rem 3rem !important;
    background: rgba(12, 9, 6, 0.85) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 30px !important;
    color: #ffffff !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5) !important;
}

.search-filter-input::placeholder {
    color: rgba(224, 208, 176, 0.65) !important;
}

.search-filter-input:focus {
    border-color: var(--gold-bright) !important;
    background: rgba(15, 11, 6, 0.95) !important;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.4) !important;
}

.search-icon {
    position: absolute !important;
    left: 1.2rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: var(--gold-metallic) !important;
    font-size: 1rem !important;
    z-index: 2 !important;
}

/* Filter Tabs */
.filter-tabs-container {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 0.6rem !important;
}

.filter-pill-btn {
    background: rgba(212, 175, 55, 0.08) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #e0d0b0 !important;
    padding: 0.6rem 1.3rem !important;
    border-radius: 25px !important;
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(6px) !important;
}

.filter-pill-btn:hover {
    background: rgba(212, 175, 55, 0.25) !important;
    border-color: var(--gold-bright) !important;
    color: #ffffff !important;
}

.filter-pill-btn.active {
    background: var(--gold-gradient) !important;
    color: #0b0d10 !important;
    border-color: var(--gold-bright) !important;
    font-weight: 700 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
}

/* Event Card Badges */
.badge-pill-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    margin-right: 0.4rem;
}
.badge-free {
    background: rgba(46, 139, 154, 0.25);
    border: 1px solid var(--turquoise-accent);
    color: #4cd137;
}
.badge-limit {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold-metallic);
    color: var(--gold-bright);
}

/* Always-Visible Igloo.inc Style Egyptian Sound Capsule */
.floating-audio-talisman {
    position: fixed !important;
    bottom: 28px !important;
    right: 28px !important;
    z-index: 999999 !important;
    background: rgba(12, 9, 6, 0.92) !important;
    border: 1px solid rgba(212, 175, 55, 0.45) !important;
    border-top: 2px solid var(--gold-metallic) !important;
    border-radius: 40px !important;
    padding: 9px 20px !important;
    backdrop-filter: blur(18px) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    cursor: pointer !important;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    color: #ffffff !important;
    font-family: var(--font-body) !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.floating-audio-talisman:hover {
    transform: translateY(-3px) scale(1.05) !important;
    border-color: var(--gold-bright) !important;
    background: rgba(18, 14, 9, 0.96) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.5) !important;
}

.sound-pulse-dot {
    width: 8px;
    height: 8px;
    background: #4cd137;
    border-radius: 50%;
    box-shadow: 0 0 10px #4cd137;
    transition: all 0.3s ease;
}

.audio-muted-state .sound-pulse-dot {
    background: #e74c3c;
    box-shadow: 0 0 10px #e74c3c;
}

.talisman-ankh {
    font-size: 1.1rem;
    color: var(--gold-bright);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.6));
}

.talisman-eq {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 14px;
}

.talisman-bar {
    width: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    height: 3px;
    transition: height 0.2s ease;
}

.audio-playing .talisman-bar:nth-child(1) { animation: talismanBounce 0.8s ease-in-out infinite alternate; }
.audio-playing .talisman-bar:nth-child(2) { animation: talismanBounce 1.1s ease-in-out infinite alternate 0.2s; }
.audio-playing .talisman-bar:nth-child(3) { animation: talismanBounce 0.7s ease-in-out infinite alternate 0.4s; }
.audio-playing .talisman-bar:nth-child(4) { animation: talismanBounce 0.9s ease-in-out infinite alternate 0.1s; }

@keyframes talismanBounce {
    0% { height: 3px; opacity: 0.5; }
    100% { height: 14px; opacity: 1; }
}

