 :root {
            --bright-red: #FF0033;
            --acid-yellow: #E6FF00;
            --dark-bg: #0a0a0a;
            --light-text: #ffffff;
            --dark-text: #222222;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: rgba(10, 10, 10, 0.9);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--bright-red);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--acid-yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            margin-left: 10px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--acid-yellow);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 24px;
            cursor: pointer;
        }

        /* Page Content */
        .page-content {
            padding: 120px 0 80px;
            min-height: 80vh;
        }

        .page-content h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--acid-yellow);
            text-align: center;
        }

        .page-content h2 {
            font-size: 1.8rem;
            margin: 40px 0 20px;
            color: var(--acid-yellow);
            border-bottom: 1px solid var(--bright-red);
            padding-bottom: 10px;
        }

        .page-content h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--acid-yellow);
        }

        .page-content p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .page-content ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }

        .page-content li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }

        .page-content li:before {
            content: "•";
            color: var(--bright-red);
            font-weight: bold;
            position: absolute;
            left: -15px;
        }

        .last-updated {
            text-align: center;
            font-style: italic;
            margin-bottom: 30px;
            color: #cccccc;
        }

        .contact-info {
            background-color: rgba(255, 0, 51, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
        }

        /* Disclaimer Section */
        .disclaimer {
            padding: 40px 0;
            background-color: var(--bright-red);
            text-align: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background-color: rgba(10, 10, 10, 0.9);
            padding: 40px 0 20px;
            border-top: 2px solid var(--acid-yellow);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo {
            font-size: 20px;
            font-weight: bold;
            color: var(--acid-yellow);
        }

        .footer-links ul {
            display: flex;
            list-style: none;
        }

        .footer-links ul li {
            margin-left: 20px;
        }

        .footer-links ul li a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: var(--acid-yellow);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .copyright span {
            margin: 0 10px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .logo {
                margin-bottom: 15px;
            }

            nav ul {
                flex-direction: column;
                display: none;
            }

            nav ul.active {
                display: flex;
            }

            nav ul li {
                margin: 10px 0;
            }

            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 15px;
                right: 15px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links ul {
                margin-top: 20px;
                flex-direction: column;
            }

            .footer-links ul li {
                margin: 10px 0;
            }
        }
        :root {
            --bright-red: #FF0033;
            --acid-yellow: #E6FF00;
            --dark-bg: #0a0a0a;
            --light-text: #ffffff;
            --dark-text: #222222;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: rgba(10, 10, 10, 0.9);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--bright-red);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--acid-yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            margin-left: 10px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--acid-yellow);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 24px;
            cursor: pointer;
        }

        /* Banner Section */
        .banner {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('ban.jpeg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 80px;
        }

        .banner-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .banner h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--acid-yellow);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* APK Download Section */
        .apk-section {
            padding: 80px 0;
            background-color: rgba(255, 0, 51, 0.1);
            text-align: center;
        }

        .apk-section h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--acid-yellow);
        }

        .apk-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--bright-red);
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light-text);
            font-size: 1rem;
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--bright-red);
            color: var(--dark-text);
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .btn:hover {
            background-color: var(--acid-yellow);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 255, 0, 0.4);
        }

        /* Features Section */
        .features {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--acid-yellow);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 0, 51, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--acid-yellow);
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background-color: rgba(230, 255, 0, 0.05);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--acid-yellow);
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 0;
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-question {
            padding: 20px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .faq-question:hover {
            color: var(--acid-yellow);
        }

        .faq-answer {
            padding: 0 0 20px;
            display: none;
        }

        .faq-answer.active {
            display: block;
        }

        /* Disclaimer Section */
        .disclaimer {
            padding: 40px 0;
            background-color: var(--bright-red);
            text-align: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background-color: rgba(10, 10, 10, 0.9);
            padding: 40px 0 20px;
            border-top: 2px solid var(--acid-yellow);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo {
            font-size: 20px;
            font-weight: bold;
            color: var(--acid-yellow);
        }

        .footer-links ul {
            display: flex;
            list-style: none;
        }

        .footer-links ul li {
            margin-left: 20px;
        }

        .footer-links ul li a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: var(--acid-yellow);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .copyright span {
            margin: 0 10px;
        }

        /* Page Content */
        .page-content {
            padding: 120px 0 80px;
            min-height: 80vh;
        }

        .page-content h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--acid-yellow);
        }

        .page-content h2 {
            font-size: 2rem;
            margin: 30px 0 15px;
            color: var(--acid-yellow);
        }

        .page-content p {
            margin-bottom: 15px;
        }

        .page-content ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .page-content li {
            margin-bottom: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .logo {
                margin-bottom: 15px;
            }

            nav ul {
                flex-direction: column;
                display: none;
            }

            nav ul.active {
                display: flex;
            }

            nav ul li {
                margin: 10px 0;
            }

            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 15px;
                right: 15px;
            }

            .banner h1 {
                font-size: 2.5rem;
            }

            .about-content {
                flex-direction: column;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links ul {
                margin-top: 20px;
                flex-direction: column;
            }

            .footer-links ul li {
                margin: 10px 0;
            }
        }