
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
          
           
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #ffdddd;
        }

        .nav-link i {
            margin-right: 0.5rem;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section with Video Background and Typewriter Effect */
        .hero {
            position: relative;
            padding: 150px 0 100px;
            text-align: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            filter: brightness(0.7);
        }

        .hero-overlay {
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.7), rgba(255, 255, 255, 0.7)), url('img/banner.jpg') no-repeat center center/cover;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
        }

        .hero-container {
            position: relative;
            z-index: 3;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: 1rem;
        }

        .hero-title i {
            color: #ff0000;
            margin-right: 0.5rem;
        }

        .typewriter {
            font-size: 1.5rem;
            color: white;
            overflow: hidden;
            border-right: 0.15em solid #ff0000;
            white-space: nowrap;
            margin: 0 auto 2rem;
            letter-spacing: 0.05em;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            color: white;
        }

        .btn-primary:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
        }

        .btn-primary i {
            margin-right: 0.5rem;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: #ff0000 }
        }

        /* Section Styles */
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
            font-weight: bold;
        }

        .section-title i {
            color: #ff0000;
            margin-right: 0.5rem;
        }

        /* Our Mission - Parallax Text Effect */
        .mission {
            padding: 80px 0;
            background: #f8f9fa;
            position: relative;
        }

        .parallax-text {
            font-size: 1.5rem;
            color: #333;
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateZ(20px);
            perspective: 1000px;
        }

        .parallax-text i {
            font-size: 2rem;
            color: #ff0000;
            display: block;
            margin-bottom: 1rem;
        }

        /* Our Team - Card Flip Animation */
        .team {
            padding: 80px 0;
            background: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .team-card {
            perspective: 1000px;
            height: 400px;
        }

        .team-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .team-card:hover .team-card-inner {
            transform: rotateY(180deg);
        }

        .team-card-front, .team-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .team-card-front {
            background: white;
        }

        .team-card-back {
            background: linear-gradient(135deg, #ff0000, #cc0000);
            color: white;
            transform: rotateY(180deg);
        }

        .team-img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 1rem;
            border: 3px solid #ff0000;
        }

        .team-name {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .team-role {
            font-size: 1rem;
            color: #666;
        }

        .team-card-back i {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        /* Why Choose Us - Feature Icons with Zoom */
        .why-choose {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.5s;
        }

        .feature-card:hover {
            transform: scale(1.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #ff0000;
            margin-bottom: 1rem;
        }

        /* Our Process - Timeline with Scroll Animation */
        .process {
            padding: 80px 0;
            background: white;
        }

        .process-timeline {
            position: relative;
            padding: 2rem 0;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: #ff0000;
        }

        .process-step {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 45%;
            margin: 1rem;
            position: relative;
            animation: slide-from-side 0.5s ease;
        }

        .process-step:nth-child(odd) {
            margin-left: 5%;
        }

        .process-step:nth-child(even) {
            margin-left: 50%;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: #ff0000;
            border-radius: 50%;
            left: -36px;
        }

        .process-step:nth-child(even)::before {
            left: auto;
            right: -36px;
        }

        .process-step i {
            font-size: 1.5rem;
            color: #ff0000;
            margin-bottom: 0.5rem;
            display: block;
        }

        @keyframes slide-from-side {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* Responsible Gaming - Animated Checklist */
        .responsible {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .checklist-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .checklist {
            list-style: none;
            padding-left: 0;
        }

        .checklist li {
            padding: 0.5rem 0;
            color: #666;
            position: relative;
            padding-left: 2rem;
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.5s ease;
        }

        .checklist li.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .checklist li i {
            position: absolute;
            left: 0;
            color: #ff0000;
            font-size: 1.2rem;
        }

        /* Our Impact - Stats with Counter Animation */
        .impact {
            padding: 80px 0;
            background: white;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .impact-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .impact-icon {
            font-size: 2rem;
            color: #ff0000;
            margin-bottom: 1rem;
        }

        .impact-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ff0000;
        }

        .impact-label {
            font-size: 1rem;
            color: #666;
        }

        /* Community Engagement - Social Feed Style */
        .community {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .social-feed {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .social-post {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .social-post::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #ff0000, #cc0000);
        }

        .social-icon {
            font-size: 1.5rem;
            color: #ff0000;
            margin-bottom: 1rem;
        }

        /* Gallery - Masonry Grid with Lightbox */
        .gallery {
            padding: 80px 0;
            background: white;
        }

        .gallery-grid {
            column-count: 3;
            column-gap: 1rem;
        }

        .gallery-item {
            display: inline-block;
            width: 100%;
            margin-bottom: 1rem;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            position: relative;
        }

        .gallery-img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 1rem;
            opacity: 0;
            transition: opacity 0.3s;
            text-align: center;
        }

        .gallery-item:hover .gallery-caption {
            opacity: 1;
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }

        /* Contact Us - Interactive Form with Animation */
        .contact {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .contact-info {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .contact-info-item i {
            font-size: 1.5rem;
            color: #ff0000;
        }

        .contact-form {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-input:focus {
            border-color: #ff0000;
            outline: none;
        }

        .form-label {
            position: absolute;
            top: 1rem;
            left: 1rem;
            color: #666;
            transition: all 0.3s;
            pointer-events: none;
        }

        .form-input:focus + .form-label,
        .form-input:not(:placeholder-shown) + .form-label {
            top: -0.5rem;
            left: 0.5rem;
            font-size: 0.8rem;
            color: #ff0000;
            background: white;
            padding: 0 0.2rem;
        }

        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, #ff0000, #cc0000);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background: linear-gradient(135deg, #cc0000, #990000);
            transform: translateY(-2px);
        }

        .btn-submit i {
            margin-right: 0.5rem;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links, .footer-contact, .footer-responsible {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-link, .responsible-link {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-link:hover, .responsible-link:hover {
            color: #ff0000;
        }

        .footer-link i, .responsible-link i {
            margin-right: 0.5rem;
        }

        .footer-disclaimer {
            border-top: 1px solid #555;
            padding-top: 2rem;
            text-align: center;
            color: #ccc;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: #ff0000;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(10px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .typewriter {
                font-size: 1.2rem;
            }

            .team-grid, .feature-grid, .impact-grid, .social-feed, .gallery-grid, .contact-container {
                grid-template-columns: 1fr;
                column-count: 1;
            }

            .process-timeline::before {
                left: 20px;
            }

            .process-step {
                width: 80%;
                margin-left: 15% !important;
            }

            .process-step::before {
                left: -36px !important;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }

            .team-card, .feature-card, .process-step, .checklist-card, .impact-card, .social-post, .contact-form, .contact-info {
                padding: 1.5rem;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }