

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            text-decoration: none;
        }

        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }

        header {
            background-color: #0a1153;
            color: white;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        /* Optimized Logo Styles */
        .logo a {
            font-size: clamp(18px, 5vw, 24px);
            /* Responsive font size */
            font-weight: bold;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 180px;
            /* Adjust based on your needs */
            color: #fff;
        }

        /* Navigation Bar */
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            gap: 15px;
        }

        /* Mobile-first navigation */
        nav ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 10px;
        }

        nav ul li {
            margin-left: 20px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: clamp(12px, 3vw, 16px);
            /* Responsive font size */
            white-space: nowrap;
        }

        /* Media Queries for different screen sizes */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                align-items: stretch;
                padding: 10px;
            }

            .logo {
                max-width: 100%;
                text-align: center;
                margin-bottom: 10px;
            }

            nav ul {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            nav ul li {
                margin-left: 8px;
            }

            .logo {
                font-size: clamp(16px, 4vw, 20px);
                max-width: 150px;
                margin: 0 auto 10px;
                padding-top: 10px;
            }

            nav ul {
                gap: 8px;
            }

            nav ul li a {
                padding: 3px 6px;
                font-weight: bold;
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            min-height: 70vh;
        }

        .hero {
            background-color: #3949ab;
            color: white;
            padding: 40px;
            border-radius: 8px;
            margin-bottom: 30px;
            text-align: center;
        }

        .warning {
            background-color: #ffeb3b;
            color: #333;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 30px;
            border-left: 5px solid #ffc107;
        }

        .app-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .app-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .app-card:hover {
            transform: translateY(-5px);
        }

        .app-image {
            height: 150px;
            background-color: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .app-image img {
            max-width: 80%;
            max-height: 80%;
        }

        .download-info {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px;
            font-size: 12px;
            text-align: center;
        }

        .app-content {
            padding: 20px;
        }

        .app-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: #1a237e;
        }

        .app-bonus {
            color: #388e3c;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .withdrawal-info {
            font-size: 12px;
            color: #666;
            margin-bottom: 15px;
        }

        .download-btn {
            display: inline-block;
            background-color: #4caf50;
            color: white;
            padding: 10px 15px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
            width: 100%;
            text-align: center;
        }

        .download-btn:hover {
            background-color: #388e3c;
        }

        /* About Us Page Styles */
        .about-section {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .about-section h2 {
            color: #1a237e;
            margin-bottom: 20px;
            border-bottom: 2px solid #1a237e;
            padding-bottom: 10px;
        }

        .about-section p {
            margin-bottom: 15px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .team-member {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .team-member img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid #1a237e;
        }

        /* Contact Page Styles */
        .contact-section {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .contact-section h2 {
            color: #1a237e;
            margin-bottom: 20px;
            border-bottom: 2px solid #1a237e;
            padding-bottom: 10px;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .contact-card {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #1a237e;
        }

        .contact-card h3 {
            color: #1a237e;
            margin-bottom: 15px;
        }

        .contact-card p {
            margin-bottom: 10px;
        }

        .contact-form {
            margin-top: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .form-group textarea {
            height: 150px;
        }

        .submit-btn {
            background-color: #1a237e;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .submit-btn:hover {
            background-color: #3949ab;
        }

        /* Footer Styles */
        footer {
            background-color: #0a1153;
            color: white;
            margin-top: 40px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }

        .age-warning {
            font-size: 14px;
            margin-bottom: 15px;
            text-align: center;
        }

        .footer-warning {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        .footer-note {
            font-size: 12px;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ffeb3b;
        }

        .copyright {
            text-align: center;
            font-size: 12px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Active Page Indicator */
        .active {
            color: #ffeb3b !important;
            font-weight: bold;
        }

        .button-container {
            display: none !important
        }

        nav ul li button {
            background-color: #a30c00;
            color: #ffeb3b;
            border: none;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 5px;
        }