* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 80px;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #ff6b00;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 36px;
            font-weight: 900;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #0047ab;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .daman-link {
            background-color: #0047ab;
            color: white !important;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 700;
        }
        .daman-link:hover {
            background-color: #003580;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .menu-btn {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: #ffffff;
            background: none;
            border: none;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            margin: 15px 10px;
            text-align: center;
            font-size: 20px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #28a745;
            color: white;
            background-image: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(40,167,69,0.3);
        }
        .btn-login {
            background-color: #007bff;
            color: white;
            background-image: linear-gradient(135deg, #007bff 0%, #00d2d3 100%);
        }
        .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,123,255,0.3);
        }
        h1 {
            font-size: 48px;
            color: #ff6b00;
            text-align: center;
            margin: 60px 0 40px;
            line-height: 1.6;
            text-shadow: 0 2px 8px rgba(0,0,0,0.1);
            font-weight: 900;
        }
        h2 {
            font-size: 36px;
            color: #0047ab;
            margin: 70px 0 35px;
            padding-bottom: 18px;
            border-bottom: 4px solid rgba(0,71,171,0.15);
            position: relative;
            font-weight: 800;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100px;
            height: 4px;
            background-color: #0047ab;
        }
        h3 {
            font-size: 30px;
            color: #ff6b00;
            margin: 50px 0 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 700;
        }
        h3::before {
            content: '⭐';
            color: #ffd700;
        }
        h4 {
            font-size: 24px;
            color: #28a745;
            margin: 40px 0 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h4::before {
            content: '→';
            color: #ff6b00;
        }
        p {
            margin-bottom: 30px;
            font-size: 20px;
            color: #333333;
            line-height: 1.9;
            text-align: justify;
        }
        .highlight {
            font-weight: 800;
            color: #ff6b00;
            text-shadow: 0 0 3px rgba(255,107,0,0.1);
        }
        .indian-note {
            background-color: #fff8e6;
            border-left: 6px solid #ff6b00;
            padding: 25px 30px;
            border-radius: 0 12px 12px 0;
            margin: 40px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .indian-note p {
            margin-bottom: 0;
            font-size: 20px;
            color: #2d2d2d;
            font-weight: 500;
        }
        .game-img {
            width: 100%;
            border-radius: 18px;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border: 3px solid #ff6b00;
        }
        .img-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .img-grid img {
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            border: 3px solid #0047ab;
            transition: transform 0.4s ease;
            width: 100%;
        }
        .img-grid img:hover {
            transform: scale(1.05);
        }
        ul, ol {
            margin: 30px 0 40px 60px;
            font-size: 20px;
            color: #333333;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 25px;
            line-height: 1.9;
            padding-left: 10px;
        }
        li::marker {
            color: #ff6b00;
            font-weight: bold;
            font-size: 22px;
        }
        .game-types-container, .tags-container {
            margin: 60px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .game-type, .tag {
            background-color: #f0f8ff;
            padding: 14px 24px;
            border-radius: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .game-type a, .tag a {
            color: #0047ab;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .game-type a:hover, .tag a:hover {
            color: #ff6b00;
            transform: translateY(-2px);
        }
        footer {
            background-color: #2d2d2d;
            padding: 70px 0 40px;
            margin-top: 100px;
            color: #ffffff;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ff6b00;
            font-size: 26px;
            margin-bottom: 30px;
            border-bottom: 2px solid #ff6b00;
            padding-bottom: 15px;
        }
        .copyright {
            text-align: center;
            color: #cccccc;
            font-size: 18px;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid #444444;
        }
        .recommendation {
            font-size: 22px;
            color: #f0f0f0;
            text-align: center;
            margin: 30px 0;
            line-height: 1.8;
        }
        .recommendation a {
            color: #ff6b00;
            text-decoration: none;
            font-weight: 700;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 42px;
            }
            h2 {
                font-size: 32px;
            }
            h3 {
                font-size: 28px;
            }
            p, ul, ol {
                font-size: 19px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            .btn {
                padding: 14px 28px;
                font-size: 19px;
            }
            .img-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #ff6b00;
                padding: 35px 30px;
                gap: 25px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
                border-top: 1px solid rgba(255,255,255,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
            }
            h1 {
                font-size: 36px;
                margin: 50px 0 35px;
            }
            h2 {
                font-size: 28px;
                margin: 60px 0 30px;
            }
            h3 {
                font-size: 26px;
            }
            h4 {
                font-size: 22px;
            }
            p, ul, ol {
                font-size: 18px;
            }
            .btn {
                width: 100%;
                margin: 12px 0;
                padding: 15px 25px;
                font-size: 18px;
            }
            .img-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            ul, ol {
                margin-left: 40px;
            }
            .indian-note {
                padding: 20px 25px;
            }
            .logo {
                font-size: 30px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 24px;
            }
            p, ul, ol {
                font-size: 17px;
            }
            .container {
                padding: 0 15px;
            }
            .nav-container {
                padding: 0 15px;
            }
            .footer-note {
                font-size: 18px;
            }
            .btn {
                padding: 14px 20px;
                font-size: 17px;
            }
        }
