        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #2D7A3E;
            --forest-green: #1B5E20;
            --light-green: #E8F5E9;
            --lime-green: #7CB342;
            --teal: #00897B;
            --orange: #FF6F00;
            --red: #D32F2F;
            --light-red: #FFEBEE;
            --light-orange: #FFE0B2;
            --dark-text: #1A1A1A;
            --gray-text: #5A5A5A;
            --light-gray: #FAFAFA;
            --white: #FFFFFF;
            --border-color: #E0E0E0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            background: var(--white);
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-padding-top: 80px;}
			

        /* Demo Mode Toggle */
        .demo-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1001;
            background: var(--primary-green);
            color: var(--white);
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }

        .demo-toggle:hover {
            background: var(--forest-green);
            transform: translateY(-2px);
        }

        .demo-toggle.active {
            background: var(--red);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 1);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.8rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-green);
            letter-spacing: -0.5px;
        }
		
        .logo img {
            height: 75px !important;
        }

        .logo span {
            color: var(--teal);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-green);
        }

        /* Hero Section */
        .hero {
            padding: 140px 5% 80px;
            background: var(--light-green);
            position: relative;
        }

        .hero-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1.5px;
            color: var(--dark-text);
        }

        .hero h1 .highlight {
            color: var(--primary-green);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--gray-text);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .stat-box {
            background: var(--white);
            padding: 1.2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-green);
        }

        .stat-label {
            color: var(--gray-text);
            margin-top: 0.3rem;
            font-size: 0.9rem;
        }

        .countdown-widget {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }

        .countdown-title {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: var(--primary-green);
            font-weight: 600;
        }

        .countdown-display {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.8rem;
        }

        .countdown-item {
            text-align: center;
            background: var(--light-green);
            padding: 0.8rem;
            border-radius: 8px;
        }

        .countdown-number {
            font-size: 1.8rem;
            font-weight: 800;
            display: block;
            color: var(--forest-green);
        }

        .countdown-label {
            font-size: 0.75rem;
            color: var(--gray-text);
            text-transform: uppercase;
            margin-top: 0.3rem;
            letter-spacing: 0.5px;
        }

        .status-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 1rem;
        }

        .status-badge.upcoming {
            background: var(--light-green);
            color: var(--forest-green);
        }

        .status-badge.live {
            background: var(--red);
            color: var(--white);
            animation: livePulse 2s infinite;
        }

        .status-badge.completed {
            background: var(--light-gray);
            color: var(--gray-text);
        }

        @keyframes livePulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .cta-group {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .btn-primary {
            padding: 14px 32px;
            background: var(--primary-green);
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .btn-primary:hover {
            background: var(--forest-green);
            transform: translateY(-1px);
        }

        .btn-secondary {
            padding: 14px 32px;
            background: var(--white);
            color: var(--primary-green);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            border: 1px solid var(--primary-green);
            display: inline-block;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .btn-secondary:hover {
            background: var(--light-green);
        }

        /* Section Styling */
        section {
            padding: 80px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
            letter-spacing: -1px;
            color: var(--dark-text);
        }

        h2 .highlight {
            color: var(--primary-green);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-text);
            margin-bottom: 3rem;
        }

        /* Topics */
        .topics-filter {
            display: flex;
            gap: 0.8rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-btn {
            padding: 10px 20px;
            background: var(--white);
            border: 1px solid var(--border-color);
            color: var(--dark-text);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-green);
            color: var(--white);
            border-color: var(--primary-green);
        }

        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .topic-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s;
            cursor: pointer;
        }

        .topic-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary-green);
            box-shadow: 0 8px 24px rgba(45, 122, 62, 0.12);
        }

        .topic-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .topic-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--primary-green);
            font-weight: 700;
        }

        .topic-card p {
            color: var(--gray-text);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Programme */
        .schedule-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2.5rem;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .day-tabs {
            display: flex;
            gap: 0.5rem;
            background: var(--white);
            padding: 0.4rem;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }

        .day-tab {
            padding: 10px 24px;
            background: transparent;
            border: none;
            color: var(--dark-text);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .day-tab.active {
            background: var(--primary-green);
            color: var(--white);
        }

        .schedule-search {
            position: relative;
            flex: 1;
            max-width: 280px;
        }

        .schedule-search input {
            width: 100%;
            padding: 10px 16px 10px 40px;
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--dark-text);
            font-size: 0.9rem;
        }

        .schedule-search input:focus {
            outline: none;
            border-color: var(--primary-green);
        }

        .schedule-search::before {
            content: '🔍';
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.9rem;
        }

        .session-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.2rem;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }

        .session-card:hover {
            border-color: var(--primary-green);
            box-shadow: 0 4px 16px rgba(45, 122, 62, 0.1);
        }

        /* PAST SESSION - Greyed out */
        .session-card.past {
            opacity: 0.5;
            background: var(--light-gray);
            border-color: #D0D0D0;
        }

        .session-card.past:hover {
            opacity: 0.6;
        }

        .session-card.past .session-time {
            color: var(--gray-text);
        }

        .session-card.past h3 {
            color: var(--gray-text);
        }

        /* LIVE SESSION - Highlighted with red */
        .session-card.live {
            border-color: var(--red);
            border-width: 2px;
            background: var(--light-red);
            box-shadow: 0 4px 20px rgba(211, 47, 47, 0.25);
        }

        .session-card.live::before {
            content: '';
            position: absolute;
            left: -1px;
            top: 0;
            bottom: 0;
            width: 5px;
            background: var(--red);
            border-radius: 12px 0 0 12px;
            animation: livePulse 2s infinite;
        }

        .session-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .session-time {
            font-size: 1rem;
            font-weight: 700;
            color: var(--forest-green);
        }

        .session-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .session-tag {
            padding: 4px 12px;
            background: var(--light-orange);
            color: var(--orange);
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .session-tag.keynote {
            background: var(--light-green);
            color: var(--forest-green);
        }

        .session-tag.live-tag {
            background: var(--red);
            color: var(--white);
            animation: livePulse 2s infinite;
            font-weight: 700;
            padding: 5px 14px;
        }

        .session-tag.past-tag {
            background: #E0E0E0;
            color: #757575;
        }

        .session-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--dark-text);
            font-weight: 700;
        }

        .session-speaker {
            color: var(--gray-text);
            font-style: italic;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .session-description {
            color: var(--gray-text);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Speakers */
        .speakers-carousel {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .speaker-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.8rem;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .speaker-card:hover {
            transform: translateY(-6px);
            border-color: var(--primary-green);
            box-shadow: 0 8px 24px rgba(45, 122, 62, 0.15);
        }

        .speaker-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 1.2rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-green), var(--lime-green));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--white);
            border: 3px solid var(--light-green);
        }

        .speaker-card h3 {
            color: var(--dark-text);
            margin-bottom: 0.4rem;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .speaker-role {
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 0.4rem;
            font-size: 0.9rem;
        }

        .speaker-affiliation {
            color: var(--gray-text);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Other sections simplified */
        .cfp-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 3rem;
        }

        .cfp-info-box {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            margin-bottom: 1.5rem;
        }

        .cfp-info-box h4 {
            color: var(--primary-green);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .cfp-info-box ul {
            list-style: none;
            line-height: 1.8;
        }

        .cfp-info-box ul li::before {
            content: '→';
            color: var(--lime-green);
            font-weight: bold;
            margin-right: 8px;
        }

        .deadline-timeline {
            position: relative;
            padding-left: 1.8rem;
        }

        .deadline-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary-green);
        }

        .deadline-event {
            position: relative;
            margin-bottom: 1.5rem;
            padding: 1.2rem;
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .deadline-event::before {
            content: '';
            position: absolute;
            left: -2.4rem;
            top: 1.5rem;
            width: 12px;
            height: 12px;
            background: var(--primary-green);
            border-radius: 50%;
            border: 2px solid var(--white);
            box-shadow: 0 0 0 1px var(--primary-green);
        }

        .deadline-date {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 0.4rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .pricing-card {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }

        .pricing-card.featured {
            border-color: var(--primary-green);
            transform: scale(1.03);
        }

        .pricing-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-green);
            color: var(--white);
            padding: 4px 16px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.75rem;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary-green);
        }

        .pricing-card.featured:hover {
            transform: scale(1.03) translateY(-4px);
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-green);
            margin: 1rem 0;
        }

        .features-list {
            list-style: none;
            margin: 1.5rem 0;
            text-align: left;
        }

        .features-list li {
            padding: 0.8rem;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            padding-left: 1.8rem;
            color: var(--gray-text);
            font-size: 0.9rem;
        }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--lime-green);
            font-weight: 800;
        }

        /* Venue simplified */
        .venue-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
        }

        .venue-info-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 2rem;
        }

        .venue-info-card h3 {
            font-size: 1.5rem;
            color: var(--primary-green);
            margin-bottom: 1.2rem;
            font-weight: 700;
        }

        .info-item {
            margin-bottom: 1.2rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .info-item::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--lime-green);
            font-weight: 800;
        }

        .info-item strong {
            color: var(--dark-text);
            font-weight: 600;
        }

        .info-item p {
            color: var(--gray-text);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .interactive-map {
            background: var(--light-green);
            border: 1px solid var(--primary-green);
            border-radius: 12px;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
        }

        .interactive-map:hover {
            transform: scale(1.01);
        }

        .map-pulse {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary-green);
            opacity: 0.3;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.1;
            }
            100% {
                transform: scale(1);
                opacity: 0.3;
            }
        }

        /* Footer */
        footer {
            background: var(--light-gray);
            padding: 3rem 5%;
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin: 1.5rem 0;
        }

        .footer-links a {
            color: var(--gray-text);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--primary-green);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2.5rem;
            max-width: 650px;
            width: 90%;
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
        }

        .modal-close {
            position: absolute;
            top: 1.2rem;
            right: 1.2rem;
            background: none;
            border: none;
            color: var(--gray-text);
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: var(--primary-green);
        }

        /* Scroll Progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: var(--primary-green);
            z-index: 2000;
            transition: width 0.1s;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-grid,
            .cfp-container,
            .venue-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .nav-links {
                display: none;
            }

            .countdown-display {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-card.featured {
                transform: scale(1);
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.5s ease;
        }

        /* Interactive elements */
        .interactive-hover {
            transition: all 0.3s;
        }

        .interactive-hover:hover {
            transform: scale(1.02);
        }
    
        /* Background Particle Animation - Enhanced */
        .hero {
            position: relative;
            overflow: hidden;
        }

        .particle-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: auto;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            transition: transform 0.3s ease-out;
            cursor: pointer;
        }

        .gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            background: linear-gradient(
                135deg,
                rgba(45, 122, 62, 0.05) 0%,
                rgba(0, 137, 123, 0.05) 50%,
                rgba(124, 179, 66, 0.05) 100%
            );
            animation: gradientShift 8s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% {
                background: linear-gradient(
                    135deg,
                    rgba(45, 122, 62, 0.05) 0%,
                    rgba(0, 137, 123, 0.05) 50%,
                    rgba(124, 179, 66, 0.05) 100%
                );
            }
            50% {
                background: linear-gradient(
                    135deg,
                    rgba(124, 179, 66, 0.05) 0%,
                    rgba(45, 122, 62, 0.05) 50%,
                    rgba(0, 137, 123, 0.05) 100%
                );
            }
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            pointer-events: auto;
        }

        /* Add to Calendar button */
        .calendar-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 1rem;
            padding: 10px 20px;
            background: var(--white);
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            cursor: pointer;
        }

        .calendar-link:hover {
            background: var(--primary-green);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(45, 122, 62, 0.3);
        }

        .calendar-link::before {
            content: "📅";
            font-size: 1.1rem;
        }

        /* OpenStreetMap Styling */
        #venueMap {
            height: 450px;
            border-radius: 12px;
            border: 2px solid var(--primary-green);
            z-index: 1;
        }

        .leaflet-popup-content-wrapper {
            border-radius: 8px;
        }

        .leaflet-popup-content {
            margin: 12px;
            font-family: inherit;
        }

        .leaflet-popup-content h4 {
            color: var(--primary-green);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 1rem 3%;
            }

            .nav-links {
                gap: 1.5rem;
            }

            .nav-links a {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 1.5rem;
            }

            .logo img {
                height: 50px !important;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 6rem 5% 3rem;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero h1 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .cta-group {
                flex-direction: column;
                gap: 1rem;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .countdown-widget {
                padding: 1.5rem;
            }

            .countdown-display {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .countdown-number {
                font-size: 2rem;
            }

            .section-content {
                padding: 3rem 5%;
            }

            .info-grid, .venue-grid {
                grid-template-columns: 1fr;
            }

            .topics-grid {
                grid-template-columns: 1fr;
            }

            .timeline {
                padding-left: 1.5rem;
            }

            .timeline-item::before {
                left: -1.5rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .calendar-link {
                width: 100%;
                justify-content: center;
            }

            #venueMap {
                height: 300px;
            }

            /* Modal mobile responsiveness */
            .modal-content {
                max-width: 90%;
                width: 90%;
                padding: 1.5rem;
                margin: 1rem;
                max-height: 90vh;
                overflow-y: auto;
            }

            .modal h2 {
                font-size: 1.5rem;
            }

            .modal p, .modal li {
                font-size: 0.95rem;
            }

            .modal-close {
                top: 0.8rem;
                right: 0.8rem;
                font-size: 1.5rem;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .logo img {
                height: 38px !important;
                margin-right: 3px !important;
            }

            .hero h1 {
                font-size: 1.75rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .countdown-number {
                font-size: 1.75rem;
            }

            .countdown-label {
                font-size: 0.8rem;
            }

            .demo-toggle {
                bottom: 10px;
                right: 10px;
                padding: 10px 16px;
                font-size: 0.9rem;
            }

            #venueMap {
                height: 250px;
            }

            /* Modal extra small mobile */
            .modal-content {
                max-width: 95%;
                width: 95%;
                padding: 1.2rem;
                margin: 0.5rem;
            }

            .modal h2 {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }

            .modal p, .modal li {
                font-size: 0.9rem;
            }
        }

        .btn-primary, .btn-secondary, .calendar-link, .demo-toggle {
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        @media (max-width: 768px) {
            .particle-background {
                pointer-events: auto;
            }
        }


        /* Fix header overlap when scrolling to anchors */
        section {
            scroll-margin-top: 80px;
        }

        /* Mobile Burger Menu */
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 5px;
            margin-left: auto;
        }

        .burger-line {
            width: 25px;
            height: 3px;
            background: var(--primary-green);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
        }

        .mobile-nav-overlay.active {
            display: block;
        }

        .mobile-nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            max-width: 300px;
            height: 100%;
            background: var(--white);
            z-index: 1001;
            padding: 80px 2rem 2rem;
            box-shadow: -4px 0 12px rgba(0,0,0,0.1);
            transition: right 0.3s ease;
        }

        .mobile-nav-menu.active {
            right: 0;
        }

        .mobile-nav-menu ul {
            list-style: none;
            padding: 0;
        }

        .mobile-nav-menu ul li {
            margin-bottom: 1.5rem;
        }

        .mobile-nav-menu ul li a {
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .mobile-nav-menu ul li a:hover {
            color: var(--primary-green);
        }

        @media (max-width: 1024px) {
            .burger-menu {
                display: flex;
            }

            .nav-links {
                display: none;
            }
        }


        /* ===== ENHANCED INTERACTIVITY & ANIMATIONS ===== */
        html { scroll-behavior: smooth; }

        #game-score {
            position: absolute; bottom: 5px; right: 30px;
            background: rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.8);
            padding: 5px 20px; border-radius: 8px; font-size: 0.85rem;
            z-index: 10; backdrop-filter: blur(10px);
            transition: all 0.3s ease; font-weight: 500;
			color: var(--gray-text);
        }
        #game-score:hover { background: rgba(255, 255, 255, 0.25); color: color: var(--gray-text);; }

        #game-score .score-number {
            font-size: 1.2rem; display: inline-block;
            margin-left: 5px; color: rgba(255, 215, 0, 0.9);
        }
        #restart-game {
            margin-left: 15px; padding: 5px 12px;
            background: rgba(255, 255, 255, 0.2); color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px; cursor: pointer; font-size: 0.75rem;
            transition: all 0.3s ease;
			color: var(--gray-text);
        }
        #restart-game:hover { background: rgba(255, 255, 255, 0.3); }

        nav ul li a { position: relative; display: inline-block; }
        nav ul li a::after {
            content: ''; position: absolute; bottom: -5px; left: 0;
            width: 0; height: 2px; background: var(--lime-green);
            transition: width 0.3s ease;
        }
        nav ul li a:hover::after, nav ul li a:focus::after { width: 100%; }

        .text-highlight {
            background: linear-gradient(to bottom, transparent 60%, rgba(124, 179, 66, 0.3) 60%, rgba(124, 179, 66, 0.3) 95%, transparent 95%);
            padding: 0 2px;
        }

        .scroll-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

        .btn { position: relative; overflow: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
        .btn::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;
        }
        .btn:hover::before { width: 300px; height: 300px; }
        .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }
        .btn:active { transform: translateY(0); }

        .kinetic-gradient {
            background: linear-gradient(90deg, currentColor, rgba(255, 255, 255, 0.9), currentColor);
            background-size: 200% auto; -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; background-clip: text;
            animation: gradientSlide 3s linear infinite;
        }
        @keyframes gradientSlide { 0% { background-position: 0%; } 100% { background-position: 200%; } }

        .pricing-card { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
        .pricing-comparison:hover .pricing-card:not(:hover) { opacity: 0.6; transform: scale(0.97); }
        .pricing-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 12px 35px rgba(45, 122, 62, 0.25); }

        .topic-card, .speaker-card { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
        .topic-card:hover, .speaker-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(45, 122, 62, 0.2); }
        .timeline-item { transition: all 0.3s ease; }
        .timeline-item:hover { transform: translateX(5px); }
        .schedule-card { transition: all 0.3s ease; }
        .schedule-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(45, 122, 62, 0.15); }

    
        /* CFP Wrapper */
        .cfp-wrapper {
            transition: opacity 0.3s;
        }
        .cfp-wrapper.hidden {
            display: none;
        }

        /* Live Board Mode - Clean Redesign */
        body.live-board-mode {
            overflow: hidden;
            background: var(--white);
        }

		/* Anti-burn-in animation */
		@keyframes antiBurnShift {
		  0%, 100% { transform: translate(0, 0); }
		  33% { transform: translate(0.2px, 0); }
		  66% { transform: translate(0, 0.15px); }
		}

		body.live-board-mode .lb-session-title,
		body.live-board-mode .lb-title,
		body.live-board-mode .lb-timeline-title,
		body.live-board-mode .lb-header-horiz,
		body.live-board-mode .lb-date {
		  animation: antiBurnShift 180s infinite ease-in-out;
		  will-change: transform;
		}

		@keyframes antiBurnShiftRotated {
		  0%, 100% { 
			transform: translate(0, 0) rotate(180deg); 
		  }
		  33% { 
			transform: translate(0.2px, 0) rotate(180deg); 
		  }
		  66% { 
			transform: translate(0, 0.15px) rotate(180deg); 
		  }
		}

		body.live-board-mode .lb-header-vert {
		  animation: antiBurnShiftRotated 180s infinite ease-in-out;
		  will-change: transform;
		}
		
		.lb-current {
		  transition: opacity 0.5s ease-in-out;
		}

		.lb-current.fading {
		  opacity: 0.3;
		}



        
        /* Slide Animations for Content Switching */
        @keyframes slideOutLeft {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(-100%);
                opacity: 0;
            }
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .lb-slide-out-left {
            animation: slideOutLeft 0.6s ease-in-out forwards;
        }

        .lb-slide-in-right {
            animation: slideInRight 0.6s ease-in-out forwards;
        }

        /* Ensure animation container doesn't overflow */
        body.live-board-mode .lb-current {
            overflow: hidden;
            position: relative;
        }

        body.live-board-mode #lbContent,
        body.live-board-mode #lbNextPreview {
            position: relative;
            width: 100%;
        }

        /* Hide everything except hero and programme */
        body.live-board-mode nav,
        body.live-board-mode .demo-toggle,
        body.live-board-mode #cfp-wrapper,
        body.live-board-mode #about,
        body.live-board-mode #speakers,
		body.live-board-mode #committee,
		body.live-board-mode #organisation-committee,
		body.live-board-mode #gallery,
        body.live-board-mode #registration,
        body.live-board-mode #venue,
		body.live-board-mode #accommodation,
		body.live-board-mode #visa,
        body.live-board-mode footer {
            display: none !important;
        }

        /* Hero section in live board mode */
        body.live-board-mode .hero {
            padding: 20px;
            min-height: auto;
            background: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        body.live-board-mode .hero > * {
            display: none;
        }

        body.live-board-mode .hero .logo-container {
            display: flex !important;
            justify-content: center;
            width: 100%;
        }

        /* Programme section */
        body.live-board-mode #programme {
            padding: 0;
            margin: 0;
            background: var(--white);
            display: block !important;
        }

        body.live-board-mode #programme > *:not(#liveBoardContent) {
            display: none !important;
        }

        /* Live Board Main Container */
        #liveBoardContent {
            display: none;
            padding: 30px;
            max-width: 1600px;
            margin: 0 auto;
            height: calc(100vh - 150px);
            overflow: hidden;
        }

        body.live-board-mode #liveBoardContent {
            display: block;
        }

        /* Current Session Box */
        .lb-current-session {
            background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
            border: 3px solid var(--teal);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 30px;
            position: relative;
            box-shadow: 0 8px 24px rgba(0,137,123,0.3);
            min-height: 300px;
        }
		
		.lb-next-preview {
		  text-align: center;
		  padding: 40px 20px;
		}
		.lb-next-badge {
		  position: absolute; top: 25px; right: 25px;
		  background: var(--lime-green); color: white; padding: 8px 16px;
		  border-radius: 20px; font-weight: 700; font-size: 0.85rem;
		}
		.lb-next-time-slot { font-size: 1.1rem; color: var(--forest-green); font-weight: 700; margin-bottom: 12px; }
		.lb-next-title { font-size: 1.7rem; font-weight: 800; color: var(--dark-text); margin-bottom: 10px; line-height: 1.2; }
		.lb-next-speaker { font-size: 1.05rem; color: #6c757d; font-style: italic; }


        .lb-live-badge {
            position: absolute;
            top: 20px;
            right: 30px;
            background: var(--red);
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 1.1rem;
            animation: livePulse 2s infinite;
        }

        @keyframes livePulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.85; transform: scale(1.05); }
        }

        .lb-session-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 15px;
            line-height: 1.2;
            padding-right: 150px;
        }

        .lb-session-speaker {
            font-size: 1.4rem;
            color: var(--gray-text);
            font-style: italic;
            margin-bottom: 10px;
        }

        .lb-session-time {
            font-size: 1.1rem;
            color: var(--forest-green);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .lb-session-content {
            font-size: 1.15rem;
            color: var(--gray-text);
            line-height: 1.7;
            margin-top: 20px;
        }

        .lb-session-content h4 {
            color: var(--primary-green);
            font-size: 1.3rem;
            margin: 20px 0 10px 0;
            font-weight: 700;
        }

        .lb-session-content ul {
            padding-left: 25px;
            line-height: 1.8;
        }

        .lb-progress-container {
            margin-top: 25px;
        }

        .lb-progress-bar {
            height: 10px;
            background: rgba(45,122,62,0.2);
            border-radius: 5px;
            overflow: hidden;
        }

        .lb-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--lime-green), var(--teal));
            transition: width 1s linear;
            box-shadow: 0 0 10px rgba(124,179,66,0.5);
        }

        .lb-progress-text {
            margin-top: 8px;
            text-align: right;
            font-size: 0.9rem;
            color: var(--gray-text);
        }

        /* Timeline Container */
        .lb-timeline-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            height: calc(100vh - 600px);
        }

        .lb-timeline-section {
            background: var(--light-gray);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .lb-timeline-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 15px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-green);
            flex-shrink: 0;
        }

        .lb-timeline-scroll {
            flex: 1;
            overflow: hidden;
            position: relative;
            mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
        }

        .lb-timeline-track {
            animation: scrollDown 40s linear infinite;
        }

        .lb-timeline-track.reverse {
            animation: scrollUp 40s linear infinite;
        }

        @keyframes scrollDown {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        @keyframes scrollUp {
            0% { transform: translateY(-50%); }
            100% { transform: translateY(0); }
        }

        .lb-timeline-scroll:hover .lb-timeline-track {
            animation-play-state: paused;
        }

        /* Timeline Session Card */
        .lb-timeline-session {
            background: var(--white);
            border-radius: 10px;
            padding: 15px 20px;
            margin-bottom: 12px;
            border-left: 4px solid var(--teal);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .lb-timeline-session:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .lb-timeline-session.completed {
            opacity: 0.65;
            border-left-color: var(--gray-text);
            background: rgba(250,250,250,0.8);
        }

        .lb-timeline-session.next {
            border-left-color: var(--lime-green);
            background: var(--light-green);
            border-left-width: 5px;
        }

        .lb-timeline-session-time {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--forest-green);
            margin-bottom: 8px;
        }

        .lb-timeline-session.completed .lb-timeline-session-time {
            color: var(--gray-text);
        }

        .lb-timeline-session.completed .lb-timeline-session-time::after {
            content: " ✓";
            color: var(--lime-green);
            margin-left: 5px;
        }

        .lb-timeline-session.next .lb-timeline-session-time::before {
            content: "▶ ";
            color: var(--lime-green);
        }

        .lb-timeline-session-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .lb-timeline-session.completed .lb-timeline-session-title {
            color: var(--gray-text);
        }

        .lb-timeline-session-speaker {
            font-size: 0.9rem;
            color: var(--gray-text);
            font-style: italic;
        }

        /* Regular session status updates */
        .session-progress {
            height: 4px;
            background: var(--light-green);
            border-radius: 2px;
            margin-top: 8px;
            overflow: hidden;
            display: none;
        }

        .session-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--lime-green), var(--teal));
            width: 0%;
            transition: width 1s linear;
        }

        .session-card.live .session-progress {
            display: block;
        }

        .session-card.live {
            border-left: 4px solid var(--teal);
            background: linear-gradient(135deg, #E8F5E9 0%, #FFFFFF 100%);
            box-shadow: 0 6px 20px rgba(0,137,123,0.2);
        }

        .session-card.completed {
            opacity: 0.6;
        }

        .session-status.live {
            color: var(--teal);
            font-weight: 700;
            animation: pulse 2s infinite;
        }

        .session-status.live::before {
            content: "● ";
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        /* ===== LIVE BOARD - CLEAN & FIXED ===== */
        body.live-board-mode { overflow: hidden; background: #f5f7fa; }
        body.live-board-mode nav, body.live-board-mode .demo-toggle, body.live-board-mode #cfp-wrapper,
        body.live-board-mode #about, body.live-board-mode #speakers, body.live-board-mode #registration,
        body.live-board-mode #venue, body.live-board-mode #sponsors, body.live-board-mode footer { display: none !important; }
        body.live-board-mode .hero { padding: 0; min-height: 100vh; background: #f5f7fa; display: flex; flex-direction: column; }
        body.live-board-mode .hero > * { display: none; }
        body.live-board-mode .hero .logo-container { display: block !important; }
        body.live-board-mode #programme { padding: 0; margin: 0; background: #f5f7fa; display: flex !important; flex-direction: column; flex: 1; }
        body.live-board-mode #programme > *:not(#liveBoardContent) { display: none !important; }
        #liveBoardContent { display: none; height: 100vh; background: #f5f7fa; flex-direction: column; }
        body.live-board-mode #liveBoardContent { display: flex; }

        /* Top Bar - FIXED */
        .lb-top-bar { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.08); border-bottom: 3px solid var(--primary-green); }
        .lb-logo { height: 60px; }
        .lb-datetime { text-align: right; }
        .lb-day { font-size: 0.9rem; color: #6c757d; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; }
        .lb-date { font-size: 2rem; font-weight: 800; color: var(--primary-green); margin-bottom: 4px; line-height: 1; }
        .lb-time { font-size: 1.1rem; color: #495057; font-weight: 500; }

        /* Current Event - FIXED */
        .lb-current-wrapper { padding: 30px 40px 20px 40px; }
        .lb-current { background: white; border-radius: 12px; padding: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); border-left: 5px solid var(--teal); position: relative; }
        .lb-live-badge { position: absolute; top: 25px; right: 25px; background: var(--red); color: white; padding: 10px 20px; border-radius: 20px; font-weight: 700; font-size: 0.9rem; display: none; align-items: center; gap: 8px; animation: livePulse 2s infinite; }
        .lb-live-badge.show { display: flex; }
        .lb-live-badge::before { content: ''; width: 10px; height: 10px; background: white; border-radius: 50%; animation: pulse 1.5s infinite; }
        @keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.9; } }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
        .lb-time-slot { font-size: 1.1rem; color: var(--forest-green); font-weight: 700; margin-bottom: 12px; }
        .lb-title { font-size: 1.9rem; font-weight: 800; color: var(--dark-text); margin-bottom: 10px; line-height: 1.2; padding-right: 150px; }
        .lb-speaker { font-size: 1.15rem; color: #6c757d; font-style: italic; margin-bottom: 15px; }
        .lb-desc { font-size: 1rem; color: #495057; line-height: 1.5; }
        .lb-progress-wrap { margin-top: 20px; padding-top: 20px; border-top: 2px solid #e9ecef; }
        .lb-progress-label { font-size: 0.9rem; color: #6c757d; margin-bottom: 8px; display: flex; justify-content: space-between; }
        .lb-progress-bar { height: 10px; background: #e9ecef; border-radius: 5px; overflow: hidden; }
        .lb-progress-fill { height: 100%; background: linear-gradient(90deg, var(--lime-green), var(--teal)); transition: width 1s; }
        .lb-no-session { text-align: center; padding: 40px; }
        .lb-no-icon { font-size: 3rem; margin-bottom: 15px; opacity: 0.3; }
        .lb-no-text { font-size: 1.6rem; color: #6c757d; font-weight: 600; }

        /* Bottom Grid - FIXED */
        .lb-grid { display: grid; grid-template-columns: 2.2fr 1fr; gap: 25px; padding: 0 40px 40px 40px; flex: 1; overflow: hidden; }
        .lb-col { background: white; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); display: flex; overflow: hidden; }
        .lb-col-horiz { flex-direction: row; }
        .lb-col-vert { flex-direction: column; min-width: 400px; max-width: 400px; }
        .lb-header-vert { writing-mode: vertical-rl; transform: rotate(180deg); padding: 25px 18px; background: linear-gradient(180deg, var(--primary-green), var(--teal)); color: white; font-size: 1.2rem; font-weight: 800; text-align: center; text-transform: uppercase; letter-spacing: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .lb-header-horiz { padding: 16px; background: linear-gradient(135deg, var(--primary-green), var(--teal)); color: white; font-size: 1.1rem; font-weight: 700; text-align: center; text-transform: uppercase; flex-shrink: 0; }
        .lb-content { flex: 1; overflow: hidden; padding: 20px; }
        .lb-scroll { height: 100%; overflow: hidden; mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent); }
        .lb-track { animation: scrollDown 30s linear infinite; }
        @keyframes scrollDown { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lb-scroll:hover .lb-track { animation-play-state: paused; }
        .lb-item { background: #f8f9fa; padding: 14px 16px; margin-bottom: 10px; border-radius: 8px; border-left: 3px solid var(--teal); transition: all 0.3s; }
        .lb-item:hover { transform: translateX(3px); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
        .lb-item.next-up { border-left: 4px solid var(--lime-green); background: var(--light-green); }
        .lb-item.next-up .lb-item-time::before { content: '▶ '; color: var(--lime-green); }
        .lb-item-time { font-size: 0.9rem; font-weight: 700; color: var(--forest-green); margin-bottom: 6px; }
        .lb-item-title { font-size: 0.95rem; font-weight: 700; color: var(--dark-text); margin-bottom: 4px; line-height: 1.3; }
        .lb-item-speaker { font-size: 0.8rem; color: #6c757d; font-style: italic; }
        .lb-sponsors { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px 20px; position: relative; height: 100%; width: 150 px; overflow: hidden; }
        .lb-sponsor {
			opacity: 0;
			position: absolute;
			width: 100%;
			height: 100%;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			transition: opacity 0.8s;
			padding: 20px;
			box-sizing: border-box;
			left: 0;
			top: 0;
		}

		.lb-sponsor.active {
			opacity: 1;
			position: relative;  /* Keep this */
			width: 100%;
			min-height: 250px;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
		}

		/* Add this new rule to ensure proper positioning */
		.lb-sponsor.active .lb-sponsor-tier {
			position: absolute;
			top: 15px;
			right: 15px;
		}
		.lb-sponsor:not(.active) .lb-sponsor-tier {
			opacity: 0;
			visibility: hidden;
		}

		.lb-sponsor.active .lb-sponsor-tier {
			opacity: 1;
			visibility: visible;
		}
        .lb-sponsor-name { font-size: 1.3rem; font-weight: 700; color: var(--dark-text); margin-bottom: 10px; text-align: center; }
        .lb-sponsor-desc { font-size: 0.9rem; color: #6c757d; text-align: center; line-height: 1.4; }
        .lb-sponsor-tier { position: absolute; top: 15px; right: 15px; padding: 5px 12px; border-radius: 12px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
        .lb-sponsor-tier.platinum { background: linear-gradient(135deg, #E5E4E2, #C0C0C0); color: #2c5282; }
        .lb-sponsor-tier.partner { background: linear-gradient(135deg, #667eea, #764ba2); color: white; }
        .sponsor-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important; }

		/* Pictures */
		.speaker-avatar.has-photo {
			background-size: cover;
			background-repeat: no-repeat;
			font-size: 0; /* Hide initials when photo shows */
		}

		.speaker-avatar.buskens {			
			background-image: url('Pascal-Buskens.png');
			background-position: center 25%;
			background-size: 120%;
		}

		.speaker-avatar.degroot {
			background-image: url('Thijs-de-Groot.jpg');
			background-position: center 25%;
		}

		.speaker-avatar.depover {
			background-image: url('Tom-Depover.png');
			background-position: center 25%;
			background-size: 150%;
		}
		
		.speaker-avatar.eikerling {
			background-image: url('Michael-Eikerling.jpg');
			background-position: center 25%;
		}
				
		.speaker-avatar.hacker {
			background-image: url('Viktor-Hacker.jpg');
			background-position: center 25%;
		}
						
		.speaker-avatar.kafizas {
			background-image: url('Andreas-Kafizas.jpg');
			background-position: center 25%;
			background-size: 120%;
		}
								
		.speaker-avatar.schneiders {
			background-image: url('Jean-François-Schneiders.png');
			background-position: center 25%;
			background-size: 120%;
		}
										
		.speaker-avatar.zamel {
			background-image: url('Nada-Zamel.jpg');
			background-position: 48% 30%;
			background-size: 380%;
		}
												
		.speaker-avatar.zoric {
			background-image: url('Marija-Zoric.jpg');
			background-position: center 25%;
			background-size: 100%;
		}
		
		
		/* Gallery Section */
		.gallery-section {
			padding: 80px 5%;
			background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
		}

		.gallery-container {
			max-width: 1400px;
			margin: 0 auto;
		}

		.gallery-carousel {
			position: relative;
			overflow: hidden;
			border-radius: 16px;
			box-shadow: 0 8px 30px rgba(0,0,0,0.12);
			margin-bottom: 20px;
		}

		.gallery-main {
			position: relative;
			width: 100%;
			aspect-ratio: 21/9;
			max-height: 400px;
			overflow: hidden;
			background: var(--light-gray);
		}

		.gallery-slide {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			opacity: 0;
			transition: opacity 0.6s ease-in-out;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.gallery-slide.active {
			opacity: 1;
			z-index: 1;
		}

		.gallery-slide img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		.gallery-caption {
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
			color: white;
			padding: 30px 40px 20px;
			transform: translateY(100%);
			transition: transform 0.3s ease;
		}

		.gallery-slide.active .gallery-caption {
			transform: translateY(0);
		}

		.gallery-caption h4 {
			font-size: 1.4rem;
			font-weight: 700;
			margin-bottom: 8px;
		}

		.gallery-caption p {
			font-size: 0.95rem;
			opacity: 0.9;
		}

		.gallery-nav {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			z-index: 10;
			background: rgba(255,255,255,0.9);
			border: none;
			width: 50px;
			height: 50px;
			border-radius: 50%;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 1.5rem;
			color: var(--primary-green);
			transition: all 0.3s;
			box-shadow: 0 4px 12px rgba(0,0,0,0.15);
		}

		.gallery-nav:hover {
			background: var(--primary-green);
			color: white;
			transform: translateY(-50%) scale(1.1);
		}

		.gallery-prev {
			left: 20px;
		}

		.gallery-next {
			right: 20px;
		}

		.gallery-thumbnails {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
			gap: 15px;
			margin-top: 20px;
			max-height: 150px;
			overflow-x: auto;
			padding: 10px 0;
		}

		.gallery-thumb {
			aspect-ratio: 16/9;
			border-radius: 8px;
			overflow: hidden;
			cursor: pointer;
			border: 3px solid transparent;
			transition: all 0.3s;
			position: relative;
		}

		.gallery-thumb img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.3s;
		}

		.gallery-thumb:hover img {
			transform: scale(1.1);
		}

		.gallery-thumb.active {
			border-color: var(--primary-green);
			box-shadow: 0 4px 15px rgba(45, 122, 62, 0.4);
		}

		.gallery-thumb::after {
			content: '';
			position: absolute;
			inset: 0;
			background: rgba(45, 122, 62, 0.3);
			opacity: 0;
			transition: opacity 0.3s;
		}

		.gallery-thumb.active::after {
			opacity: 1;
		}

		.gallery-controls {
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 20px;
			margin-top: 20px;
		}

		.gallery-counter {
			font-size: 0.95rem;
			color: var(--gray-text);
			font-weight: 600;
		}

		.gallery-fullscreen {
			background: var(--primary-green);
			color: white;
			border: none;
			padding: 10px 20px;
			border-radius: 8px;
			cursor: pointer;
			font-weight: 600;
			transition: all 0.3s;
		}

		.gallery-fullscreen:hover {
			background: var(--forest-green);
			transform: translateY(-2px);
		}

		.gallery-autoplay {
			background: white;
			color: var(--primary-green);
			border: 2px solid var(--primary-green);
			padding: 10px 20px;
			border-radius: 8px;
			cursor: pointer;
			font-weight: 600;
			transition: all 0.3s;
		}

		.gallery-autoplay:hover {
			background: var(--light-green);
		}

		.gallery-autoplay.playing {
			background: var(--primary-green);
			color: white;
		}

		/* Fullscreen Modal */
		.gallery-fullscreen-modal {
			display: none;
			position: fixed;
			inset: 0;
			background: rgba(0,0,0,0.95);
			z-index: 3000;
			align-items: center;
			justify-content: center;
		}

		.gallery-fullscreen-modal.active {
			display: flex;
		}

		.gallery-fullscreen-content {
			position: relative;
			width: 90%;
			height: 90%;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.gallery-fullscreen-content img {
			max-width: 100%;
			max-height: 100%;
			object-fit: contain;
		}

		.gallery-fullscreen-close {
			position: absolute;
			top: 20px;
			right: 20px;
			background: rgba(255,255,255,0.2);
			color: white;
			border: none;
			width: 50px;
			height: 50px;
			border-radius: 50%;
			font-size: 2rem;
			cursor: pointer;
			transition: all 0.3s;
		}

		.gallery-fullscreen-close:hover {
			background: rgba(255,255,255,0.3);
			transform: rotate(90deg);
		}
		
		.image-copyright {
			display: block;
			margin-top: 0.5rem;
			font-size: 0.75rem;
			color: rgba(255, 255, 255, 0.7);
			font-style: italic;
		}

		.gallery-caption small {
			line-height: 1.4;
		}

		@media (max-width: 768px) {
			.gallery-nav {
				width: 40px;
				height: 40px;
				font-size: 1.2rem;
			}
			
			.gallery-thumbnails {
				grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
				gap: 10px;
			}
			
			.gallery-caption {
				padding: 20px 15px 15px;
			}
			
			.gallery-caption h4 {
				font-size: 1.1rem;
			}
			
			.gallery-caption p {
				font-size: 0.85rem;
			}
		}
		
			/* Liveboard sponsor text styling */
			.lb-sponsor-text {
				font-size: 0.9rem;
				color: #667eea;
				font-weight: 700;
				text-align: center;
				margin: 5px 0;
				line-height: 1.4;
			}

			/* Ensure lb-sponsor container shows content properly */
			.lb-sponsor {
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				padding: 20px;
			}

			/* Remove old tier badge styles if they conflict */
			.lb-sponsor .lb-sponsor-tier,
			.lb-sponsor .lb-sponsor-name,
			.lb-sponsor .lb-sponsor-desc {
				display: none; /* Hide old elements */
			}

			/* Committee Carousel */
			.committee-carousel {
				position: relative;
				overflow: hidden;
				padding: 0 60px;
			}

			.committee-carousel-track {
				display: flex;
				transition: transform 0.5s ease;
				gap: 1.5rem;
			}

			.committee-carousel .committee-card {
				flex: 0 0 calc(33.333% - 1rem);
				min-width: calc(33.333% - 1rem);
				background: white;
				padding: 1.5rem;
				border-radius: 12px;
				box-shadow: 0 2px 8px rgba(0,0,0,0.08);
				transition: all 0.3s;
			}

			.committee-carousel .committee-card:hover {
				transform: translateY(-5px);
				box-shadow: 0 8px 24px rgba(45, 122, 62, 0.15);
			}

			.committee-nav {
				position: absolute;
				top: 50%;
				transform: translateY(-50%);
				background: rgba(255,255,255,0.95);
				border: 2px solid var(--primary-green);
				width: 45px;
				height: 45px;
				border-radius: 50%;
				cursor: pointer;
				display: flex;
				align-items: center;
				justify-content: center;
				font-size: 1.3rem;
				color: var(--primary-green);
				transition: all 0.3s;
				z-index: 10;
				box-shadow: 0 4px 12px rgba(0,0,0,0.1);
			}

			.committee-nav:hover {
				background: var(--primary-green);
				color: white;
				transform: translateY(-50%) scale(1.1);
			}

			.committee-nav.prev {
				left: 10px;
			}

			.committee-nav.next {
				right: 10px;
			}

			.committee-indicators {
				display: flex;
				justify-content: center;
				gap: 8px;
				margin-top: 25px;
			}

			.committee-indicator {
				width: 10px;
				height: 10px;
				border-radius: 50%;
				background: #ddd;
				cursor: pointer;
				transition: all 0.3s;
			}

			.committee-indicator.active {
				background: var(--primary-green);
				width: 25px;
				border-radius: 5px;
			}

			/* Responsive Committee Carousel */
			@media (max-width: 968px) {
				.committee-carousel .committee-card {
					flex: 0 0 calc(50% - 0.75rem);
					min-width: calc(50% - 0.75rem);
				}
			}

			@media (max-width: 768px) {
				.committee-carousel .committee-card {
					flex: 0 0 100%;
					min-width: 100%;
				}
				
				.committee-carousel {
					padding: 0 50px;
				}
				
				.committee-nav {
					width: 38px;
					height: 38px;
					font-size: 1.1rem;
				}
			}
			
			/* Committee Carousel Auto-scroll Animation */
			.committee-carousel-track {
				display: flex;
				transition: transform 0.5s ease;
				gap: 1.5rem;
				animation: none; /* Will be set by JavaScript */
			}

			.committee-carousel.auto-scrolling .committee-carousel-track {
				transition: transform 30s linear; /* Smooth slow scroll */
			}

			.committee-carousel:hover .committee-carousel-track {
				animation-play-state: paused !important;
			}

			@keyframes scrollToEnd {
				to {
					transform: translateX(var(--scroll-distance));
				}
			}
			
			/* Go to Top Button */
			.go-to-top-btn {
				position: fixed;
				bottom: 90px;
				right: 20px;
				z-index: 999;
				background: var(--primary-green);
				color: var(--white);
				width: 50px;
				height: 50px;
				border-radius: 50%;
				border: none;
				font-size: 24px;
				font-weight: 700;
				cursor: pointer;
				box-shadow: 0 4px 12px rgba(45, 122, 62, 0.3);
				transition: all 0.3s ease;
				opacity: 0;
				visibility: hidden;
				display: flex;
				align-items: center;
				justify-content: center;
			}

			.go-to-top-btn.visible {
				opacity: 1;
				visibility: visible;
			}

			.go-to-top-btn:hover {
				background: var(--forest-green);
				transform: translateY(-3px);
				box-shadow: 0 6px 16px rgba(45, 122, 62, 0.4);
			}

			.go-to-top-btn:active {
				transform: translateY(-1px);
			}

			/* Adjust position on mobile */
			@media (max-width: 768px) {
				.go-to-top-btn {
					bottom: 80px;
					right: 15px;
					width: 45px;
					height: 45px;
					font-size: 20px;
				}
			}

			/* Bubble Animation */
			.bubble {
				position: fixed;
				border-radius: 50%;
				background: linear-gradient(135deg, var(--primary-green), var(--lime-green));
				pointer-events: none;
				z-index: 998;
				animation: bubblePop 1s ease-out forwards;
				box-shadow: 0 0 10px rgba(45, 122, 62, 0.5);
			}

			@keyframes bubblePop {
				0% {
					transform: translate(0, 0) scale(0);
					opacity: 1;
				}
				50% {
					opacity: 0.8;
				}
				100% {
					transform: translate(var(--tx), var(--ty)) scale(1);
					opacity: 0;
				}
			}

			/* Button click animation */
			.go-to-top-btn.clicked {
				animation: buttonBounce 0.4s ease;
			}

			@keyframes buttonBounce {
				0%, 100% {
					transform: translateY(0) scale(1);
				}
				25% {
					transform: translateY(-8px) scale(0.95);
				}
				50% {
					transform: translateY(0) scale(1.1);
				}
				75% {
					transform: translateY(-4px) scale(1.05);
				}
			}
			
		/* ACCOMMODATION SECTION STYLES */
		.hotel-cards-container {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
			gap: 2rem;
			margin-top: 2rem;
		}

		.hotel-card {
			background: var(--white);
			border: 2px solid var(--border-color);
			border-radius: 16px;
			overflow: hidden;
			transition: all 0.3s ease;
			box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
		}

		.hotel-card:hover {
			transform: translateY(-4px);
			border-color: var(--primary-green);
			box-shadow: 0 8px 24px rgba(45, 122, 62, 0.15);
		}

		.hotel-header {
			background: linear-gradient(135deg, var(--primary-green), var(--lime-green));
			padding: 1.5rem;
			color: var(--white);
		}

		.hotel-header h3 {
			margin: 0;
			font-size: 1.4rem;
			font-weight: 700;
			color: var(--white);
		}

		.hotel-body {
			padding: 2rem;
		}

		.hotel-info-item {
			margin-bottom: 1.5rem;
			padding-bottom: 1.2rem;
			border-bottom: 1px solid var(--border-color);
		}

		.hotel-info-item:last-of-type {
			border-bottom: none;
		}

		.hotel-info-item strong {
			display: block;
			color: var(--primary-green);
			margin-bottom: 0.5rem;
			font-size: 0.95rem;
			font-weight: 600;
		}

		.hotel-info-item p {
			color: var(--gray-text);
			line-height: 1.6;
			margin: 0;
			font-size: 0.95rem;
		}

		.hotel-info-item a {
			color: var(--primary-green);
			text-decoration: none;
			transition: color 0.3s;
		}

		.hotel-info-item a:hover {
			color: var(--forest-green);
			text-decoration: underline;
		}

		.hotel-card .btn-primary {
			width: 100%;
			text-align: center;
			margin-top: 1rem;
			display: block;
		}

		.hotel-notice {
			margin-top: 2.5rem;
			padding: 1.5rem;
			background: var(--light-green);
			border-left: 4px solid var(--primary-green);
			border-radius: 8px;
		}

		.hotel-notice p {
			margin: 0;
			color: var(--dark-text);
			line-height: 1.6;
		}

		/* MATOMO TRACKER NOTICE STYLES */
		.matomo-notice {
			position: fixed;
			bottom: 20px;
			left: 20px;
			right: 20px;
			max-width: 600px;
			background: var(--white);
			border: 2px solid var(--primary-green);
			border-radius: 12px;
			box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
			z-index: 10000;
			padding: 1.2rem 1.5rem;
			display: none;
			animation: slideUp 0.4s ease-out;
		}

		.matomo-notice.show {
			display: block;
		}

		@keyframes slideUp {
			from {
				transform: translateY(100px);
				opacity: 0;
			}
			to {
				transform: translateY(0);
				opacity: 1;
			}
		}

		.matomo-content {
			display: flex;
			align-items: center;
			gap: 1rem;
		}

		.matomo-icon {
			font-size: 1.8rem;
			flex-shrink: 0;
		}

		.matomo-text {
			flex: 1;
			color: var(--dark-text);
			font-size: 0.9rem;
			line-height: 1.5;
		}

		.matomo-text strong {
			color: var(--primary-green);
			display: block;
			margin-bottom: 0.3rem;
		}

		.matomo-close-btn {
			background: var(--primary-green);
			color: var(--white);
			border: none;
			padding: 0.6rem 1.2rem;
			border-radius: 6px;
			font-weight: 600;
			cursor: pointer;
			white-space: nowrap;
			transition: all 0.3s;
			font-size: 0.9rem;
		}

		.matomo-close-btn:hover {
			background: var(--forest-green);
			transform: translateY(-1px);
		}

		/* Mobile responsiveness */
		@media (max-width: 768px) {
			.hotel-cards-container {
				grid-template-columns: 1fr;
				gap: 1.5rem;
			}
			
			.hotel-header h3 {
				font-size: 1.2rem;
			}
			
			.matomo-notice {
				bottom: 10px;
				left: 10px;
				right: 10px;
				padding: 1rem;
			}
			
			.matomo-content {
				flex-direction: column;
				text-align: center;
				gap: 0.8rem;
			}
			
			.matomo-close-btn {
				width: 100%;
			}
		}

		/* COMPACT VISA & TRAVEL SECTION STYLES */
		.visa-compact-container {
			display: grid;
			grid-template-columns: 1.8fr 1fr;
			gap: 1.5rem;
			margin: 1.5rem 0;
		}

		.visa-compact-card {
			background: var(--white);
			border: 2px solid var(--border-color);
			border-radius: 12px;
			overflow: hidden;
		}

		.visa-compact-header {
			display: flex;
			align-items: center;
			gap: 1rem;
			background: linear-gradient(135deg, var(--primary-green), var(--lime-green));
			padding: 1.2rem 1.5rem;
			color: var(--white);
		}

		.visa-compact-icon {
			font-size: 2rem;
			flex-shrink: 0;
		}

		.visa-compact-header h3 {
			margin: 0;
			font-size: 1.2rem;
			font-weight: 700;
			color: var(--white);
		}

		.visa-subtitle {
			margin: 0;
			font-size: 0.85rem;
			opacity: 0.9;
		}

		.visa-compact-content {
			padding: 1.5rem;
		}

		.visa-compact-content p {
			color: var(--gray-text);
			line-height: 1.6;
			margin-bottom: 1rem;
			font-size: 0.9rem;
		}

		.visa-factors {
			background: var(--light-gray);
			padding: 1rem;
			border-radius: 8px;
			margin: 1rem 0;
		}

		.visa-factors strong {
			display: block;
			color: var(--primary-green);
			margin-bottom: 0.6rem;
			font-size: 0.9rem;
		}

		.visa-tag {
			display: inline-block;
			background: var(--white);
			border: 1px solid var(--border-color);
			padding: 0.3rem 0.8rem;
			border-radius: 12px;
			font-size: 0.8rem;
			margin-right: 0.4rem;
			margin-bottom: 0.4rem;
			color: var(--dark-text);
		}

		.visa-warning {
			background: var(--light-orange);
			padding: 0.8rem;
			border-radius: 6px;
			border-left: 3px solid var(--orange);
			font-size: 0.85rem !important;
			margin-bottom: 0 !important;
		}

		.visa-warning a {
			color: var(--orange);
			text-decoration: underline;
			font-weight: 600;
		}

		.visa-warning a:hover {
			color: var(--forest-green);
		}

		/* Quick Links */
		.visa-quick-links {
			background: var(--light-gray);
			border: 1px solid var(--border-color);
			border-radius: 12px;
			padding: 1.2rem;
		}

		.visa-quick-links h4 {
			color: var(--primary-green);
			font-size: 1rem;
			margin: 0 0 1rem 0;
			font-weight: 700;
		}

		.visa-link-btn {
			display: flex;
			align-items: center;
			gap: 0.8rem;
			background: var(--white);
			border: 1px solid var(--border-color);
			border-radius: 8px;
			padding: 0.8rem;
			margin-bottom: 0.6rem;
			text-decoration: none;
			transition: all 0.3s ease;
		}

		.visa-link-btn:last-child {
			margin-bottom: 0;
		}

		.visa-link-btn:hover {
			border-color: var(--primary-green);
			box-shadow: 0 2px 8px rgba(45, 122, 62, 0.12);
			transform: translateX(2px);
		}

		.visa-link-btn span {
			font-size: 1.5rem;
			flex-shrink: 0;
		}

		.visa-link-btn strong {
			display: block;
			color: var(--primary-green);
			font-size: 0.9rem;
			margin-bottom: 0.1rem;
		}

		.visa-link-btn small {
			display: block;
			color: var(--gray-text);
			font-size: 0.75rem;
		}

		.visa-source-compact {
			text-align: center;
			color: var(--gray-text);
			font-size: 0.8rem;
			margin-top: 1rem;
		}

		.visa-source-compact a {
			color: var(--primary-green);
			text-decoration: none;
		}

		.visa-source-compact a:hover {
			text-decoration: underline;
		}

		/* Mobile Responsiveness */
		@media (max-width: 768px) {
			.visa-compact-container {
				grid-template-columns: 1fr;
				gap: 1rem;
			}
			
			.visa-compact-header {
				padding: 1rem;
			}
			
			.visa-compact-icon {
				font-size: 1.6rem;
			}
			
			.visa-compact-header h3 {
				font-size: 1.1rem;
			}
			
			.visa-compact-content {
				padding: 1.2rem;
			}
			
			.visa-quick-links {
				padding: 1rem;
			}
			
			.visa-link-btn span {
				font-size: 1.3rem;
			}
		}
/* --- Large Screens & High Resolution Displays --- */
@media (min-width: 1441px) {
  /* 1. Scale up the base font size. 
     Since most sizes use 'rem', this increases EVERYTHING 
     (text, buttons, padding) by roughly 12-25% */
  html {
    font-size: 18px; /* Default is usually 16px */
  }

  /* 2. Allow containers to grow wider */
  .nav-container,
  .hero-grid,
  section,
  .footer-content,
  .gallery-container {
    max-width: 1800px; /* Increased from 1400px */
  }

  /* 3. Adjust specific large elements if needed */
  .hero h1 {
    font-size: 4.5rem; /* Make the main title more impactful */
  }
}

/* --- Ultra Large Screens (e.g. 4k Monitors) --- */
@media (min-width: 2500px) {
  html {
    font-size: 22px; /* Massive scaling for 4k */
  }
  
  .nav-container,
  .hero-grid,
  section,
  .footer-content {
    max-width: 2400px;
  }
}
/* --- Ultra-Large Screens (4K / 2500px+) --- */
@media (min-width: 2000px) {
  /* 1. Massive Scale Up for Root Size 
     This instantly grows all text, buttons, and padding by 50% */
  :root {
    font-size: 24px; /* Standard is 16px */
  }

  /* 2. Unlock Container Widths 
     Allows the design to stretch across the wide screen */
  .nav-container,
  .hero-grid,
  section,
  .footer-content,
  .gallery-container,
  .lb-grid {
    max-width: 2600px !important; /* Increased from 1400px */
    padding-left: 5%;
    padding-right: 5%;
  }

  /* 3. Fix "Stuck" Elements (Hardcoded Pixels)
     These elements used 'px' instead of 'rem', so we must manually force them larger */
  
  /* Logo */
  .logo img {
    height: 110px !important; /* Was 75px */
  }

  /* Speaker Avatars */
  .speaker-avatar {
    width: 200px;  /* Was 120px */
    height: 200px; /* Was 120px */
    margin-bottom: 2rem;
  }

  /* Map Height */
  #venueMap {
    height: 700px; /* Was 450px */
  }

  /* Modal/Popups */
  .modal-content {
    max-width: 1200px; /* Was 650px */
    padding: 4rem;
  }

  /* Hero Title Impact */
  .hero h1 {
    font-size: 5rem; /* Massive headline */
  }
}

