* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a192f;
            color: #f8f9fa;
            line-height: 1.8;
            padding-bottom: 120px;
            font-size: 18px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #007bff, #28a745);
            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: 40px;
            font-weight: 900;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            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: #ffffff;
            -webkit-text-fill-color: #ffffff;
        }
        .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;
            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(-2px);
        }
        .daman-link {
            background-color: #ffd700;
            color: #0a192f !important;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 700;
            box-shadow: 0 3px 6px rgba(255,215,0,0.3);
        }
        .daman-link:hover {
            background-color: #ffc107;
            box-shadow: 0 5px 10px rgba(255,215,0,0.5);
        }
        .menu-btn {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: #ffffff;
            background: none;
            border: none;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            text-align: center;
            font-size: 20px;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
            min-width: 220px;
        }
        .btn-download {
            background: linear-gradient(135deg, #ff6b00, #ff3d00);
            color: white;
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255,107,0,0.4);
        }
        .btn-login {
            background: linear-gradient(135deg, #ffd700, #ffab00);
            color: #0a192f;
        }
        .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255,215,0,0.4);
        }
        h1 {
            font-size: 48px;
            color: #ffd700;
            text-align: center;
            margin: 60px 0 30px;
            line-height: 1.6;
            text-shadow: 0 3px 8px 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: 36px;
            color: #28a745;
            margin: 70px 0 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid rgba(40,167,69,0.2);
            position: relative;
            font-weight: 800;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background-color: #28a745;
        }
        h3 {
            font-size: 30px;
            color: #00d2d3;
            margin: 50px 0 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 700;
        }
        h3::before {
            content: '⚽';
        }
        h4 {
            font-size: 24px;
            color: #ff6b00;
            margin: 40px 0 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h4::before {
            content: '🔥';
        }
        p {
            margin-bottom: 25px;
            font-size: 19px;
            color: #e9ecef;
            line-height: 1.9;
            text-align: justify;
            letter-spacing: 0.3px;
        }
        .highlight {
            font-weight: 800;
            color: #ffd700;
            text-shadow: 0 0 4px rgba(255,215,0,0.2);
        }
        .desi-note {
            background-color: rgba(255,107,0,0.1);
            border-left: 6px solid #ff6b00;
            padding: 25px 30px;
            border-radius: 0 12px 12px 0;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        .desi-note p {
            margin-bottom: 0;
            font-size: 20px;
            color: #f8f8f8;
            font-weight: 600;
            line-height: 1.8;
        }
        .player-quote {
            background-color: rgba(0,123,255,0.1);
            border-radius: 12px;
            padding: 20px 25px;
            margin: 35px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 3px solid #007bff;
        }
        .player-quote p {
            font-style: italic;
            color: #d1e7ff;
            margin-bottom: 12px;
        }
        .player-quote .quote-author {
            font-size: 18px;
            color: #00d2d3;
            font-weight: 600;
            text-align: right;
        }
        .game-img {
            width: 100%;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            border: 3px solid #ffd700;
        }
        .img-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .img-grid img {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
            border: 2px solid #28a745;
            transition: transform 0.4s ease;
            width: 100%;
        }
        .img-grid img:hover {
            transform: scale(1.05);
        }
        ul, ol {
            margin: 30px 0 40px 60px;
            font-size: 19px;
            color: #e9ecef;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 20px;
            line-height: 1.9;
            padding-left: 12px;
        }
        li::marker {
            color: #ffd700;
            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: rgba(255,255,255,0.08);
            padding: 12px 24px;
            border-radius: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .game-type:hover, .tag:hover {
            transform: translateY(-2px);
            background-color: rgba(255,255,255,0.12);
        }
        .game-type a, .tag a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: color 0.3s ease;
        }
        .game-type a:hover, .tag a:hover {
            color: #ff6b00;
        }
        footer {
            background-color: #05101f;
            padding: 70px 0 40px;
            margin-top: 100px;
            color: #cccccc;
            border-top: 2px solid #ffd700;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffd700;
            font-size: 26px;
            margin-bottom: 30px;
            border-bottom: 2px solid #ff6b00;
            padding-bottom: 15px;
        }
        .copyright {
            text-align: center;
            color: #999999;
            font-size: 18px;
            margin-top: 70px;
            padding-top: 30px;
            border-top: 1px solid #222222;
        }
        .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: 18px;
            }
            .btn {
                padding: 14px 28px;
                font-size: 19px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            .img-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .desi-note {
                padding: 20px 25px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #007bff, #28a745);
                padding: 30px 25px;
                gap: 25px;
                box-shadow: 0 12px 15px 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: 38px;
                margin: 50px 0 25px;
            }
            h2 {
                font-size: 29px;
                margin: 60px 0 25px;
            }
            h3 {
                font-size: 26px;
            }
            h4 {
                font-size: 22px;
            }
            p, ul, ol {
                font-size: 17px;
            }
            .btn {
                width: 100%;
                margin: 10px 0;
                padding: 15px 20px;
                font-size: 18px;
            }
            .img-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            ul, ol {
                margin-left: 40px;
            }
            .logo {
                font-size: 34px;
            }
            .player-quote {
                padding: 18px 22px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 24px;
            }
            p, ul, ol {
                font-size: 16px;
            }
            .container {
                padding: 0 15px;
            }
            .nav-container {
                padding: 0 15px;
            }
            .btn {
                padding: 14px 18px;
                font-size: 17px;
            }
            .desi-note p {
                font-size: 18px;
            }
            .recommendation {
                font-size: 20px;
            }
        }
