        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html,
        body {
            scroll-behavior: smooth;
            height: auto;
            overflow-x: hidden;
            overflow-y: auto;
        }

        body {
            margin: 0;
            font-family: 'Roboto Mono', monospace;
            background-color: #111;
            color: #fff;
            line-height: 1.6;
            /* Remove the line below */
            /* overflow: hidden; */
        }

        a {
            color: #b4b3b3;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover,
        a:focus {
            color: #fff;
            outline: none;
        }

        nav.nav {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }

        .hamburger {
            display: block;
            background: none;
            border: none;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
        }

        .hamburger:hover {
            background-color: transparent;
            transform: scale(1.1)
        }

        .nav-links {
            display: none;
            flex-direction: column;
            background: rgba(0, 0, 0, 0.9);
            position: fixed;
            top: 70px;
            right: 20px;
            padding: 15px;
            border-radius: 10px;
            gap: 15px;
            z-index: 999;
            width: max-content;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }

        .nav-links.open {
            display: flex;
        }

        section {
            min-height: 100vh;
            padding: 80px 20px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: justify;
            background: #000;
            overflow: hidden;
        }

        a:focus:not(:focus-visible) {
            outline: none;
        }

        .inner-container {
             position: relative;
            z-index: 1;
            max-width: 65vw;
            padding: 0px;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            text-align: justify;
            background: #000;
        }

        .hero {
            position: relative;
            background-color: #000;
        }

        .hero .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 0;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 65vw;
            padding: 0px;
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: justify;
            background: #000;
        }

        .hero-content h1 {
            font-size: 20px;
            font-weight: 600;
            text-align: center;
            margin: 0;
        }

        .hero-content img {
            max-width: 40vw;
            display: block;
            margin: 0 auto;
            height: auto;
            border: none;
            padding: 4px;
        }

        .hero-content p {
            font-weight: 300;
            font-size: 1rem;
            margin: 0 0 1rem;
        }

        h2 {
            font-size: 20px;
            font-weight: 600;
            text-align: center;
            margin: 0;
        }

        h3 {
            font-size: 20px;
            font-weight: 600;
            text-align: center;
            margin: 0;
            width: 65vw;

        }

        .video-container {
            width: 55vw;
            max-width: 100%;
            aspect-ratio: 16 / 9;
            background: #000;
            margin-bottom: 0;
            padding-bottom: 0;
            display: block;
            outline: none;
            backface-visibility: hidden;
            transform: translateZ(0);
        }

        iframe {
            width: 100%;
            height: 100%;
            border: none;
            background: #000;
            display: block;
            outline: none;
            backface-visibility: hidden;
            transform: translateZ(0);
        }

        #contact {
            background: #000;
            margin-top: 0;
            margin-bottom: 0;
        }

        #contact .section-text {
            max-width: 100%;
            margin: 0 auto 20px;
            text-align: center;
            background: #000;
        }

        #contact a {
            color: #cd0089;
            font-weight: 600;
        }
        #contact a:hover {
            color: #cd0089;
        }

        [id] {
            scroll-margin-top: 60px;
        }

        .download-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 24px;
            background: #ffffff;
            color: #0091c2;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .download-btn:hover {
            background-color: #ddd;
            transform: scale(1.1)
        }

        footer {
            background: #000;
            color: #666;
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease-out forwards;
        }

        section:focus {
            outline: none;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                max-width: 95vw;
                padding: 10px;
                text-align: left;
            }


            .hero-content img {
                width: 90vw;
            }

            .video-container {
                width: 95vw;
            }

            .inner-container {
                max-width: 100vw;
                padding: 0;
                margin: 0;
                text-align: center;
                box-sizing: border-box;
            }
        }

        @media (min-width: 769px) {
            section {
                padding-left: 200px;
                padding-right: 150px;
            }
        }
