
        :root {
            --red-primary: #E5363F;
            --blue-primary: #324798;
            --cream: #F5F5F0;
            --dark: #2B2B2B;
            --white: #FFFFFF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Work Sans', sans-serif;
            overflow-x: hidden;
            background: var(--cream);
            color: var(--dark);
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="2.5" numOctaves="5" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
            opacity: 0.25;
            pointer-events: none;
            z-index: 1;
        }
        
        body > * {
            position: relative;
            z-index: 2;
        }
        
        /* VIDEO INTRO SECTION */
        .video-intro {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: #000;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 1s ease, visibility 1s ease;
        }
        
        .video-intro.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        
        .video-intro video {
            width: 500px;
            height: 1080px;
            max-width: 100%;
            max-height: 100vh;
            object-fit: cover;
            box-shadow: 0 0 30px rgba(0,0,0,0.5);
            border-radius: 8px;
        }
        
        .video-intro .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.5) 100%);
            pointer-events: none;
        }
        
        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            z-index: 10;
        }
        
        .video-branding {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .video-branding .brand-text {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 48px;
            color: var(--red-primary);
            line-height: 0.9;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
            letter-spacing: -1px;
        }
        
        .video-branding .brand-subtitle {
            font-family: 'Allura', cursive;
            font-size: 28px;
            color: white;
            text-shadow: 1px 1px 8px rgba(0,0,0,0.8);
        }
        
        .skip-button {
            padding: 18px 40px;
            background: var(--red-primary);
            color: white;
            border: none;
            font-family: 'Oswald', sans-serif;
            font-size: 16px;
            letter-spacing: 1px;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.3s ease;
            box-shadow: 0 6px 25px rgba(230, 57, 70, 0.5);
            position: relative;
            overflow: hidden;
        }
        
        .skip-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }
        
        .skip-button:hover::before {
            left: 100%;
        }
        
        .skip-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 35px rgba(230, 57, 70, 0.7);
            background: #c92a33;
        }
        
        .skip-button:active {
            transform: translateY(-1px);
        }
        
        /* Loading state for video */
        .video-intro .loading-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255,255,255,0.2);
            border-top-color: var(--red-primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        .video-intro.loaded .loading-spinner {
            display: none;
        }
        
        /* MAIN CONTENT */
        .main-content {
            opacity: 0;
            transition: opacity 1s ease 0.3s;
        }
        
        .main-content.visible {
            opacity: 1;
        }
        
        /* HERO SECTION */
        .hero {
            min-height: 100vh;
            background: var(--blue-primary);
            background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="3.2" numOctaves="6" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
            background-blend-mode: multiply;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .logo-flame {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            animation: flicker 3s ease-in-out infinite;
        }
        
        @keyframes flicker {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }
        
        .hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(60px, 12vw, 140px);
            color: var(--red-primary);
            line-height: 0.85;
            letter-spacing: -2px;
            margin-bottom: 20px;
            text-shadow: none;
            font-weight: 400;
            animation: slideDown 1s ease;
            text-transform: uppercase;
        }
        
        .hero h1 .cursive {
            font-family: 'Allura', cursive;
            font-size: clamp(32px, 6vw, 70px);
            color: white;
            text-transform: none;
            font-weight: 400;
            letter-spacing: 0;
            display: block;
            margin: -10px 0;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero .subtitle {
            font-family: 'Allura', cursive;
            font-size: clamp(28px, 5vw, 50px);
            color: white;
            margin-bottom: 60px;
            margin-top: -20px;
            font-weight: 400;
            animation: slideUp 1s ease 0.2s backwards;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .event-info {
            position: absolute;
            top: 40px;
            left: 40px;
            right: 40px;
            display: flex;
            gap: 60px;
            justify-content: space-between;
            flex-wrap: nowrap;
            margin: 0;
            animation: fadeIn 1s ease 0.4s backwards;
            width: auto;
            max-width: none;
        }
        
        .info-item {
            background: transparent;
            backdrop-filter: none;
            padding: 0;
            border-radius: 0;
            border: none;
            text-align: left;
        }
        
        .info-item.location-info {
            text-align: left;
        }
        
        .info-item.date-info {
            text-align: right;
            margin-left: auto;
        }
        
        .info-item .label {
            font-family: 'Oswald', sans-serif;
            font-size: 14px;
            letter-spacing: 1px;
            color: white;
            text-transform: uppercase;
            margin-bottom: 2px;
            font-weight: 400;
        }
        
        .info-item .value {
            font-family: 'Oswald', sans-serif;
            font-size: 20px;
            color: white;
            letter-spacing: 0.5px;
            font-weight: 500;
            text-transform: uppercase;
            line-height: 1.2;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .cta-primary {
            display: inline-block;
            padding: 25px 60px;
            background: var(--red-primary);
            color: white;
            font-family: 'Oswald', sans-serif;
            font-size: 20px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(230, 57, 70, 0.5);
            position: relative;
            overflow: hidden;
            animation: pulse 2s ease infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }
        
        .cta-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .cta-primary:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(230, 57, 70, 0.7);
        }
        
        .cta-primary span {
            position: relative;
            z-index: 1;
        }
        
        /* SECTION STYLES */
        .section {
            padding: 100px 20px;
            position: relative;
        }
        
        .section-alt {
            background: rgb(255, 255, 255);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(48px, 8vw, 100px);
            color: var(--dark);
            text-align: center;
            margin-bottom: 60px;
            letter-spacing: -1px;
            position: relative;
            display: inline-block;
            width: 100%;
            text-transform: uppercase;
            font-weight: 400;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--red-primary);
        }
        
        /* ABOUT SECTION */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image svg {
            width: 100%;
            height: auto;
            display: block;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        
        .about-text {
            font-size: 20px;
            line-height: 1.8;
            color: var(--dark);
        }
        
        .about-text p {
            margin-bottom: 25px;
        }
        
        .about-text strong {
            color: var(--red-primary);
            font-weight: 600;
        }
        
        /* WHY ATTEND SECTION */
        .why-attend {
            background: var(--red-primary);
            background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="3.2" numOctaves="6" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
            background-blend-mode: multiply;
            color: white;
        }
        
        .why-attend .section-title {
            color: white;
        }
        
        .why-attend .section-title::after {
            background: var(--cream);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .benefit-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 12px;
            border: 2px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.4);
        }
        
        .benefit-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .benefit-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 24px;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
        
        .benefit-card p {
            line-height: 1.6;
            opacity: 0.9;
        }
        
        /* SPEAKERS SECTION */
        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .speaker-card {
            text-align: center;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .speaker-card:hover {
            transform: translateY(-8px);
        }
        /*
        .speaker-frame {
            position: relative;
            margin-bottom: 20px;
            overflow: hidden;
            border-radius: 0;
            background: var(--red-primary);
            background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200"  xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="3.5" numOctaves="6" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
             background-blend-mode: multiply; 
        } */
        
        .speaker-frame.blue-bg {
            background: var(--blue-primary);
            background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="3.5" numOctaves="6" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
            background-blend-mode: multiply;
        }
        
        .speaker-frame.cream-bg {
            background: var(--cream);
            background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="3.5" numOctaves="6" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
            background-blend-mode: multiply; 
        }
        
        .speaker-frame .decorative-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 10;
        } 
        
        .speaker-frame .shape-red {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 80px;
            height: 80px;
        }
        
        .speaker-frame .shape-blue {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 60px;
            height: 60px;
        }
        
        .speaker-frame .shape-cream {
            position: absolute;
            bottom: 10px;
            left: 10px;
            width: 70px;
            height: 70px;
        }
        
        .speaker-card img {
            width: 100%;
            height: auto;
            filter: grayscale(100%) contrast(1.15) brightness(1.05);
            transition: all 0.3s ease;
            mix-blend-mode: luminosity;
            display: block;
        }
        
        .speaker-card:hover img {
            filter: grayscale(100%) contrast(1.2) brightness(1.1);
        }
        
        .speaker-name {
            font-family: 'Oswald', sans-serif;
            font-size: 24px;
            color: var(--dark);
            margin-bottom: 5px;
            letter-spacing: 0.5px;
            font-weight: 500;
            text-transform: uppercase;
        }
        
        .speaker-role {
            font-family: 'Allura', cursive;
            color: var(--blue-primary);
            font-size: 22px;
            font-weight: 400;
        }
        
        /* LOCATION SECTION */
        .location-content {
            text-align: center;
        }
        
        .location-name {
            font-family: 'Oswald', sans-serif;
            font-size: 32px;
            color: var(--red-primary);
            margin: 30px 0;
            letter-spacing: 1px;
        }
        
        .map-container {
            margin: 40px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        
        .map-container iframe {
            width: 100%;
            height: 450px;
            border: none;
        }
        
        .map-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .map-link {
            padding: 15px 30px;
            background: var(--blue-primary);
            color: white;
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            letter-spacing: 1px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .map-link:hover {
            background: var(--dark);
            transform: translateY(-2px);
        }
        
        /* COUNTDOWN SECTION */
        .countdown-section {
            background: var(--red-primary);
            color: white;
            text-align: center;
            padding: 60px 20px;
        }
        
        .countdown-title {
            font-family: 'Oswald', sans-serif;
            font-size: 24px;
            letter-spacing: 2px;
            margin-bottom: 30px;
            text-transform: uppercase;
        }
        
        .countdown {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .countdown-item {
            background: rgba(255,255,255,0.2);
            padding: 30px;
            border-radius: 12px;
            min-width: 120px;
        }
        
        .countdown-value {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 56px;
            display: block;
        }
        
        .countdown-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }
        
        /* FINAL CTA SECTION */
        .final-cta {
            background: var(--dark);
            color: white;
            text-align: center;
            padding: 100px 20px;
        }
        
        .final-cta h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(36px, 6vw, 72px);
            margin-bottom: 30px;
            letter-spacing: 2px;
        }
        
        .final-cta p {
            font-size: 20px;
            margin-bottom: 50px;
            opacity: 0.9;
        }
        
        /* STICKY CTA BUTTON */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--red-primary);
            padding: 7px;
            text-align: center;
            box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .sticky-cta.visible {
            transform: translateY(0);
        }
        
        .sticky-cta .cta-primary {
            margin: 0;
            animation: none;
        }
        
        /* RESPONSIVE */
        @media (max-width: 768px) {
            .video-controls {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                padding: 20px;
            }
            
            .video-branding .brand-text {
                font-size: 36px;
            }
            
            .video-branding .brand-subtitle {
                font-size: 20px;
            }
            
            .skip-button {
                padding: 15px 30px;
                font-size: 14px;
                width: 100%;
                text-align: center;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .event-info {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                flex-direction: column;
                gap: 20px;
                margin: 30px 0;
            }
            
            .info-item.date-info {
                text-align: left;
                margin-left: 0;
            }
            
            .cta-primary {
                padding: 20px 40px;
                font-size: 16px;
            }
            
            .section {
                padding: 60px 20px;
            }
        }
