        /* Global Page Texture */
        body {
            background-color: #0a0000;
            background-image: radial-gradient(circle at center, rgba(40, 0, 5, 1) 0%, rgba(0, 0, 0, 1) 100%);
            background-attachment: fixed;
            position: relative;
        }

        /* Fixed Grain Overlay */
        body::after {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100vh;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.06;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* New custom styles for the homepage to match the design */
        /* Hero */
        .hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; justify-content: flex-end; padding-top: 80px; overflow: hidden; padding-bottom: 90px; }
        .hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
        .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); z-index: -1; }
        .hero-content { position: relative; z-index: 1; text-align: left; max-width: 600px; padding: 2rem 5vw; width: 100%; margin: 0 0 3rem auto; }
        .hero-logo { margin-bottom: 1rem; display: flex; align-items: baseline; }
        .hero-logo .ted { color: var(--ted-red); font-size: clamp(2rem, 5.2vw, 4.5rem); font-weight: 900; font-family: var(--font-heading); line-height: 1; letter-spacing: -1.5px; }
        .hero-logo .sjcc { color: white; font-size: clamp(1.4rem, 3.9vw, 3.5rem); font-weight: 400; font-family: var(--font-heading); line-height: 1; letter-spacing: -0.5px; margin-left: 0.5rem; }
        .hero-theme-main { font-size: clamp(1rem, 2vw, 1.6rem); font-weight: 700; color: white; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.5rem; line-height: 1.4; }
        .hero-theme-sub { font-size: clamp(0.7rem, 1vw, 0.9rem); font-weight: 500; color: white; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem; line-height: 1.4; }
        .hero-tagline { position: relative; font-size: clamp(0.9rem, 1.5vw, 1.1rem); font-weight: 300; color: #ccc; display: inline-block; padding-top: 1rem; text-transform: lowercase; }
        .hero-tagline::before { content: ''; position: absolute; top: 0; left: 0; width: 40px; height: 2px; background: var(--ted-red); }
        .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
        .hero-buttons .btn { font-size: 0.9rem; padding: 1rem 2rem; border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
        .hero-buttons .btn-primary { background-color: var(--ted-red); border: none; color: white; }
        .hero-buttons .btn-outline { background: transparent; border: 1px solid white; color: white; }
        .hero-buttons .btn-outline:hover { background: white; color: black; }
        .hero-buttons .btn i { margin-left: 0.5rem; font-size: 0.8rem; }
        
        /* Ticker */
        .ticker-wrap { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; background-color: var(--ted-red); padding: 0.8rem 0; border-top: 1px solid #a8001b; display: flex; white-space: nowrap; z-index: 2; }
        .ticker { display: flex; animation: ticker 40s linear infinite; }
        .ticker-item { display: inline-flex; align-items: center; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: white; text-transform: uppercase; padding: 0 1rem; letter-spacing: 2px; }
        .ticker-item i { margin: 0 1.5rem; font-size: 1.4rem; color: #ffb3c1; }
        
        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* White Ticker */
        .ticker-wrap-white { position: relative; width: 100%; overflow: hidden; background-color: white; padding: 0.8rem 0; display: flex; white-space: nowrap; z-index: 2; margin-top: 3rem; }
        .ticker-white { display: flex; animation: ticker 40s linear infinite; }
        .ticker-item-white { display: inline-flex; align-items: center; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: #0a0a0a; text-transform: uppercase; padding: 0 1rem; letter-spacing: 2px; }
        .ticker-item-white i { margin: 0 1.5rem; font-size: 1.4rem; color: var(--ted-red); }

        /* Dark Footer Ticker */
        .ticker-wrap-footer { position: relative; width: 100%; overflow: hidden; background-color: transparent; border-top: 1px solid rgba(235, 0, 40, 0.2); border-bottom: 1px solid rgba(235, 0, 40, 0.2); padding: 1.2rem 0; display: flex; white-space: nowrap; z-index: 2; margin-top: 2rem; margin-bottom: 0; box-shadow: inset 0 0 20px rgba(235,0,40,0.05); }
        .ticker-footer { display: flex; animation: ticker 40s linear infinite; }
        .ticker-item-footer { display: inline-flex; align-items: center; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: white; text-transform: uppercase; padding: 0 1rem; letter-spacing: 2px; }
        .ticker-item-footer i { margin: 0 1.5rem; font-size: 1.4rem; color: var(--ted-red); filter: drop-shadow(0 0 5px rgba(235,0,40,0.5)); }

        /* Speakers Grid Section */
        .speakers-grid-section { background-color: #000; padding: var(--spacing-xl) 0; border-top: 2px solid #222; border-bottom: 2px solid #222; }
        .speakers-grid-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 1000px; margin: 0 auto; }
        .speaker-grid-card { position: relative; background: var(--ted-red); overflow: hidden; border: 1px solid #000; aspect-ratio: 3/4; }
        .speaker-grid-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%); z-index: 1; pointer-events: none; }
        .speaker-grid-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.2); transition: transform 0.5s ease; mix-blend-mode: multiply; opacity: 0.9; }
        .speaker-grid-card:hover img { transform: scale(1.05); opacity: 1; mix-blend-mode: normal; filter: grayscale(0%); }
        .speaker-grid-info { position: absolute; bottom: 10%; left: 0; width: 100%; padding: 1.5rem; z-index: 2; text-align: center; }
        .speaker-grid-name { font-size: 1.2rem; font-weight: 700; color: #000; margin-bottom: 0.2rem; text-transform: uppercase; font-family: var(--font-heading); background: white; display: inline-block; padding: 0.2rem 0.5rem; }
        .speaker-grid-role { font-size: 0.8rem; font-weight: 600; color: white; background: #000; display: inline-block; padding: 0.2rem 0.5rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem;}
        @media (max-width: 992px) { .speakers-grid-layout { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 576px) { 
            .as-quote { font-size: 1.2rem; line-height: 1.4; padding: 0 1rem; text-align: center; } 
            .speakers-grid-layout { grid-template-columns: 1fr; } 
        }
        /* Section Headings */
        .section-heading { text-align: center; font-size: 2rem; margin-bottom: 4rem; color: white; font-weight: 600; }

        /* About TEDxSJCC 3.0 Editorial Section */
        .about-sjcc-section { background-color: transparent; padding: 8rem 0 4rem 0; position: relative; overflow: hidden; }
        .as-bg-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
        .as-grid { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(235, 0, 40, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(235, 0, 40, 0.05) 1px, transparent 1px); background-size: 50px 50px; }
        .as-red-glow { position: absolute; top: 20%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(235,0,40,0.15) 0%, rgba(0,0,0,0) 70%); border-radius: 50%; filter: blur(60px); }
        .as-header { text-align: center; margin-bottom: 2rem; }
        .as-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 4.5vw, 6rem); font-weight: 900; color: white; letter-spacing: -2px; line-height: 1.1; margin-bottom: 0; text-transform: uppercase; display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: clamp(0.5rem, 2vw, 2rem); white-space: nowrap; }
        .as-title-logo { height: 2.2em; width: auto; max-width: 50vw; object-fit: contain; }
        
        .as-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 2rem auto 2rem auto; padding: 0 2rem; align-items: stretch; position: relative; z-index: 10; }
        .as-quote-wrapper { position: relative; margin-top: -180px; }
        .as-quote { font-family: var(--font-heading); font-size: clamp(2rem, 3vw, 3rem); font-weight: 700; color: white; line-height: 1.2; font-style: italic; letter-spacing: -1px; }
        .as-quote::before { content: '"'; position: absolute; top: -2rem; left: -2rem; font-size: 6rem; color: var(--ted-red); opacity: 0.2; font-family: serif; line-height: 1; }
        .as-story { font-family: var(--font-body); font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.8; font-weight: 300; display: flex; flex-direction: column; justify-content: space-between; }
        .as-story p { margin-bottom: 1.5rem; }
        
        .as-banner-wrapper { width: 100%; max-width: 1400px; margin: 0 auto 0 auto; text-align: center; }
        .as-banner-wrapper img { width: 100%; border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); filter: contrast(1.1) drop-shadow(0 0 30px rgba(235, 0, 40, 0.2)); }
        
        .as-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
        .as-stat-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0.5rem; border-radius: 12px; text-align: center; backdrop-filter: blur(10px); transition: transform 0.3s, background 0.3s; }
        .as-stat-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.05); border-color: var(--ted-red); }
        .as-stat-number { font-size: 2.2rem; font-weight: 900; color: var(--ted-red); font-family: var(--font-heading); line-height: 1; margin-bottom: 0.5rem; }
        .as-stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); font-weight: 600; }
        
        .as-closing { font-size: 1.5rem; font-weight: 300; color: white; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
        .as-closing span { color: var(--ted-red); font-weight: 600; }

        @media (max-width: 992px) {
            .as-content-grid { grid-template-columns: 1fr; gap: 3rem; }
            .as-stats-grid { grid-template-columns: repeat(2, 1fr); }
            .as-quote-wrapper { margin-top: -100px; }
            .as-quote::before { left: -1rem; top: -1.5rem; }
        }
        @media (max-width: 576px) {
            .as-stats-grid { grid-template-columns: 1fr; }
            .as-quote-wrapper { margin-top: -60px; }
        }


        /* Team */
        .team-section { padding: var(--spacing-xl) 0; }
        .team-carousel { display: flex; align-items: center; gap: 1.5rem; justify-content: center; margin-top: 2rem; }
        .team-card { background: var(--bg-secondary); border: 1px solid var(--ted-red); border-radius: var(--radius-md); padding: 1.5rem 1rem; width: 180px; display: flex; flex-direction: column; align-items: center; }
        .team-avatar { width: 100%; aspect-ratio: 1; background: #222; border-radius: var(--radius-sm); margin-bottom: 1.5rem; object-fit: cover; }
        .team-member-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; color: white; text-align: center; }
        .team-member-role { color: var(--ted-red); font-size: 0.75rem; margin-bottom: 1.5rem; text-transform: uppercase; text-align: center; font-weight: 500; }
        .team-socials { display: flex; gap: 1rem; }
        .team-socials a { color: var(--text-secondary); font-size: 1.2rem; transition: color 0.3s; }
        .team-socials a:hover { color: white; }
        .carousel-arrow { color: var(--text-secondary); font-size: 1.5rem; cursor: pointer; transition: color 0.3s; }
        .carousel-arrow:hover { color: white; }

        /* Sponsors */
        .sponsors-section { padding: var(--spacing-xl) 0; }
        .sponsors-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 3rem; align-items: center; justify-items: center; margin-top: 3rem; }
        .sponsor-logo { width: 100%; max-width: 120px; filter: grayscale(100%) brightness(200%); opacity: 0.6; transition: opacity 0.3s; }
        .sponsor-logo:hover { opacity: 1; }

        /* Cinematic Footer Centered Red Glow Layout */
        .cinematic-footer { position: relative; background-color: #000000; background-image: url('../images/new%20footer.png'); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 6rem 0 3rem 0; overflow: hidden; color: white; font-family: var(--font-body); margin-top: 0; border-top: none; }
        .cf-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, #000000 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.8) 100%); z-index: 1; pointer-events: none; }
        .cf-content { position: relative; z-index: 2; display: flex; flex-direction: column; }
        .cf-top-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 1rem; max-width: 1200px; width: 100%; margin-left: auto; margin-right: auto; padding: 0 2rem; }
        .cf-label { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; letter-spacing: 1px; color: white; font-family: var(--font-heading); }
        .cf-value, .cf-socials a { font-size: 0.8rem; color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: color 0.3s; display: flex; align-items: center; }
        .cf-value:hover, .cf-socials a:hover { color: white; }
        .cf-socials { display: flex; gap: 1.5rem; flex-wrap: wrap; }
        
        .cf-nav-links { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1.5rem; margin-bottom: 3rem; max-width: 1200px; width: 100%; margin-left: auto; margin-right: auto; padding-left: 2rem; padding-right: 2rem; }
        .cf-nav-links a { color: white; text-transform: lowercase; text-decoration: none; font-size: 0.9rem; font-weight: 500; font-family: var(--font-body); transition: color 0.3s; }
        .cf-nav-links a:hover { color: var(--ted-red); }
        
        .cf-giant-logo-container { padding: 0 2rem; margin-bottom: 2rem; max-width: 1200px; width: 100%; margin-left: auto; margin-right: auto; text-align: center; }
        .cf-giant-logo { width: 100%; max-width: 800px; height: auto; display: inline-block; }
        
        .cf-bottom-bar { display: flex; justify-content: space-between; align-items: center; gap: 0; font-size: 0.65rem; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.5rem; max-width: 1200px; width: 100%; margin-left: auto; margin-right: auto; padding: 0 2rem; font-family: var(--font-body); letter-spacing: 0.5px; border-top: none; }
        @media (max-width: 768px) { 
            .cinematic-footer { padding: 4rem 0 2rem 0; }
            .as-quote { font-size: 1.5rem; line-height: 1.3; text-align: center; } 
            .cf-top-grid { grid-template-columns: 1fr; gap: 1.2rem; margin-bottom: 1.5rem; text-align: center; padding: 0 1.5rem; } 
            .cf-value { justify-content: center; }
            .cf-socials { justify-content: center; gap: 1rem; } 
            .cf-nav-links { display: none; } 
            .cf-giant-logo-container { padding: 0 1.5rem; margin-bottom: 2rem; }
            .cf-bottom-bar { flex-direction: column; align-items: center; gap: 1rem; text-align: center; } 
        }
        @media (max-width: 992px) {
            .hero { justify-content: center; align-items: center; padding-top: 100px; }
            .hero-content { margin-right: 0; text-align: center; padding: 1rem; }
            .hero-logo { justify-content: center; flex-direction: column; align-items: center; }
            .hero-logo .sjcc { margin-left: 0; }
            .hero-tagline::before { left: 50%; transform: translateX(-50%); }
            .hero-buttons { justify-content: center; }
            .about-grid, .event-grid, .blog-grid { flex-direction: column; text-align: center; }
            .about-img-container, .blog-right { justify-content: center; margin-top: 3rem; }
            .event-graphic { margin: 0 auto; }
            .sponsors-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-socials { justify-content: center; }
            .team-carousel { flex-wrap: wrap; }
            .carousel-arrow { display: none; }
            .team-card:nth-child(n+5) { display: none; }
        }
