        /* --- Variables --- */
        :root {
            --gold-primary: #e6a95f;
            --gold-hover: #d49b56;
            --dark-bg: #070707;
            --dark-overlay: rgba(0, 0, 0, 0.85);
            --card-bg: rgba(20, 20, 20, 0.95);
            --text-color: #f0f0f0;
            --text-gold: #e6a95f;
        }

        /* --- Global Resets for this page --- */
        body.using-page-events-override {
            background-color: var(--dark-bg);
            color: var(--text-color);
            overflow-x: hidden;
            font-family: 'Playfair Display', serif;
        }

        /* --- Background Structure --- */
        .events-background-fixed {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
        }
        
        .events-bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        .events-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.95));
        }

        /* --- Main Container --- */
        .events-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 20px 80px;
            position: relative;
            z-index: 1;
        }

        /* --- Typography --- */
        .page-title {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--gold-primary);
            text-transform: uppercase;
            letter-spacing: 5px;
            margin-bottom: 50px;
            text-align: center;
            text-shadow: 0 4px 10px rgba(0,0,0,0.5);
            opacity: 0;
            animation: fadeInDown 1s ease-out forwards;
        }

        /* --- Filters --- */
        .events-filters {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.3s forwards;
        }
        
        .custom-select-wrapper {
            position: relative;
            display: inline-block;
        }
        
        .events-filter-select {
            background-color: rgba(0,0,0,0.5);
            border: 1px solid var(--gold-primary);
            color: var(--gold-primary);
            padding: 12px 40px 12px 20px;
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            text-transform: uppercase;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            min-width: 200px;
            border-radius: 0;
            transition: all 0.3s ease;
        }
        
        .events-filter-select:hover, .events-filter-select:focus {
            background-color: var(--gold-primary);
            color: #000;
            outline: none;
        }
        
        .custom-select-wrapper::after {
            content: '\f078'; /* fa-chevron-down */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: inherit;
            pointer-events: none;
            font-size: 0.8rem;
        }
        
        .custom-select-wrapper:hover::after {
            color: #000;
        }

        /* --- Events Grid --- */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.5s forwards;
        }
        
        .event-card {
            background: var(--card-bg);
            border: 1px solid rgba(230, 169, 95, 0.2);
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: center;
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold-primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        
        .event-card:hover::before {
            transform: scaleX(1);
        }
        
        .event-icon-wrapper {
            margin-bottom: 25px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .event-icon-img {
            height: 40px;
            width: auto;
            filter: brightness(0) saturate(100%) invert(77%) sepia(26%) saturate(1073%) hue-rotate(325deg) brightness(96%) contrast(88%); /* Matches #e6a95f approx */
        }
        
        .event-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--gold-primary);
            margin: 0 0 10px;
            text-transform: uppercase;
            line-height: 1.2;
        }
        
        .event-venue {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            color: #fff;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .event-location {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: #999;
            margin-bottom: 20px;
        }
        
        .event-date {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--gold-primary);
            margin-bottom: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 10px 0;
            width: 100%;
        }
        
        .event-btn {
            display: inline-block;
            padding: 12px 30px;
            border: 1px solid var(--gold-primary);
            color: var(--gold-primary);
            text-transform: uppercase;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 2px;
            font-weight: 600;
            transition: all 0.3s ease;
            background: transparent;
        }
        
        .event-btn:hover {
            background: var(--gold-primary);
            color: #000;
        }
        
        /* --- Booking Section --- */
        .booking-section {
            margin-top: 100px;
            text-align: center;
            padding: 60px 0;
            border-top: 1px solid rgba(230, 169, 95, 0.3);
            opacity: 0;
            animation: fadeIn 1s ease-out 0.8s forwards;
        }
        
        .booking-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--gold-primary);
            margin-bottom: 30px;
        }
        
        .booking-btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--gold-primary);
            color: #000;
            text-transform: uppercase;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            letter-spacing: 2px;
            font-weight: 700;
            transition: all 0.3s ease;
            border: none;
        }
        
        .booking-btn:hover {
            background: #fff;
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 169, 95, 0.3);
        }
        
        .no-events {
            grid-column: 1 / -1;
            text-align: center;
            padding: 50px;
            color: #999;
            font-style: italic;
            border: 1px dashed rgba(255,255,255,0.1);
        }

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

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .page-title { font-size: 3rem; margin-bottom: 30px; }
            .events-container { padding: 100px 20px 40px; }
            .events-filters { flex-direction: column; align-items: center; }
            .custom-select-wrapper { width: 100%; max-width: 300px; }
            .events-filter-select { width: 100%; }
            .events-grid { grid-template-columns: 1fr; }
        }
