* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0d1117;
            color: #f0f0f0;
            line-height: 1.9;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #161b22;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 32px;
            font-weight: 900;
            color: #ff7a00;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 0 0 8px rgba(255,122,0,0.5);
        }
        .logo span {
            color: #00a8ff;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: #f0f0f0;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover {
            color: #ff7a00;
            background-color: rgba(255,122,0,0.1);
        }
        .daman-link {
            background-color: #ff7a00;
            color: white !important;
            padding: 10px 18px;
            border-radius: 8px;
        }
        .daman-link:hover {
            background-color: #e06c00;
            box-shadow: 0 4px 12px rgba(255,122,0,0.3);
        }
        .menu-btn {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: #f0f0f0;
            background: none;
            border: none;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            margin: 12px 8px;
            text-align: center;
            font-size: 18px;
            border: none;
            cursor: pointer;
        }
        .btn-download {
            background-color: #28a745;
            color: white;
            box-shadow: 0 4px 15px rgba(40,167,69,0.2);
        }
        .btn-download:hover {
            background-color: #218838;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(40,167,69,0.3);
        }
        .btn-login {
            background-color: #00a8ff;
            color: white;
            box-shadow: 0 4px 15px rgba(0,168,255,0.2);
        }
        .btn-login:hover {
            background-color: #0091d5;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,168,255,0.3);
        }
        h1 {
            font-size: 48px;
            color: #ff7a00;
            text-align: center;
            margin: 50px 0 35px;
            line-height: 1.5;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        h2 {
            font-size: 36px;
            color: #00a8ff;
            margin: 60px 0 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid rgba(0,168,255,0.2);
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: #00a8ff;
        }
        h3 {
            font-size: 28px;
            color: #ffcc00;
            margin: 45px 0 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3::before {
            content: '▶';
            color: #ff7a00;
        }
        h4 {
            font-size: 22px;
            color: #4cd2ff;
            margin: 35px 0 20px;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            font-size: 19px;
            color: #e0e0e0;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #ff7a00;
            text-shadow: 0 0 3px rgba(255,122,0,0.2);
        }
        .indian-note {
            background-color: #161b22;
            border-left: 5px solid #ff7a00;
            padding: 20px 25px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .indian-note p {
            margin-bottom: 0;
            font-size: 19px;
            color: #f5f5f5;
        }
        .game-img {
            width: 100%;
            border-radius: 15px;
            margin: 35px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.5);
            border: 2px solid #ff7a00;
        }
        .img-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .img-grid img {
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
            border: 2px solid #00a8ff;
            transition: transform 0.3s ease;
        }
        .img-grid img:hover {
            transform: scale(1.03);
        }
        ul, ol {
            margin: 25px 0 30px 50px;
            font-size: 19px;
            color: #e0e0e0;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        li::marker {
            color: #ff7a00;
            font-weight: bold;
        }
        .game-types-container, .tags-container {
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .game-type, .tag {
            background-color: #161b22;
            padding: 12px 22px;
            border-radius: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }
        .game-type a, .tag a {
            color: #00a8ff;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: color 0.3s ease;
        }
        .game-type a:hover, .tag a:hover {
            color: #ff7a00;
        }
        footer {
            background-color: #161b22;
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top: 4px solid #ff7a00;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .footer-note {
            font-size: 20px;
            color: #e0e0e0;
            text-align: center;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
        }
        .footer-note .highlight {
            color: #00a8ff;
        }
        .copyright {
            text-align: center;
            color: #888888;
            font-size: 17px;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #2d333b;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 42px;
            }
            h2 {
                font-size: 32px;
            }
            h3 {
                font-size: 26px;
            }
            p, ul, ol {
                font-size: 18px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #161b22;
                padding: 30px 25px;
                gap: 25px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.4);
                border-top: 1px solid #2d333b;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
            }
            h1 {
                font-size: 36px;
                margin: 40px 0 30px;
            }
            h2 {
                font-size: 28px;
                margin: 50px 0 25px;
            }
            h3 {
                font-size: 24px;
            }
            h4 {
                font-size: 20px;
            }
            p, ul, ol {
                font-size: 18px;
            }
            .btn {
                width: 100%;
                margin: 10px 0;
                padding: 14px 25px;
                font-size: 17px;
            }
            .img-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            ul, ol {
                margin-left: 35px;
            }
            .indian-note {
                padding: 18px 20px;
            }
            .logo {
                font-size: 28px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 22px;
            }
            p, ul, ol {
                font-size: 17px;
            }
            .container {
                padding: 0 15px;
            }
            .nav-container {
                padding: 0 15px;
            }
            .footer-note {
                font-size: 18px;
            }
        }
