* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f4e9;
            color: #2d3748;
            line-height: 1.9;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .nav-container {
            background-color: #1a202c;
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 12px rgba(0,0,0,0.2);
        }
        .nav-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffc107;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #ffffff;
            font-size: 2rem;
        }
        .logo .vanguard {
            color: #4299e1;
            font-size: 2.2rem;
        }
        .logo .tm {
            font-size: 1.1rem;
            vertical-align: top;
            color: #ffc107;
        }
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            position: relative;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #ffc107;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffc107;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .daman-link {
            background-color: #ffc107;
            color: #1a202c !important;
            padding: 12px 25px;
            border-radius: 35px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .daman-link:hover {
            background-color: #ffdd57;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
        }
        .daman-link::after {
            display: none;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #ffc107;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            background-color: #1a202c;
            padding: 30px;
            flex-direction: column;
            gap: 30px;
            border-top: 2px solid #2d3748;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: color 0.3s ease;
            padding: 10px 0;
            border-bottom: 1px solid #2d3748;
        }
        .mobile-nav a:hover {
            color: #ffc107;
        }
        .mobile-nav .daman-link {
            width: 100%;
            text-align: center;
            padding: 15px;
            border-radius: 35px;
            border-bottom: none;
            margin-top: 10px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px 30px;
        }
        h1 {
            font-size: 3rem;
            color: #1a202c;
            margin-bottom: 50px;
            text-align: center;
            font-weight: 900;
            border-bottom: 5px solid #ffc107;
            padding-bottom: 25px;
            text-transform: capitalize;
            line-height: 1.4;
        }
        h2 {
            font-size: 2.4rem;
            color: #1a202c;
            margin: 70px 0 30px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 15px;
            text-transform: capitalize;
            position: relative;
            padding-left: 20px;
        }
        h2::before {
            content: "⚔️";
            font-size: 2rem;
        }
        h2::after {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 85%;
            background-color: #ffc107;
            border-radius: 6px;
        }
        h3 {
            font-size: 1.8rem;
            color: #2d3748;
            margin: 50px 0 22px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: capitalize;
        }
        h3::before {
            content: "🔥";
            font-size: 1.6rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #4a5568;
            margin: 35px 0 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: capitalize;
        }
        h4::before {
            content: "🌟";
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #4a5568;
            padding: 0 5px;
        }
        .highlight {
            font-weight: 800;
            color: #1a202c;
            background-color: #fff3cd;
            padding: 3px 8px;
            border-radius: 6px;
        }
        .desi-note {
            background-color: #fff8e6;
            border-left: 6px solid #ed8936;
            padding: 25px;
            margin: 40px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 15px rgba(237, 137, 54, 0.15);
        }
        .desi-note p {
            margin: 0;
            font-size: 1.2rem;
            color: #744210;
            font-weight: 600;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .desi-note p::before {
            content: "📣";
            font-size: 1.4rem;
            margin-top: 5px;
        }
        .button-container {
            display: flex;
            gap: 30px;
            margin: 50px 0;
            flex-wrap: wrap;
            justify-content: center;
            padding: 15px 0;
        }
        .btn {
            padding: 20px 40px;
            border-radius: 40px;
            font-size: 1.3rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            min-width: 250px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #22c55e;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .download-btn:hover {
            background-color: #16a34a;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
        }
        .login-btn {
            background-color: #3b82f6;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .login-btn:hover {
            background-color: #2563eb;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
            padding: 15px;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            border: 5px solid #ffffff;
        }
        .img-caption {
            margin-top: 20px;
            font-size: 1.1rem;
            color: #718096;
            font-style: italic;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 7px 20px rgba(0,0,0,0.15);
        }
        .stats-table th, .stats-table td {
            padding: 20px 25px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
            font-size: 1.1rem;
        }
        .stats-table th {
            background-color: #1a202c;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .stats-table tr:nth-child(even) {
            background-color: #f7fafc;
        }
        .stats-table tr:hover {
            background-color: #edf2f7;
            transform: scale(1.005);
            transition: transform 0.2s ease;
        }
        .bullet-list {
            margin: 30px 0 30px 50px;
        }
        .bullet-list li {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #4a5568;
            position: relative;
            padding-left: 25px;
        }
        .bullet-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #ed8936;
            font-weight: bold;
            font-size: 1.8rem;
            line-height: 1.3;
        }
        .numbered-list {
            margin: 30px 0 30px 50px;
            list-style-type: decimal;
        }
        .numbered-list li {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #4a5568;
            padding-left: 15px;
        }
        section {
            margin-bottom: 60px;
        }
        .player-quote {
            background-color: #e8f4f8;
            border-left: 5px solid #3b82f6;
            padding: 22px 30px;
            margin: 40px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: #2d3748;
            position: relative;
            font-size: 1.15rem;
        }
        .player-quote::before {
            content: '"';
            position: absolute;
            top: -15px;
            left: 15px;
            font-size: 3.5rem;
            color: #3b82f6;
            opacity: 0.3;
            font-style: normal;
        }
        .player-quote::after {
            content: '"';
            position: absolute;
            bottom: -25px;
            right: 15px;
            font-size: 3.5rem;
            color: #3b82f6;
            opacity: 0.3;
            font-style: normal;
        }
        .quote-author {
            display: block;
            margin-top: 15px;
            font-style: normal;
            font-weight: 700;
            color: #1a202c;
            text-align: right;
            font-size: 1.05rem;
        }
        .bottom-container {
            max-width: 1400px;
            margin: 100px auto 60px;
            padding: 0 30px;
        }
        .game-types {
            background-color: white;
            padding: 35px;
            border-radius: 15px;
            margin-bottom: 50px;
            box-shadow: 0 7px 20px rgba(0,0,0,0.15);
        }
        .game-types h3 {
            margin-top: 0;
            margin-bottom: 30px;
            color: #1a202c;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .type-links a {
            color: #3b82f6;
            text-decoration: none;
            padding: 12px 25px;
            border: 2px solid #3b82f6;
            border-radius: 35px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .type-links a:hover {
            background-color: #3b82f6;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(59, 130, 246, 0.3);
        }
        .tags {
            background-color: white;
            padding: 35px;
            border-radius: 15px;
            margin-bottom: 50px;
            box-shadow: 0 7px 20px rgba(0,0,0,0.15);
        }
        .tags h3 {
            margin-top: 0;
            margin-bottom: 30px;
            color: #1a202c;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .tag-links a {
            color: #9f7aea;
            text-decoration: none;
            padding: 10px 22px;
            border: 2px solid #9f7aea;
            border-radius: 30px;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag-links a:hover {
            background-color: #9f7aea;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(159, 122, 234, 0.3);
        }
        .recommendation {
            background-color: #f0f8fb;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 50px;
            text-align: center;
            font-size: 1.25rem;
            color: #1a202c;
            font-weight: 600;
            box-shadow: 0 7px 20px rgba(0,0,0,0.08);
            line-height: 2;
        }
        .recommendation strong {
            color: #3b82f6;
        }
        .copyright {
            text-align: center;
            color: #718096;
            font-size: 1.1rem;
            padding: 30px 0;
            border-top: 1px solid #e2e8f0;
            margin-top: 50px;
        }
        .copyright a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 30px;
            }
            .logo {
                font-size: 2.2rem;
            }
            .logo span {
                font-size: 1.8rem;
            }
            .logo .vanguard {
                font-size: 2rem;
            }
            h1 {
                font-size: 2.7rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .btn {
                padding: 18px 35px;
                min-width: 230px;
                font-size: 1.2rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 2rem;
            }
            .logo span {
                font-size: 1.6rem;
            }
            .logo .vanguard {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.4rem;
                margin-bottom: 40px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 2rem;
                margin: 60px 0 25px;
                gap: 12px;
            }
            h2::before {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.6rem;
                margin: 45px 0 20px;
            }
            h4 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 22px;
            }
            .button-container {
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }
            .btn {
                width: 100%;
                max-width: 400px;
                padding: 18px;
                font-size: 1.2rem;
            }
            .stats-table th, .stats-table td {
                padding: 18px 15px;
                font-size: 1.05rem;
            }
            .bullet-list, .numbered-list {
                margin-left: 40px;
            }
            .desi-note {
                padding: 20px;
            }
            .desi-note p {
                font-size: 1.1rem;
            }
            .img-caption {
                font-size: 1rem;
            }
            .game-types, .tags {
                padding: 30px;
            }
            .type-links, .tag-links {
                gap: 15px;
            }
            .type-links a {
                padding: 10px 20px;
                font-size: 1.05rem;
            }
            .tag-links a {
                padding: 8px 18px;
                font-size: 1rem;
            }
            .recommendation {
                padding: 25px;
                font-size: 1.15rem;
            }
        }
        @media (max-width: 768px) {
            .nav-wrapper {
                padding: 0 20px;
            }
            .logo {
                font-size: 1.8rem;
            }
            .logo span {
                font-size: 1.4rem;
            }
            .logo .vanguard {
                font-size: 1.6rem;
            }
            .mobile-nav {
                padding: 25px 20px;
                gap: 25px;
            }
            .container {
                padding: 40px 20px;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.8rem;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.5rem;
            }
            h4 {
                font-size: 1.2rem;
            }
            .stats-table {
                margin: 40px 0;
            }
            .stats-table th, .stats-table td {
                padding: 15px 10px;
                font-size: 1rem;
            }
            .button-container {
                gap: 20px;
            }
            .btn {
                max-width: 100%;
                font-size: 1.1rem;
            }
            .game-types, .tags {
                padding: 25px 20px;
            }
            .type-links a {
                padding: 8px 15px;
                font-size: 1rem;
            }
            .tag-links a {
                padding: 7px 15px;
                font-size: 0.95rem;
            }
            .copyright {
                font-size: 1rem;
                padding: 25px 0;
            }
        }
        @media (max-width: 576px) {
            .nav-wrapper {
                padding: 0 15px;
            }
            .logo {
                font-size: 1.6rem;
                gap: 5px;
            }
            .logo span {
                font-size: 1.2rem;
            }
            .logo .vanguard {
                font-size: 1.4rem;
            }
            .mobile-nav {
                padding: 20px 15px;
                gap: 20px;
            }
            .container {
                padding: 30px 15px;
            }
            h1 {
                font-size: 1.9rem;
                border-bottom: 4px solid #ffc107;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 50px 0 20px;
                padding-left: 12px;
            }
            h2::before {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.4rem;
                margin: 40px 0 18px;
            }
            h4 {
                font-size: 1.1rem;
            }
            p {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            .bullet-list, .numbered-list {
                margin-left: 30px;
            }
            .bullet-list li, .numbered-list li {
                font-size: 1rem;
                margin-bottom: 15px;
            }
            .desi-note {
                padding: 15px;
            }
            .desi-note p {
                font-size: 1rem;
                gap: 8px;
            }
            .img-container {
                margin: 30px 0;
                padding: 10px;
            }
            .img-caption {
                font-size: 0.95rem;
            }
            .stats-table th, .stats-table td {
                padding: 12px 8px;
                font-size: 0.95rem;
            }
            .button-container {
                gap: 15px;
            }
            .btn {
                padding: 15px;
                font-size: 1rem;
                min-width: 200px;
            }
            .game-types, .tags {
                padding: 20px 15px;
            }
            .type-links, .tag-links {
                gap: 10px;
            }
            .type-links a {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
            .tag-links a {
                padding: 5px 12px;
                font-size: 0.9rem;
            }
            .recommendation {
                padding: 20px;
                font-size: 1.05rem;
                line-height: 1.8;
            }
            .copyright {
                font-size: 0.95rem;
                padding: 20px 0;
            }
        }
