/* events page styles (extracted from inline <style>, tokenized for theming) */
/* Lightbox styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .lightbox-content {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            padding: 20px;
            box-sizing: border-box;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90vh;
            width: auto;
            height: auto;
            margin: auto;
            border: 3px solid white;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
            object-fit: contain;
            display: block;
        }

        .lightbox-close {
            position: fixed;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 50px;
            font-weight: 300;
            line-height: 1;
            cursor: pointer;
            transition: 0.3s;
            z-index: 10000;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            border: 2px solid white;
        }

        .lightbox-close:hover {
            color: #ff6b6b;
        }

        .gallery-item {
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.02);
        }

        /* Footer two-column layout */
        .footer-links-container {
            display: flex;
            gap: 2rem;
        }

        .footer-links-column {
            margin: 0;
            padding: 0 0 0 1.5rem;
            list-style: disc;
        }

        @media (max-width: 768px) {
            .footer-links-container {
                flex-direction: column;
                gap: 0;
            }
        }

        @media (max-width: 768px) {
            .screenshot-gallery {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .screenshot-gallery {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
        }

/* Tab Content Styles */
        .tab-content {
            padding: 20px 0;
        }

        /* Events Page Specific Styles */
        .events-hero {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
            url('../assets/images/events/IMG-20250831-WA0002.jpg') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 6rem 1rem;
            margin-bottom: 3rem;
        }

        .events-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .events-gallery {
            padding: 2rem 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            padding: 0 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            aspect-ratio: 4/3;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                padding: 0 1rem;
            }

            .events-hero {
                padding: 4rem 1rem;
            }

            .events-hero h1 {
                font-size: 2rem;
            }
        }

body2 {
        font-family: Arial, sans-serif;
        text-align: center;
        padding: 20px;
        background: var(--surface-2);
        margin: 0;
    }
    h2 {
        color: var(--heading);
        margin-bottom: 20px;
    }
    iframe {
        width: 100%;
        max-width: 800px;
        height: 450px;
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

.tabs {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20px;
        border-bottom: 2px solid var(--border);
    }

    .tab-button {
        background: none;
        border: none;
        padding: 12px 24px;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-2);
        transition: all 0.3s ease;
        position: relative;
        margin-right: 5px;
        outline: none;
    }

    .tab-button:hover {
        color: var(--heading);
    }

    .tab-button.active {
        color: var(--heading);
    }

    .tab-button.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--heading);
    }

    .sub-tabs {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--border);
    }

    .sub-tab-button {
        background: none;
        border: none;
        padding: 8px 16px;
        cursor: pointer;
        font-size: 0.9rem;
        color: var(--text-2);
        transition: all 0.3s ease;
        position: relative;
        margin-right: 5px;
        outline: none;
    }

    .sub-tab-button:hover {
        color: var(--heading);
    }

    .sub-tab-button.active {
        color: var(--heading);
        font-weight: 600;
    }

    .sub-tab-button.active::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--heading);
    }

    .tab-content {
        animation: fadeIn 0.5s;
    }

    .sub-tab-content {
        animation: fadeIn 0.3s;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .gallery-item:hover img {
        transform: scale(1.03);
    }
