        /* Base Dark Theme */
        body {
            background-color: #0b0c10;
            color: #ffffff;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            overflow-x: hidden;
        }

        /* Hero Layout Setup */
        .hero-section {
            position: relative;
            min-height: 85vh; /* Slightly reduced so users see there is content below */
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-video { z-index: 0; }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Reduced opacity from 0.8 to 0.6 for better background visibility */
            background: rgba(0, 0, 0, 0.6); 
            z-index: 1;
        }
        
        .hero-content { position: relative; z-index: 2; }

        /* Typography Customizations */
        .brand-text { letter-spacing: 1px; }
        .brand-dot { color: #dc3545; }
        .badge-live {
            background-color: #b03a42;
            color: #ffffff;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            padding: 8px 20px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.3rem; }
        }
        .hero-description {
            font-size: 1.2rem;
            color: #cccccc;
            max-width: 750px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* Custom Event Cards Styling */
        .event-card {
            background-color: #1f2128;
            border: 1px solid #2e3039;
            border-radius: 12px;
            transition: transform 0.2s ease, border-color 0.2s ease;
            height: 100%;
        }
        .event-card:hover {
            transform: translateY(-5px);
            border-color: #dc3545;
        }
        .event-card img {
            border-top-left-radius: 11px;
            border-top-right-radius: 11px;
            height: 200px;
            object-fit: cover;
        }
        .text-muted-custom {
            color: #a0a5b5;
        }

        /* UI Interactive Buttons */
        .btn-live-red {
            background-color: #dc3545;
            color: white; border: none;
            padding: 12px 30px; border-radius: 50px;
            font-weight: 500; transition: all 0.2s ease;
        }
        .btn-live-red:hover { background-color: #bd2130; color: white; }
        
        .btn-outline-white {
            background-color: transparent;
            color: white; border: 1px solid #ffffff;
            padding: 12px 30px; border-radius: 50px;
            font-weight: 500; transition: all 0.2s ease;
        }
        .btn-outline-white:hover { background-color: rgba(255, 255, 255, 0.1); color: white; }
        /* Mobile Viewport Header Collapse Backdrop Adjustment */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: rgba(11, 12, 16, 0.95);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                padding: 20px;
                margin-top: 15px;
                border: 1px solid #2e3039;
            }
        }

/* ==========================================================================
   GRID.JS FULL FLEX-COLUMN CARD DASHBOARD LAYER
   ========================================================================== */

/* ==========================================================================
   1. Master Envelope Layout Matrix
   ========================================================================== */
/* ========================================================
   🖨️ WINDOWS PRINT PREVIEW ISOLATED CONTRAST THEME 
   Add this at the bottom of your stylesheet to clear dark mode rules!
   ======================================================== */

/* ========================================================
   🖨️ WINDOWS PRINT PREVIEW DESIGN REGULATION LAYER
   ======================================================== */
.gridjs-container,
.gridjs-wrapper,
.gridjs-table,
.gridjs-tr,
.gridjs-td,
.gridjs-footer {
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
    color: #000000 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    border-radius: 0px !important;
    box-shadow: none !important;
}

/* Wipes out native cell padding and blue table header bars entirely */
.gridjs-th {
    display: none !important; /* Completely hides the "Name" column header bar to create a seamless layout page look */
}

.gridjs-td {
    padding: 0px !important;
    border: none !important;
    border-bottom: 1px dashed #000000 !important; /* Dotted tear lines between attendee badges */
}

/* Clear the browser search field aesthetics */
.gridjs-search,
.gridjs-search-input {
    font-family: Arial, sans-serif !important;
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
    border-radius: 0px !important;
}

/* Monochrome Pagination Selector Styling */
.gridjs-pagination .gridjs-pages button {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
    border-radius: 0px !important;
}
.gridjs-pagination .gridjs-pages button.gridjs-currentPage {
    background-color: #000000 !important;
    color: #FFFFFF !important;
}

/* command button pulsate */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}
