* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f0f2f5;
            color: #1e293b;
            line-height: 1.8;
            padding-bottom: 100px;
            font-size: 16px;
        }
        .nav-container {
            background-color: #0f172a;
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .nav-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.4rem;
            font-weight: 900;
            color: #f97316;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo .raiders {
            color: #38bdf8;
        }
        .logo .indore {
            color: #ffffff;
            font-size: 2rem;
        }
        .logo .rampage {
            color: #f97316;
            font-size: 2.2rem;
        }
        .logo .tm {
            font-size: 1rem;
            vertical-align: top;
            color: #f97316;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            position: relative;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            color: #f97316;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #f97316;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .daman-link {
            background-color: #f97316;
            color: #0f172a !important;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .daman-link:hover {
            background-color: #ea580c;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
        }
        .daman-link::after {
            display: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f97316;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            background-color: #0f172a;
            padding: 25px;
            flex-direction: column;
            gap: 25px;
            border-top: 2px solid #1e293b;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            padding: 8px 0;
            border-bottom: 1px solid #1e293b;
        }
        .mobile-nav a:hover {
            color: #f97316;
        }
        .mobile-nav .daman-link {
            width: 100%;
            text-align: center;
            padding: 12px;
            border-radius: 30px;
            border-bottom: none;
            margin-top: 5px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 45px 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: #0f172a;
            margin-bottom: 45px;
            text-align: center;
            font-weight: 900;
            border-bottom: 4px solid #f97316;
            padding-bottom: 20px;
            text-transform: capitalize;
            line-height: 1.5;
        }
        h2 {
            font-size: 2.2rem;
            color: #0f172a;
            margin: 65px 0 28px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: capitalize;
            position: relative;
            padding-left: 18px;
        }
        h2::before {
            content: "🔫";
            font-size: 1.9rem;
        }
        h2::after {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 80%;
            background-color: #f97316;
            border-radius: 5px;
        }
        h3 {
            font-size: 1.7rem;
            color: #1e293b;
            margin: 45px 0 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: capitalize;
        }
        h3::before {
            content: "🔥";
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #334155;
            margin: 30px 0 16px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: capitalize;
        }
        h4::before {
            content: "⭐";
            font-size: 1.1rem;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.05rem;
            color: #334155;
            padding: 0 4px;
        }
        .highlight {
            font-weight: 800;
            color: #0f172a;
            background-color: #fed7aa;
            padding: 2px 6px;
            border-radius: 4px;
        }
        .desi-note {
            background-color: #fff7ed;
            border-left: 5px solid #f97316;
            padding: 22px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 3px 12px rgba(249, 115, 22, 0.1);
        }
        .desi-note p {
            margin: 0;
            font-size: 1.1rem;
            color: #7c2d12;
            font-weight: 600;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .desi-note p::before {
            content: "📢";
            font-size: 1.3rem;
            margin-top: 3px;
        }
        .button-container {
            display: flex;
            gap: 25px;
            margin: 45px 0;
            flex-wrap: wrap;
            justify-content: center;
            padding: 12px 0;
        }
        .btn {
            padding: 18px 35px;
            border-radius: 35px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            min-width: 230px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            box-shadow: 0 5px 12px rgba(0,0,0,0.12);
        }
        .download-btn {
            background-color: #10b981;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .download-btn:hover {
            background-color: #059669;
            transform: translateY(-3px);
            box-shadow: 0 7px 18px rgba(16, 185, 129, 0.35);
        }
        .login-btn {
            background-color: #3b82f6;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .login-btn:hover {
            background-color: #2563eb;
            transform: translateY(-3px);
            box-shadow: 0 7px 18px rgba(59, 130, 246, 0.35);
        }
        .img-container {
            margin: 45px 0;
            text-align: center;
            padding: 12px;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
            border: 4px solid #ffffff;
        }
        .img-caption {
            margin-top: 18px;
            font-size: 1rem;
            color: #64748b;
            font-style: italic;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 45px 0;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .stats-table th, .stats-table td {
            padding: 18px 22px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
            font-size: 1.05rem;
        }
        .stats-table th {
            background-color: #0f172a;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .stats-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        .stats-table tr:hover {
            background-color: #f1f5f9;
            transform: scale(1.003);
            transition: transform 0.2s ease;
        }
        .bullet-list {
            margin: 28px 0 28px 45px;
        }
        .bullet-list li {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #334155;
            position: relative;
            padding-left: 22px;
        }
        .bullet-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #f97316;
            font-weight: bold;
            font-size: 1.6rem;
            line-height: 1.2;
        }
        .numbered-list {
            margin: 28px 0 28px 45px;
            list-style-type: decimal;
        }
        .numbered-list li {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #334155;
            padding-left: 12px;
        }
        section {
            margin-bottom: 55px;
        }
        .player-quote {
            background-color: #e0f2fe;
            border-left: 4px solid #3b82f6;
            padding: 20px 28px;
            margin: 35px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #075985;
            position: relative;
            font-size: 1.1rem;
        }
        .player-quote::before {
            content: '"';
            position: absolute;
            top: -12px;
            left: 12px;
            font-size: 3rem;
            color: #3b82f6;
            opacity: 0.25;
            font-style: normal;
        }
        .player-quote::after {
            content: '"';
            position: absolute;
            bottom: -20px;
            right: 12px;
            font-size: 3rem;
            color: #3b82f6;
            opacity: 0.25;
            font-style: normal;
        }
        .quote-author {
            display: block;
            margin-top: 12px;
            font-style: normal;
            font-weight: 700;
            color: #0f172a;
            text-align: right;
            font-size: 1rem;
        }
        .bottom-container {
            max-width: 1400px;
            margin: 90px auto 50px;
            padding: 0 30px;
        }
        .game-types {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 45px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .game-types h3 {
            margin-top: 0;
            margin-bottom: 25px;
            color: #0f172a;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .type-links a {
            color: #3b82f6;
            text-decoration: none;
            padding: 10px 22px;
            border: 2px solid #3b82f6;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1rem;
        }
        .type-links a:hover {
            background-color: #3b82f6;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(59, 130, 246, 0.25);
        }
        .tags {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 45px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .tags h3 {
            margin-top: 0;
            margin-bottom: 25px;
            color: #0f172a;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag-links a {
            color: #8b5cf6;
            text-decoration: none;
            padding: 8px 20px;
            border: 2px solid #8b5cf6;
            border-radius: 28px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag-links a:hover {
            background-color: #8b5cf6;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(139, 92, 246, 0.25);
        }
        .recommendation {
            background-color: #f5fafe;
            padding: 28px;
            border-radius: 12px;
            margin-bottom: 45px;
            text-align: center;
            font-size: 1.15rem;
            color: #0f172a;
            font-weight: 600;
            box-shadow: 0 6px 18px rgba(0,0,0,0.07);
            line-height: 1.9;
        }
        .recommendation strong {
            color: #3b82f6;
        }
        .copyright {
            text-align: center;
            color: #64748b;
            font-size: 1rem;
            padding: 25px 0;
            border-top: 1px solid #e2e8f0;
            margin-top: 45px;
        }
        .copyright a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
        }
        .strategy-card {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 4px solid #10b981;
        }
        .strategy-card h4 {
            margin-top: 0;
            color: #059669;
        }
        .strategy-card p {
            margin-bottom: 15px;
        }
        .strategy-card .author {
            font-style: italic;
            color: #64748b;
            font-size: 0.95rem;
            text-align: right;
        }
        .event-card {
            background-color: #fef7fb;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 4px solid #f97316;
        }
        .event-card h4 {
            margin-top: 0;
            color: #ea580c;
        }
        .event-date {
            display: inline-block;
            background-color: #fed7aa;
            color: #7c2d12;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        .community-discussion {
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .community-discussion h4 {
            margin-top: 0;
            color: #0f172a;
        }
        .discussion-topic {
            font-weight: 700;
            color: #3b82f6;
            margin: 15px 0 8px;
        }
        .discussion-reply {
            margin-left: 20px;
            padding-left: 15px;
            border-left: 2px solid #cbd5e1;
            margin-bottom: 15px;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 30px;
            }
            .logo {
                font-size: 2.2rem;
            }
            .logo .indore {
                font-size: 1.8rem;
            }
            .logo .rampage {
                font-size: 2rem;
            }
            h1 {
                font-size: 2.6rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .btn {
                padding: 16px 32px;
                min-width: 210px;
                font-size: 1.1rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 2rem;
            }
            .logo .indore {
                font-size: 1.6rem;
            }
            .logo .rampage {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.3rem;
                margin-bottom: 40px;
                padding-bottom: 18px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 60px 0 25px;
                gap: 10px;
            }
            h2::before {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.5rem;
                margin: 40px 0 18px;
            }
            h4 {
                font-size: 1.25rem;
            }
            p {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            .button-container {
                flex-direction: column;
                align-items: center;
                gap: 22px;
            }
            .btn {
                width: 100%;
                max-width: 380px;
                padding: 16px;
                font-size: 1.1rem;
            }
            .stats-table th, .stats-table td {
                padding: 16px 18px;
                font-size: 1rem;
            }
            .bullet-list, .numbered-list {
                margin-left: 40px;
            }
            .desi-note {
                padding: 20px;
            }
            .desi-note p {
                font-size: 1.05rem;
            }
            .img-caption {
                font-size: 0.95rem;
            }
            .game-types, .tags {
                padding: 28px;
            }
            .type-links, .tag-links {
                gap: 15px;
            }
            .type-links a {
                padding: 9px 18px;
                font-size: 1rem;
            }
            .tag-links a {
                padding: 7px 18px;
                font-size: 0.95rem;
            }
            .recommendation {
                padding: 25px;
                font-size: 1.1rem;
            }
        }
        @media (max-width: 768px) {
            .nav-wrapper {
                padding: 0 20px;
            }
            .logo {
                font-size: 1.8rem;
            }
            .logo .indore {
                font-size: 1.4rem;
            }
            .logo .rampage {
                font-size: 1.6rem;
            }
            .mobile-nav {
                padding: 22px 20px;
                gap: 22px;
            }
            .container {
                padding: 40px 20px;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.7rem;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.45rem;
            }
            h4 {
                font-size: 1.2rem;
            }
            .stats-table {
                margin: 40px 0;
            }
            .stats-table th, .stats-table td {
                padding: 14px 12px;
                font-size: 0.95rem;
            }
            .button-container {
                gap: 18px;
            }
            .btn {
                max-width: 100%;
                font-size: 1.05rem;
            }
            .game-types, .tags {
                padding: 25px 20px;
            }
            .type-links a {
                padding: 8px 15px;
                font-size: 0.95rem;
            }
            .tag-links a {
                padding: 6px 15px;
                font-size: 0.9rem;
            }
            .copyright {
                font-size: 0.95rem;
                padding: 22px 0;
            }
            .strategy-card, .event-card, .community-discussion {
                padding: 22px;
            }
        }
        @media (max-width: 576px) {
            .nav-wrapper {
                padding: 0 15px;
            }
            .logo {
                font-size: 1.6rem;
                gap: 5px;
            }
            .logo .indore {
                font-size: 1.2rem;
            }
            .logo .rampage {
                font-size: 1.4rem;
            }
            .mobile-nav {
                padding: 18px 15px;
                gap: 18px;
            }
            .container {
                padding: 35px 15px;
            }
            h1 {
                font-size: 1.9rem;
                border-bottom: 3px solid #f97316;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.5rem;
                margin: 50px 0 20px;
                padding-left: 12px;
            }
            h2::before {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.35rem;
                margin: 35px 0 16px;
            }
            h4 {
                font-size: 1.1rem;
            }
            p {
                font-size: 0.95rem;
                margin-bottom: 18px;
            }
            .bullet-list, .numbered-list {
                margin-left: 30px;
            }
            .bullet-list li, .numbered-list li {
                font-size: 0.95rem;
                margin-bottom: 15px;
            }
            .desi-note {
                padding: 18px;
            }
            .desi-note p {
                font-size: 0.95rem;
                gap: 8px;
            }
            .img-container {
                margin: 35px 0;
                padding: 8px;
            }
            .img-caption {
                font-size: 0.9rem;
            }
            .stats-table th, .stats-table td {
                padding: 12px 8px;
                font-size: 0.9rem;
            }
            .button-container {
                gap: 15px;
            }
            .btn {
                padding: 14px;
                font-size: 1rem;
                min-width: 180px;
            }
            .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.85rem;
            }
            .recommendation {
                padding: 20px;
                font-size: 1rem;
                line-height: 1.7;
            }
            .copyright {
                font-size: 0.9rem;
                padding: 18px 0;
            }
            .strategy-card, .event-card, .community-discussion {
                padding: 20px;
            }
            .discussion-reply {
                margin-left: 15px;
                padding-left: 10px;
            }
        }
