
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Respect user motion preferences */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            
            /* Disable the retro scan animation specifically */
            body::before {
                animation: none !important;
            }
        }

        body {
            font-family: 'Bebas Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #fff;
            background: linear-gradient(180deg, #2a0845 0%, #6441a5 50%, #2a0845 100%);
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(255,255,255,0.03) 2px,
                rgba(255,255,255,0.03) 4px
            );
            animation: scan 8s linear infinite;
            pointer-events: none;
            z-index: 1;
        }

        @keyframes scan {
            0% { transform: translateY(-50%); }
            100% { transform: translateY(0%); }
        }
        
        /* Skip to main content link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #ff00ff;
            color: #fff;
            padding: 8px;
            text-decoration: none;
            z-index: 100;
        }
        
        .skip-link:focus {
            top: 0;
        }

        /* Retro Wave Header */
        header {
            background: transparent;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        header h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 8vw, 6rem);
            letter-spacing: 0.2em;
            color: #fff;
            text-shadow: 
                0 0 10px #ff00ff,
                0 0 20px #ff00ff,
                0 0 30px #ff00ff,
                0 0 40px #00ffff,
                0 0 70px #00ffff,
                0 0 80px #00ffff;
            text-transform: uppercase;
            margin-bottom: -30px;
        }

        header p {
            color: #00ffff;
            font-size: clamp(1rem, 2vw, 1.5rem);
            font-weight: 400;
            text-shadow: 0 0 10px #00ffff;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* Hero Banner - Retro Style */
        .hero-banner {
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .hero-container {
            position: relative;
            width: 100%;
            height: 220px;
            border: 4px solid #ff00ff;
            overflow: hidden;
            background: #000;
            box-shadow: 0 0 30px #ff00ff, inset 0 0 30px rgba(255,0,255,0.2);
        }

        .hero-image {
            width: 100%;
            object-fit: contain;
            object-position: center;
            filter: contrast(1.2) saturate(1.5);
        }

        .hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 90%;
            z-index: 2;
        }

        .hero-text h2 {
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 400;
            text-shadow: 
                0 0 10px #ff00ff,
                0 0 20px #ff00ff,
                0 0 30px #00ffff,
                0 0 40px #00ffff;
            margin-bottom: .8rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        
        .hero-text h3 {
            font-size: clamp(1.5rem, 4vw, 3rem);
            font-weight: 400;
            text-shadow: 
                0 0 10px #ff00ff,
                0 0 20px #ff00ff,
                0 0 30px #00ffff,
                0 0 40px #00ffff;
            text-transform: uppercase;
        }

        /* Retro Wave Navigation */
        .rainbow-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            max-width: 1400px;
            margin: 1rem auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .rainbow-box {
            background: transparent;
            border: 3px solid #ff00ff;
            color: #fff;
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: 400;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            box-shadow: 0 0 10px #ff00ff, inset 0 0 10px rgba(255,0,255,0.2);
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            font-family: 'Bebas Neue', sans-serif;
            min-height: 44px;
            min-width: 44px;
        }
        
        .rainbow-box:focus {
            outline: 3px solid #00ffff;
            outline-offset: 2px;
        }

        .rainbow-box:hover {
            background: #ff00ff;
            box-shadow: 0 0 30px #ff00ff, inset 0 0 20px rgba(255,0,255,0.5);
            transform: translateY(-4px);
        }

        a.coming {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }
        
        span.coming {
            opacity: 0.5;
            cursor: not-allowed;
        }

        a.coming:hover {
            background: transparent;
            box-shadow: 0 0 10px #ff00ff, inset 0 0 10px rgba(255,0,255,0.2);
            transform: none;
        }
        
        span.coming:hover {
            background: transparent;
            box-shadow: 0 0 10px #ff00ff, inset 0 0 10px rgba(255,0,255,0.2);
            transform: none;
        }

        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0rem 2rem 0rem 2rem;
            position: relative;
            z-index: 2;
        }

        /* Iframe Container - Full Width */
        .iframecont {
            width: 100%;
            margin: 1rem 0;
            border: 3px solid #ff00ff;
            box-shadow: 0 0 20px #ff00ff;
            background: rgba(0,0,0,0.5);
        }

        .airtable-embed {
            width: 100%;
            height: 80vh;
            min-height: 600px;
            border: none;
            display: block;
        }

        /* Masonry Grid - Retro Style */
        .masonry-grid {
            column-count: 4;
            column-gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .masonry-item {
            display: inline-block;
            width: 100%;
            margin-bottom: 1.5rem;
            break-inside: avoid;
            border: 3px solid #ff00ff;
            overflow: hidden;
            box-shadow: 0 0 20px #ff00ff, inset 0 0 10px rgba(255,0,255,0.1);
            transition: all 0.3s ease;
            background: rgba(0,0,0,0.5);
        }

        .masonry-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 40px #ff00ff, inset 0 0 20px rgba(255,0,255,0.3);
            border-color: #00ffff;
        }

        .masonry-item img {
            width: 100%;
            height: auto;
            display: block;
            background-color: #f5f5f5; /* Placeholder color while loading */
            filter: contrast(1.1) saturate(1.3);
        }
        
        /* Lazy loading fade-in effect */
        img[loading="lazy"] {
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        img[loading="lazy"].loaded {
            opacity: 1;
        }

        /* About Section */
        .about-section {
            margin: 3rem auto;
            padding: 2rem;
            max-width: 1000px;
            background: white;
            border: 3px solid #ff00ff;
            box-shadow: 0 0 30px #ff00ff, inset 0 0 20px rgba(255,0,255,0.2);
            position: relative;
            z-index: 2;
        }

        .about-section h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            color: #000000;
            letter-spacing: 0.1em;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .about-section p {
            color: #000000;
            font-size: 1.5rem;
            font-family: sans-serif;
            line-height: 1.1em;
        }

        .about-section a {
            color: purple;
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        .about-section a:hover {
            color: blue;
        }

        .about-section ul {
            font-family: sans-serif;
            font-size: 1.5rem;
            margin-left: 2rem;
            margin-bottom: 1.2rem;
            color: #000000;
            line-height: 1.1em;
        }

        .about-section li {
            font-size: 1.5rem;
            font-family: sans-serif;
            line-height: 1.1em;
        }

        .about-section em {
            font-style: italic;
        }

        footer {
            text-align: center;
            padding: 3rem 2rem;
            color: #ffffff;
            background: transparent;
            border-top: 3px solid #ff00ff;
            margin-top: 1rem;
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0.05em;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            position: relative;
            z-index: 2;
        }

        footer a {
            color: #66d9ff;
            text-decoration: underline;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #99e6ff;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .masonry-grid {
                column-count: 3;
            }
        }

        @media (max-width: 900px) {
            .masonry-grid {
                column-count: 2;
            }

            .hero-container {
                height: 220px;
            }

            .rainbow-nav {
                gap: 1rem;
            }

            .rainbow-box {
                padding: 0.85rem 1.75rem;
            }

            .about-section {
                margin: 2rem auto;
                padding: 1.5rem;
            }
        }

        @media (max-width: 600px) {
            header h1 {
                letter-spacing: 0.1em;
            }

            .hero-container {
                height: 180px;
            }

            .rainbow-box {
                padding: 0.85rem 1.25rem;
            }

            .masonry-grid {
                column-count: 1;
            }

            .airtable-embed {
                height: 60vh;
                min-height: 400px;
            }

            header, .hero-banner, .rainbow-nav, main, footer {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            main {
                padding-top: 0;
                padding-bottom: 0;
            }

            .iframecont {
                margin: 0.75rem 0;
            }

            .about-section {
                margin: 1.5rem auto;
                padding: 1.5rem 1rem;
            }
        }
    