:root {
            --primary: #8B0000;
            --secondary: #FFD700;
            --accent: #228B22;
            --light: #F5F5F5;
            --dark: #1A1A1A;
            --gray: #696969;
            --spacing: 1.5rem;
            --border-radius: 10px;
            --shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #F8F8F8;
            color: var(--dark);
            line-height: 1.8;
            padding-bottom: 5rem;
            font-size: 16px;
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: var(--shadow);
            transition: background-color 0.3s ease;
        }
        header:hover {
            background-color: #700000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-family: 'Courier New', Courier, monospace;
        }
        .logo span {
            color: white;
            font-style: italic;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2.2rem;
            align-items: center;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.08rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
        }
        nav a:hover {
            color: var(--secondary);
            border-bottom: 2px solid var(--secondary);
        }
        .btn {
            padding: 0.9rem 1.8rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 1.05rem;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: var(--secondary);
            color: var(--dark);
            margin-right: 1rem;
        }
        .btn-download:hover {
            background-color: #E6C200;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.3);
        }
        .btn-login {
            background-color: var(--accent);
            color: white;
        }
        .btn-login:hover {
            background-color: #1E7D1E;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.3);
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: var(--secondary);
            background: none;
            border: none;
        }
        .hero {
            background: linear-gradient(rgba(139, 0, 0, 0.85), rgba(139, 0, 0, 0.9)), url('https://host.com/images/overlord-hero.jpg') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            text-align: center;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            margin-bottom: 4rem;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://host.com/images/indian-pattern.png');
            background-size: 200px;
            opacity: 0.05;
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 3.8rem;
            margin-bottom: 1.8rem;
            color: var(--secondary);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            line-height: 1.3;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero p {
            font-size: 1.35rem;
            max-width: 900px;
            margin: 0 auto 3rem;
            opacity: 0.95;
            line-height: 1.9;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        .tagline {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 2rem;
            color: #FFE4B5;
            font-style: italic;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 2.5rem;
            margin-bottom: 5rem;
        }
        .content-section {
            background: white;
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
            border-top: 5px solid var(--secondary);
        }
        .content-section h2 {
            color: var(--primary);
            font-size: 2.3rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .content-section h3 {
            color: var(--accent);
            font-size: 1.7rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.8rem;
            border-left: 4px solid var(--primary);
        }
        .content-section h4 {
            color: var(--primary);
            font-size: 1.3rem;
            margin: 1.8rem 0 1rem;
        }
        .content-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
            line-height: 1.9;
        }
        .content-section img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.18);
            transition: transform 0.3s ease;
        }
        .content-section img:hover {
            transform: scale(1.02);
        }
        .feature-list {
            list-style: none;
            margin: 2rem 0;
        }
        .feature-list li {
            padding: 1.2rem 0 1.2rem 2.5rem;
            position: relative;
            border-bottom: 1px solid #F0F0F0;
            font-size: 1.05rem;
        }
        .feature-list li:before {
            content: "🎯";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 1.3rem;
        }
        .feature-list li:last-child {
            border-bottom: none;
        }
        .quote {
            font-style: italic;
            padding: 2rem;
            background-color: #FFF8DC;
            border-left: 5px solid var(--secondary);
            margin: 2.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            font-size: 1.1rem;
            line-height: 2;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 1rem;
            font-weight: 600;
            color: var(--primary);
            font-style: normal;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background-color: #F9F9F9;
            padding: 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid #E0E0E0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.12);
            background-color: #FFF8E1;
        }
        .stat-card h4 {
            color: var(--primary);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stat-card .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
        }
        .highlight-box {
            background-color: #FFF8DC;
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
            border: 1px solid #FFE4B5;
        }
        .highlight-box h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .highlight-box ul {
            padding-left: 1.5rem;
        }
        .highlight-box li {
            margin-bottom: 0.8rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        .sidebar-widget {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border-top: 4px solid var(--accent);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #F0F0F0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .widget-links {
            list-style: none;
        }
        .widget-links li {
            margin-bottom: 1rem;
        }
        .widget-links a {
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.02rem;
            padding: 0.3rem 0;
        }
        .widget-links a:before {
            content: "🔥";
        }
        .widget-links a:hover {
            color: var(--primary);
            padding-left: 0.8rem;
            font-weight: 600;
        }
        .daman-badge {
            background-color: var(--secondary);
            color: var(--dark);
            padding: 0.7rem 1.2rem;
            border-radius: var(--border-radius);
            font-weight: 700;
            display: inline-block;
            margin: 1.5rem 0;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .news-item {
            margin-bottom: 1.8rem;
            padding-bottom: 1.8rem;
            border-bottom: 1px solid #F0F0F0;
        }
        .news-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .news-date {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            display: block;
        }
        .news-title {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        .news-excerpt {
            font-size: 0.98rem;
            color: #4A4A4A;
        }
        .tabs {
            display: flex;
            gap: 1.2rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid #E0E0E0;
            padding-bottom: 0.8rem;
            overflow-x: auto;
            scrollbar-width: thin;
        }
        .tabs::-webkit-scrollbar {
            height: 5px;
        }
        .tabs::-webkit-scrollbar-thumb {
            background-color: var(--secondary);
            border-radius: 5px;
        }
        .tab {
            padding: 1rem 1.8rem;
            cursor: pointer;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            background-color: #F8F8F8;
            border: 1px solid #E0E0E0;
            border-bottom: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-weight: 600;
        }
        .tab.active {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        .tab:hover:not(.active) {
            background-color: #F0F0F0;
            border-color: #D0D0D0;
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tab-content.active {
            display: block;
        }
        .bottom-section {
            background: var(--dark);
            color: white;
            padding: 5rem 0 3rem;
            margin-top: 6rem;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            position: relative;
            overflow: hidden;
        }
        .bottom-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://host.com/images/desi-pattern.png');
            background-size: 300px;
            opacity: 0.03;
            z-index: 1;
        }
        .bottom-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3.5rem;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }
        .bottom-column h3 {
            color: var(--secondary);
            font-size: 1.7rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.15);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .game-categories, .game-tags {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .game-categories li, .game-tags li {
            background-color: rgba(255,255,255,0.1);
            padding: 0.7rem 1.3rem;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .game-categories li:hover, .game-tags li:hover {
            background-color: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }
        .game-categories a, .game-tags a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.02rem;
        }
        .game-categories a:hover, .game-tags a:hover {
            color: var(--secondary);
        }
        .recommendation {
            background-color: rgba(255, 215, 0, 0.1);
            padding: 2rem;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--secondary);
            margin-top: 1rem;
        }
        .recommendation h4 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        .recommendation p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            color: var(--secondary);
            transform: translateY(-3px);
        }
        @media (max-width: 1200px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 3.2rem;
            }
        }
        @media (max-width: 992px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 1.5rem;
            }
            nav ul {
                flex-direction: column;
                gap: 1.5rem;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
            }
            .button-group {
                margin-top: 1rem;
                width: 100%;
                display: flex;
                justify-content: flex-end;
            }
            .hero {
                padding: 6rem 0;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .hero {
                padding: 5rem 0;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
            .content-section {
                padding: 2rem;
            }
            .content-section h2 {
                font-size: 2rem;
            }
            .content-section h3 {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .bottom-grid {
                gap: 2.5rem;
            }
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.7rem;
            }
            .hero {
                padding: 4rem 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            .btn {
                width: 100%;
                margin-bottom: 0.5rem;
                margin-right: 0;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .bottom-grid {
                gap: 2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .tabs {
                gap: 0.8rem;
            }
            .tab {
                padding: 0.8rem 1.2rem;
                font-size: 0.9rem;
            }
            .quote {
                padding: 1.5rem;
                font-size: 1rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .bold {
            font-weight: 700;
        }
        .italic {
            font-style: italic;
        }
        .text-primary {
            color: var(--primary);
        }
        .text-secondary {
            color: var(--secondary);
        }
        .text-accent {
            color: var(--accent);
        }
