
        /* Welcome Section */
        .welcome-section {
            background: rgba(26, 26, 26, 0.8);
            padding: 2rem;
            margin-bottom: 3rem;
            border-radius: 8px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);    
        }

        .welcome-section h2 {
            color: var(--accent-red);
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .welcome-section p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            text-align: justify;
        }

        /* Video Section - Replacing Flash */
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            max-width: 100%;
            background: var(--black);
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 8px 32px rgba(185, 28, 28, 0.4);
        }

        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Grid Layout for Sponsors */
        .sponsors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .sponsor-card {
            background: #fff;
            padding: 2rem;
            border-radius: 8px;
            border: 2px solid var(--dark-red);
            text-align: center;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .sponsor-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-red);
        }

        .sponsor-card img {
            max-width: 100%;
            height: auto;
            margin-bottom: 1rem;
        }

        .sponsor-card p {
            font-size: 0.95rem;
            color: var(--light-gray);
        }


                .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.85);
            animation: fadeIn 0.3s ease;
        }

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

        /* Modal Content Box */
        .modal-content {
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            margin: 3% auto;
            padding: 0;
            border: 3px solid #7fb069;
            width: 90%;
            max-width: 1100px;
            border-radius: 12px;
            box-shadow: 0 10px 50px rgba(127, 176, 105, 0.4);
            animation: slideDown 0.4s ease;
            max-height: 90vh;
            overflow-y: auto;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Modal Header */
        .modal-header {
            background: linear-gradient(to right, #5f8fb4, #7999ba);
            padding: 1.5rem 2rem;
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            color: white;
            margin: 0;
            font-size: 1.8rem;
        }

        /* Close Button */
        .close {
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            line-height: 1;
            background: none;
            border: none;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close:hover,
        .close:focus {
            color: #ff6b6b;
            transform: rotate(90deg);
        }

        /* Modal Body */
        .modal-body {
            padding: 2rem;
            color: #e5e5e5;
            line-height: 1.8;
        }

        .modal-body h3 {
            color: #7fb069;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .modal-body p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        /* Video Container in Modal */
        .modal-video {
            width: 100%;
            margin: 1.5rem 0;
            border-radius: 8px;
            overflow: hidden;
        }

        .modal-video video,
        .modal-video iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        /* Hero Image Section */
        .hero-section {
            width: 100%;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }

        .hero-image-container {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(127, 176, 105, 0.3);
            position: relative;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
                margin: 10% auto;
            }

            .modal-header h2 {
                font-size: 1.3rem;
            }

            .modal-body {
                padding: 1.5rem;
            }

            .modal-video video,
            .modal-video iframe {
                height: 250px;
            }

            .hero-image-container {
                height: 250px;
            }
        }


        nav.legends {
    background: linear-gradient(to right, #261212, #c1c1c1);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Navigation List */
nav.legends ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

/* List Items */
nav.legends ul li {
    margin: 0;
}

/* Navigation Links */
nav.legends ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    transition: background 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Last Link - No Border */
nav.legends ul li:last-child a {
    border-right: none;
}


 /* Tabs Container */
        .tabs {
            display: flex;
            background: #2c2c2c;
            border-bottom: 2px solid #7fb069;
        }

        /* Tab Buttons */
        .tab-button {
            background: transparent;
            color: #a0a0a0;
            border: none;
            padding: 1rem 1.5rem;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            flex: 1;
        }

        .tab-button:hover {
            background: rgba(127, 176, 105, 0.1);
            color: #7fb069;
        }

        .tab-button.active {
            background: rgba(127, 176, 105, 0.2);
            color: white;
            border-bottom: 3px solid #7fb069;
        }

        /* Tab Content */
        .modal-body {
            padding: 2rem;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .tab-content.active {
            display: block;
        }

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

        .tab-content h3 {
            color: #7fb069;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .tab-content p {
            line-height: 1.7;
            margin-bottom: 1rem;
        }



          .story-section {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(26, 26, 26, 0.9);
            border-radius: 12px;
            overflow: hidden;
            /* box-shadow: 0 10px 40px rgba(185, 28, 28, 0.4); */
            border: 2px solid #fff;
        }

        /* Header Section with Images and Title */
        .story-header {
            display: flex;
            gap: 2rem;
            padding: 2rem;
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
        }

        /* Image Gallery Side */
        .image-gallery {
            display: flex;
            flex-direction: column;
        }

        .gallery-title {
            font-size: 1.5rem;
            color: #ef4444;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .image-grid {
            display: flex;
            /* grid-template-columns: repeat(2, 1fr); */
            gap: 2rem;
        }

        .image-wrapper {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .image-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(185, 28, 28, 0.6);
            border-color: #ef4444;
        }

        .image-wrapper img {
            width: 100%;
            height: 225px;
            object-fit: cover;
            display: block;
        }

        /* Title Side */
        .title-section {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .story-title {
            font-size: 2.5rem;
            color: #ef4444;
            line-height: 1.3;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Story Content */
        .story-content {
            padding: 2rem;
            border-top: 3px solid #b91c1c;
        }

        .story-text {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgb(209 177 177 / 10%);
            border-radius: 8px;
            border-left: 4px solid #ef4444;
        }

        /* Translation Box */
        .translation-box {
            background: rgb(209 177 177 / 10%);
            color: #f5f5f5;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #ef4444;
            font-style: italic;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .story-header {
                grid-template-columns: 1fr;
            }

            .title-section {
                order: -1;
            }

            .story-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 600px) {
            body {
                padding: 1rem;
            }

            .story-header {
                padding: 1.5rem;
            }

            .image-grid {
                grid-template-columns: 1fr;
            }

            .story-title {
                font-size: 1.5rem;
            }

            .story-content {
                padding: 1.5rem;
            }

            .story-text {
                font-size: 1rem;
            }
        }