* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f1b;
            color: #f5f5f5;
            line-height: 1.8;
            padding-bottom: 100px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #d40000, #ff6b00);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 42px;
            font-weight: 900;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.3);
            background: -webkit-linear-gradient(#ffd700, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo span {
            color: #ffd700;
            -webkit-text-fill-color: #ffd700;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 19px;
            transition: all 0.3s ease;
            padding: 10px 15px;
            border-radius: 8px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        .daman-link {
            background-color: #ffd700;
            color: #0f0f1b !important;
            padding: 12px 25px;
            border-radius: 10px;
            font-weight: 800;
            box-shadow: 0 4px 8px rgba(255,215,0,0.3);
        }
        .daman-link:hover {
            background-color: #ffc107;
            box-shadow: 0 6px 12px rgba(255,215,0,0.5);
        }
        .menu-btn {
            display: none;
            font-size: 36px;
            cursor: pointer;
            color: #ffffff;
            background: none;
            border: none;
        }
        .btn {
            display: inline-block;
            padding: 18px 36px;
            border-radius: 15px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.4s ease;
            margin: 20px 12px;
            text-align: center;
            font-size: 22px;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-download {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
        }
        .btn-download:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(40,167,69,0.4);
        }
        .btn-login {
            background: linear-gradient(135deg, #007bff, #00d2d3);
            color: white;
        }
        .btn-login:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,123,255,0.4);
        }
        h1 {
            font-size: 52px;
            color: #ffd700;
            text-align: center;
            margin: 70px 0 50px;
            line-height: 1.7;
            text-shadow: 0 3px 10px rgba(255,215,0,0.3);
            font-weight: 900;
            background: -webkit-linear-gradient(#ffd700, #ff9500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 38px;
            color: #ff6b00;
            margin: 80px 0 40px;
            padding-bottom: 20px;
            border-bottom: 4px solid rgba(255,107,0,0.2);
            position: relative;
            font-weight: 800;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 120px;
            height: 4px;
            background-color: #ff6b00;
        }
        h3 {
            font-size: 32px;
            color: #28a745;
            margin: 60px 0 35px;
            display: flex;
            align-items: center;
            gap: 20px;
            font-weight: 700;
        }
        h3::before {
            content: '⚔️';
        }
        h4 {
            font-size: 26px;
            color: #00d2d3;
            margin: 45px 0 30px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h4::before {
            content: '🔥';
        }
        p {
            margin-bottom: 35px;
            font-size: 21px;
            color: #e0e0e0;
            line-height: 2.0;
            text-align: justify;
            letter-spacing: 0.5px;
        }
        .highlight {
            font-weight: 900;
            color: #ffd700;
            text-shadow: 0 0 5px rgba(255,215,0,0.2);
        }
        .indian-note {
            background-color: rgba(255,107,0,0.1);
            border-left: 8px solid #ff6b00;
            padding: 30px 35px;
            border-radius: 0 15px 15px 0;
            margin: 50px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        .indian-note p {
            margin-bottom: 0;
            font-size: 22px;
            color: #f8f8f8;
            font-weight: 600;
            line-height: 1.9;
        }
        .player-quote {
            background-color: rgba(0,123,255,0.1);
            border-radius: 15px;
            padding: 25px 30px;
            margin: 40px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-top: 4px solid #007bff;
        }
        .player-quote p {
            font-style: italic;
            color: #d1e7ff;
            margin-bottom: 15px;
        }
        .player-quote .quote-author {
            font-size: 19px;
            color: #00d2d3;
            font-weight: 600;
            text-align: right;
        }
        .game-img {
            width: 100%;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
            border: 4px solid #ff6b00;
        }
        .img-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 35px;
            margin: 60px 0;
        }
        .img-grid img {
            border-radius: 18px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.25);
            border: 3px solid #28a745;
            transition: transform 0.5s ease;
            width: 100%;
        }
        .img-grid img:hover {
            transform: scale(1.07);
        }
        ul, ol {
            margin: 35px 0 50px 70px;
            font-size: 21px;
            color: #e0e0e0;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 30px;
            line-height: 2.0;
            padding-left: 15px;
        }
        li::marker {
            color: #ffd700;
            font-weight: bold;
            font-size: 24px;
        }
        .game-types-container, .tags-container {
            margin: 70px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }
        .game-type, .tag {
            background-color: rgba(255,255,255,0.08);
            padding: 16px 28px;
            border-radius: 35px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .game-type:hover, .tag:hover {
            transform: translateY(-3px);
            background-color: rgba(255,255,255,0.12);
        }
        .game-type a, .tag a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 700;
            font-size: 19px;
            transition: color 0.3s ease;
        }
        .game-type a:hover, .tag a:hover {
            color: #ff6b00;
        }
        footer {
            background-color: #0a0a12;
            padding: 80px 0 50px;
            margin-top: 120px;
            color: #cccccc;
            border-top: 2px solid #ff6b00;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd700;
            font-size: 28px;
            margin-bottom: 35px;
            border-bottom: 2px solid #ff6b00;
            padding-bottom: 18px;
        }
        .copyright {
            text-align: center;
            color: #999999;
            font-size: 19px;
            margin-top: 80px;
            padding-top: 40px;
            border-top: 1px solid #222222;
        }
        .recommendation {
            font-size: 24px;
            color: #f0f0f0;
            text-align: center;
            margin: 40px 0;
            line-height: 2.0;
        }
        .recommendation a {
            color: #ff6b00;
            text-decoration: none;
            font-weight: 800;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 30px;
            }
            h1 {
                font-size: 46px;
            }
            h2 {
                font-size: 34px;
            }
            h3 {
                font-size: 29px;
            }
            p, ul, ol {
                font-size: 20px;
            }
            .btn {
                padding: 16px 32px;
                font-size: 20px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            .img-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .indian-note {
                padding: 25px 30px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #d40000, #ff6b00);
                padding: 40px 35px;
                gap: 30px;
                box-shadow: 0 15px 20px rgba(0,0,0,0.3);
                border-top: 1px solid rgba(255,255,255,0.3);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
            }
            h1 {
                font-size: 40px;
                margin: 60px 0 40px;
            }
            h2 {
                font-size: 30px;
                margin: 70px 0 35px;
            }
            h3 {
                font-size: 27px;
            }
            h4 {
                font-size: 24px;
            }
            p, ul, ol {
                font-size: 19px;
            }
            .btn {
                width: 100%;
                margin: 15px 0;
                padding: 18px 25px;
                font-size: 20px;
            }
            .img-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            ul, ol {
                margin-left: 50px;
            }
            .logo {
                font-size: 36px;
            }
            .player-quote {
                padding: 20px 25px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 34px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 25px;
            }
            p, ul, ol {
                font-size: 18px;
            }
            .container {
                padding: 0 15px;
            }
            .nav-container {
                padding: 0 15px;
            }
            .btn {
                padding: 16px 20px;
                font-size: 18px;
            }
            .indian-note p {
                font-size: 20px;
            }
            .recommendation {
                font-size: 22px;
            }
        }
