    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    :root {
        --bg-primary: #0a0a0f;
        --bg-secondary: #12121a;
        --bg-tertiary: #1a1a24;
        --bg-card: #16161f;
        --accent: #a855f7;
        --accent-pink: #ec4899;
        --accent-glow: rgba(168, 85, 247, 0.3);
        --success: #22c55e;
        --text-primary: #ffffff;
        --text-secondary: #a1a1aa;
        --text-muted: #71717a;
        --border-color: rgba(255,255,255,0.1);
        --gradient-purple: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    }
    
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        background: var(--bg-primary) !important;
        color: var(--text-primary);
        line-height: 1.6;
        min-height: 100vh;
        position: relative;
    }
    
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse 80% 50% at 20% 20%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 80% 30%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse 70% 50% at 10% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }
    
    /* Header */
    .ih-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 20px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(10, 10, 15, 0.9);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
    }
    
    .ih-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }
    
    .ih-logo img {
        height: 40px;
    }
    
    .ih-logo-text {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-primary);
    }
    
    .ih-nav {
        display: flex;
        gap: 32px;
        align-items: center;
    }
    
    .ih-nav a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.2s;
    }
    
    .ih-nav a:hover {
        color: var(--text-primary);
    }
    
    .ih-nav-highlight {
        background: linear-gradient(90deg, #a855f7, #ec4899, #a855f7);
        background-size: 200% 100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: textShimmer 3s ease-in-out infinite;
        font-weight: 600 !important;
    }
    
    @keyframes textShimmer {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }
    
    .ih-btn-header {
        background: linear-gradient(90deg, #22c55e, #16a34a, #22c55e);
        background-size: 200% 100%;
        color: #ffffff !important;
        padding: 10px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    
    .ih-btn-header:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    }

    /* NOTE: Mobile Menu, Navigation, and Dropdown styles are centralized in common.css */

    /* Main Container */
    .ih-event-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 120px 40px 60px;
        position: relative;
        z-index: 1;
    }
    
    /* Hero Section */
    .ih-event-hero {
        text-align: center;
        margin-bottom: 50px;
        padding: 40px 0;
    }
    
    .ih-event-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .ih-event-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--bg-tertiary);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 13px;
        color: var(--accent);
        border: 1px solid var(--border-color);
    }
    
    .ih-event-badge-residents {
        background: rgba(168, 85, 247, 0.15);
        border-color: rgba(168, 85, 247, 0.4);
        color: #a855f7;
        font-weight: 600;
    }
    
    .ih-event-badge-zoom {
        color: #2d8cff;
        border-color: rgba(45, 140, 255, 0.3);
        background: rgba(45, 140, 255, 0.1);
    }
    
    .ih-event-badge-deposit {
        background: rgba(251, 191, 36, 0.15);
        border-color: rgba(251, 191, 36, 0.4);
        color: #fbbf24;
    }
    
    .ih-event-hero h1 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 15px;
        background: var(--gradient-purple);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .ih-event-hero-subtitle {
        color: var(--text-secondary);
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .ih-event-meta {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }
    
    .ih-event-meta-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-secondary);
    }
    
    .ih-event-meta-item svg {
        color: var(--accent);
    }
    
    .ih-event-meta-item strong {
        color: var(--text-primary);
    }
    
    /* Main Layout */
    .ih-event-layout {
        display: grid;
        grid-template-columns: 1fr 580px;
        gap: 40px;
        align-items: start;
    }
    
    /* Content Section */
    .ih-event-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .ih-event-section {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 30px;
    }
    
    .ih-event-section-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 25px;
        padding-left: 15px;
        border-left: 3px solid var(--accent);
        color: var(--text-primary);
    }
    
    .ih-event-description {
        color: var(--text-secondary);
        font-size: 15px;
        line-height: 1.8;
    }
    
    .ih-event-description p {
        margin-bottom: 15px;
        color: var(--text-secondary);
    }
    
    /* Features */
    .ih-event-features {
        display: grid;
        gap: 16px;
    }
    
    .ih-event-feature {
        display: flex;
        gap: 16px;
        padding: 20px;
        background: var(--bg-secondary);
        border-radius: 12px;
        border: 1px solid var(--border-color);
    }
    
    .ih-event-feature-icon {
        font-size: 28px;
        flex-shrink: 0;
    }
    
    .ih-event-feature h4 {
        color: var(--accent);
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 6px;
    }
    
    .ih-event-feature p {
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Location */
    .ih-event-location-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 25px;
    }
    
    .ih-event-location-card h4 {
        font-size: 16px;
        margin-bottom: 15px;
        color: var(--text-primary);
    }
    
    .ih-event-location-option {
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 20px;
    }
    
    .ih-event-location-option-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .ih-event-location-option-icon {
        font-size: 24px;
    }
    
    .ih-event-location-option-badge {
        font-size: 11px;
        padding: 3px 8px;
        border-radius: 10px;
        font-weight: 600;
        background: rgba(45, 140, 255, 0.2);
        color: #2d8cff;
    }
    
    .ih-event-location-name {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--text-primary);
    }
    
    .ih-event-location-address {
        font-size: 12px;
        color: var(--text-muted);
    }
    
    /* Booking Card */
    .ih-event-booking {
        position: sticky;
        top: 100px;
    }
    
    .ih-event-booking-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 25px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }
    
    .ih-event-booking-header {
        text-align: center;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .ih-event-booking-header h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--text-primary);
    }
    
    .ih-event-booking-header p {
        color: var(--text-muted);
        font-size: 14px;
    }
    
    .ih-event-info-box {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 16px;
        background: rgba(168, 85, 247, 0.1);
        border: 1px solid rgba(168, 85, 247, 0.3);
        border-radius: 10px;
        margin-top: 20px;
        font-size: 13px;
        color: var(--text-secondary);
    }
    
    .ih-event-info-box svg {
        color: var(--accent);
        flex-shrink: 0;
    }
    
    /* MEC Form Styling */
    .ih-mec-form-wrapper {
        padding: 10px 0;
    }
    
    .ih-mec-form-wrapper,
    .ih-mec-form-wrapper *,
    .ih-mec-form-wrapper .mec-booking,
    .ih-mec-form-wrapper .mec-booking * {
        background-color: transparent !important;
        color: var(--text-primary) !important;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    }
    
    .ih-mec-form-wrapper .mec-booking {
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .ih-mec-form-wrapper h4,
    .ih-mec-form-wrapper h5 {
        color: var(--text-primary) !important;
        font-size: 16px !important;
        margin-bottom: 15px !important;
        font-weight: 600 !important;
    }
    
    .ih-mec-form-wrapper .mec-book-date-wrap {
        color: var(--text-primary) !important;
        font-weight: 600 !important;
        margin-bottom: 20px !important;
        padding: 15px !important;
        background: var(--bg-secondary) !important;
        border-radius: 12px !important;
        border: 1px solid var(--border-color) !important;
        text-align: center !important;
    }
    
    .ih-mec-form-wrapper .mec-book-ticket-container {
        background: var(--bg-secondary) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 12px !important;
        padding: 20px !important;
        margin-bottom: 15px !important;
    }
    
    .ih-mec-form-wrapper .mec-ticket-name {
        color: var(--text-primary) !important;
        font-weight: 600 !important;
        font-size: 15px !important;
    }
    
    .ih-mec-form-wrapper .mec-ticket-price {
        color: var(--accent) !important;
        font-weight: 700 !important;
        font-size: 18px !important;
    }
    
    .ih-mec-form-wrapper input[type="number"] {
        background: var(--bg-primary) !important;
        border: 1px solid var(--border-color) !important;
        color: var(--text-primary) !important;
        border-radius: 8px !important;
        width: 70px !important;
        text-align: center !important;
        padding: 12px !important;
        font-size: 16px !important;
    }
    
    .ih-mec-form-wrapper input[type="text"],
    .ih-mec-form-wrapper input[type="email"] {
        background: var(--bg-secondary) !important;
        border: 1px solid var(--border-color) !important;
        color: var(--text-primary) !important;
        border-radius: 8px !important;
        padding: 10px 12px !important;
        font-size: 14px !important;
    }
    
    .ih-mec-form-wrapper input:focus {
        outline: none !important;
        border-color: var(--accent) !important;
        box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15) !important;
    }
    
    .ih-mec-form-wrapper button,
    .ih-mec-form-wrapper input[type="submit"],
    .ih-mec-form-wrapper .mec-button {
        background: var(--gradient-purple) !important;
        border: none !important;
        color: white !important;
        padding: 16px 32px !important;
        border-radius: 12px !important;
        font-weight: 700 !important;
        font-size: 16px !important;
        cursor: pointer !important;
        width: 100% !important;
        margin-top: 10px !important;
    }
    
    .ih-mec-form-wrapper button:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4) !important;
    }
    
    .ih-mec-form-wrapper .mec-book-form-back-btn {
        background: var(--bg-tertiary) !important;
        border: 1px solid var(--border-color) !important;
        color: var(--text-primary) !important;
    }
    
    .ih-mec-form-wrapper .mec-book-form-gateways {
        background: var(--bg-secondary) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 12px !important;
        padding: 20px !important;
        margin: 20px 0 !important;
    }
    
    .ih-mec-form-wrapper .StripeElement {
        background: var(--bg-primary) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 12px !important;
        padding: 16px !important;
    }
    
    .ih-mec-form-wrapper .mec-error {
        background: rgba(239, 68, 68, 0.15) !important;
        border: 1px solid #ef4444 !important;
        color: #f87171 !important;
        padding: 16px !important;
        border-radius: 12px !important;
    }
    
    .ih-mec-form-wrapper .mec-success {
        background: rgba(34, 197, 94, 0.15) !important;
        border: 1px solid #22c55e !important;
        color: #4ade80 !important;
        padding: 16px !important;
        border-radius: 12px !important;
    }
    
    .ih-mec-form-wrapper hr {
        display: none !important;
    }
    
    .ih-mec-form-wrapper .mec-stripe-name-and-email-wrapper {
        height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Resident Required Block */
    .ih-resident-required {
        text-align: center;
        padding: 10px 0;
    }
    
    .ih-resident-icon {
        font-size: 36px;
        margin-bottom: 8px;
    }
    
    .ih-resident-required h4 {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 12px;
    }
    
    .ih-resident-required > p {
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .ih-resident-required ul {
        list-style: none;
        text-align: left;
        background: var(--bg-secondary);
        border-radius: 12px;
        padding: 15px 20px;
        margin-bottom: 20px;
    }
    
    .ih-resident-required ul li {
        color: var(--text-secondary);
        font-size: 14px;
        padding: 6px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .ih-resident-required ul li:last-child {
        border-bottom: none;
    }
    
    .ih-btn-join {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 18px 32px;
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        color: white !important;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 700;
        font-size: 18px;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    }
    
    .ih-btn-join:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    }
    
    .ih-btn-join span {
        font-size: 15px;
        font-weight: 500;
        opacity: 0.95;
        margin-top: 4px;
    }
    
    .ih-login-hint {
        margin-top: 20px;
        font-size: 14px;
        color: var(--text-muted);
    }
    
    .ih-login-hint a {
        color: var(--accent);
        text-decoration: none;
        font-weight: 500;
    }
    
    .ih-login-hint a:hover {
        text-decoration: underline;
    }
    
    .ih-btn-login {
        display: block;
        width: 100%;
        padding: 14px 32px;
        margin-top: 12px;
        background: transparent;
        border: 1px solid var(--border-color);
        color: var(--text-primary) !important;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 15px;
        text-align: center;
        transition: all 0.3s;
    }
    
    .ih-btn-login:hover {
        background: var(--bg-tertiary);
        border-color: var(--accent);
        color: var(--accent) !important;
    }
    
    /* Footer */
    .ih-event-footer {
        text-align: center;
        padding: 40px;
        color: var(--text-muted);
        font-size: 13px;
        border-top: 1px solid var(--border-color);
        margin-top: 60px;
        position: relative;
        z-index: 1;
    }
    
    /* Mobile Responsive */
    @media (max-width: 1100px) {
        .ih-event-layout {
            grid-template-columns: 1fr;
        }
        
        .ih-event-booking {
            position: static;
            order: -1;
        }
    }
    
    @media (max-width: 768px) {
        .ih-event-container {
            padding: 100px 20px 40px;
        }
        
        .ih-event-hero h1 {
            font-size: 28px;
        }
        
        .ih-event-meta {
            flex-direction: column;
            gap: 15px;
        }
        
        .ih-event-booking-card {
            padding: 20px;
        }
        
        .ih-event-section {
            padding: 20px;
        }
    }
