:root {
            --primary: #FF5722;
            --secondary: #FFD600;
            --accent: #0D47A1;
            --light: #FAFAFA;
            --dark: #121212;
            --gray: #757575;
            --spacing: 1.5rem;
            --border-radius: 10px;
            --shadow: 0 8px 24px 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: #FFFDF5;
            color: var(--dark);
            line-height: 1.8;
            padding-bottom: 12rem;
            font-size: 16px;
            letter-spacing: 0.4px;
        }
        .container {
            width: 96%;
            max-width: 1700px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 1.7rem 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: var(--shadow);
            transition: background-color 0.4s ease;
        }
        header:hover {
            background-color: #E64A19;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: white;
            font-style: italic;
            margin-left: 0.7rem;
            font-family: 'Times New Roman', Times, serif;
        }
        .logo::before {
            content: "🔥";
            margin-right: 1rem;
            font-size: 2.7rem;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 3rem;
            align-items: center;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            padding: 0.7rem 0;
            border-bottom: 3px solid transparent;
            position: relative;
        }
        nav a:hover {
            color: var(--secondary);
            border-bottom: 3px solid var(--secondary);
        }
        nav a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 1.2rem 2.4rem;
            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.1rem;
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }
        .btn-download {
            background-color: var(--secondary);
            color: var(--dark);
            margin-right: 1.5rem;
        }
        .btn-download:hover {
            background-color: #FFC107;
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.38);
        }
        .btn-login {
            background-color: var(--accent);
            color: white;
        }
        .btn-login:hover {
            background-color: #0A3D62;
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.38);
        }
        .hamburger {
            display: none;
            font-size: 2.8rem;
            cursor: pointer;
            color: var(--secondary);
            background: none;
            border: none;
        }
        .hero {
            background: linear-gradient(rgba(255, 87, 34, 0.95), rgba(255, 87, 34, 0.98)), url('https://host.com/images/pepper-flame-conqueror-hero.jpg') center/cover no-repeat;
            color: white;
            padding: 13rem 0;
            text-align: center;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            margin-bottom: 8rem;
            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-spice-pattern-2.png');
            background-size: 320px;
            opacity: 0.12;
            z-index: 1;
            animation: float 30s linear infinite;
        }
        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(30px, 30px) rotate(180deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 5.2rem;
            margin-bottom: 3rem;
            color: var(--secondary);
            text-shadow: 6px 6px 12px rgba(0,0,0,0.7);
            line-height: 1.3;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-family: 'Georgia', serif;
        }
        .hero p {
            font-size: 1.6rem;
            max-width: 1300px;
            margin: 0 auto 4rem;
            opacity: 0.99;
            line-height: 2.2;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 3.5rem;
            flex-wrap: wrap;
            margin-top: 4rem;
        }
        .tagline {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 3.5rem;
            color: #FFF8E1;
            font-style: italic;
            letter-spacing: 0.8px;
        }
        .spicy-badge {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--dark);
            padding: 1rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 12px rgba(0,0,0,0.3);
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 4rem;
            margin-bottom: 9rem;
        }
        .content-section {
            background: white;
            padding: 4.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 5rem;
            border-top: 10px solid var(--secondary);
            position: relative;
            overflow: hidden;
        }
        .content-section::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 250px;
            height: 250px;
            background-color: rgba(255, 214, 0, 0.06);
            border-radius: 0 0 0 var(--border-radius);
        }
        .content-section h2 {
            color: var(--primary);
            font-size: 3rem;
            margin-bottom: 3.5rem;
            padding-bottom: 1.8rem;
            border-bottom: 4px solid var(--secondary);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-family: 'Georgia', serif;
        }
        .content-section h3 {
            color: var(--accent);
            font-size: 2.4rem;
            margin: 4rem 0 2rem;
            padding-left: 1.5rem;
            border-left: 6px solid var(--primary);
            font-family: 'Georgia', serif;
        }
        .content-section h4 {
            color: var(--primary);
            font-size: 1.7rem;
            margin: 3rem 0 1.5rem;
            font-family: 'Georgia', serif;
        }
        .content-section p {
            margin-bottom: 2.2rem;
            text-align: justify;
            font-size: 1.2rem;
            line-height: 2;
        }
        .content-section img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 3.5rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.4s ease;
            border: 5px solid #FFF;
        }
        .content-section img:hover {
            transform: scale(1.05);
        }
        .feature-list {
            list-style: none;
            margin: 3.5rem 0;
        }
        .feature-list li {
            padding: 1.8rem 0 1.8rem 4rem;
            position: relative;
            border-bottom: 1px solid #F5F5F5;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
        }
        .feature-list li:hover {
            background-color: #FFFDF5;
        }
        .feature-list li:before {
            content: "🌶️";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 2rem;
        }
        .feature-list li:last-child {
            border-bottom: none;
        }
        .quote {
            font-style: italic;
            padding: 3.5rem;
            background-color: #F9F9F9;
            border-left: 7px solid var(--secondary);
            margin: 4rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            font-size: 1.4rem;
            line-height: 2.3;
            position: relative;
        }
        .quote::before {
            content: "\"";
            position: absolute;
            top: 1.5rem;
            left: 2rem;
            font-size: 4.5rem;
            color: var(--primary);
            opacity: 0.35;
            font-family: 'Times New Roman', Times, serif;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            font-style: normal;
            font-size: 1.2rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin: 4rem 0;
        }
        .stat-card {
            background-color: #FAFAFA;
            padding: 3.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid #F0F0F0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background-color: var(--primary);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            background-color: #FFFDF5;
        }
        .stat-card h4 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .stat-card .stat-value {
            font-size: 3.8rem;
            font-weight: 900;
            color: var(--primary);
            line-height: 1.5;
        }
        .highlight-box {
            background-color: #FFF8E1;
            padding: 3.5rem;
            border-radius: var(--border-radius);
            margin: 4rem 0;
            border: 1px solid #FFE082;
            position: relative;
        }
        .highlight-box::before {
            content: "🔥";
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 3rem;
        }
        .highlight-box h4 {
            color: var(--primary);
            margin-bottom: 1.8rem;
            font-size: 1.8rem;
        }
        .highlight-box ul {
            padding-left: 3rem;
        }
        .highlight-box li {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            line-height: 2;
        }
        .gameplay-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3.2rem;
            margin: 4rem 0;
        }
        .gameplay-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 8px 22px rgba(0,0,0,0.12);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #F8F8F8;
        }
        .gameplay-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.18);
        }
        .gameplay-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            margin: 0;
            border-bottom: 4px solid var(--secondary);
        }
        .gameplay-card-content {
            padding: 2.5rem;
        }
        .gameplay-card h4 {
            margin-bottom: 1.2rem;
            color: var(--accent);
        }
        .gameplay-card p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }
        .sidebar-widget {
            background: white;
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border-top: 6px solid var(--accent);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            font-size: 1.9rem;
            margin-bottom: 2.2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid #F5F5F5;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-family: 'Georgia', serif;
        }
        .widget-links {
            list-style: none;
        }
        .widget-links li {
            margin-bottom: 1.8rem;
        }
        .widget-links a {
            color: var(--dark);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            font-size: 1.15rem;
            padding: 0.8rem 0;
        }
        .widget-links a:before {
            content: "⚔️";
        }
        .widget-links a:hover {
            color: var(--primary);
            padding-left: 1.5rem;
            font-weight: 700;
            transform: translateX(7px);
        }
        .daman-badge {
            background-color: var(--secondary);
            color: var(--dark);
            padding: 1.2rem 1.8rem;
            border-radius: var(--border-radius);
            font-weight: 700;
            display: inline-block;
            margin: 2.5rem 0;
            text-transform: uppercase;
            font-size: 1.1rem;
            letter-spacing: 1.5px;
            box-shadow: 0 5px 12px rgba(0,0,0,0.18);
        }
        .news-item {
            margin-bottom: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid #F5F5F5;
        }
        .news-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .news-date {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            display: block;
            font-weight: 500;
        }
        .news-title {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        .news-excerpt {
            font-size: 1.15rem;
            color: #424242;
            line-height: 1.9;
        }
        .character-preview {
            margin-bottom: 2.5rem;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
            transition: transform 0.3s ease;
        }
        .character-preview:hover {
            transform: translateY(-6px);
        }
        .character-preview img {
            width: 100%;
            height: auto;
            margin: 0;
        }
        .character-info {
            padding: 1.8rem;
            background-color: #FAFAFA;
        }
        .character-info h4 {
            margin-bottom: 0.7rem;
            color: var(--accent);
            font-size: 1.4rem;
        }
        .character-class {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1.2rem;
            display: block;
        }
        .tabs {
            display: flex;
            gap: 2rem;
            margin-bottom: 3.5rem;
            border-bottom: 1px solid #E0E0E0;
            padding-bottom: 1.5rem;
            overflow-x: auto;
            scrollbar-width: thin;
        }
        .tabs::-webkit-scrollbar {
            height: 10px;
        }
        .tabs::-webkit-scrollbar-thumb {
            background-color: var(--secondary);
            border-radius: 10px;
        }
        .tab {
            padding: 1.4rem 2.5rem;
            cursor: pointer;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            background-color: #F9F9F9;
            border: 1px solid #E0E0E0;
            border-bottom: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .tab.active {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        .tab:hover:not(.active) {
            background-color: #F2F2F2;
            border-color: #D0D0D0;
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.6s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tab-content.active {
            display: block;
        }
        .bottom-section {
            background: var(--dark);
            color: white;
            padding: 8rem 0 6rem;
            margin-top: 9rem;
            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-spice-pattern-3.png');
            background-size: 450px;
            opacity: 0.07;
            z-index: 1;
        }
        .bottom-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 5rem;
            margin-bottom: 7rem;
            position: relative;
            z-index: 2;
        }
        .bottom-column h3 {
            color: var(--secondary);
            font-size: 2.2rem;
            margin-bottom: 3.5rem;
            padding-bottom: 1.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.25);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-family: 'Georgia', serif;
        }
        .game-categories, .game-tags {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
        }
        .game-categories li, .game-tags li {
            background-color: rgba(255,255,255,0.18);
            padding: 1.2rem 2rem;
            border-radius: 40px;
            transition: all 0.3s ease;
        }
        .game-categories li:hover, .game-tags li:hover {
            background-color: rgba(255, 214, 0, 0.28);
            transform: translateY(-5px);
        }
        .game-categories a, .game-tags a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.15rem;
        }
        .game-categories a:hover, .game-tags a:hover {
            color: var(--secondary);
        }
        .recommendation {
            background-color: rgba(255, 214, 0, 0.18);
            padding: 3.5rem;
            border-radius: var(--border-radius);
            border-left: 7px solid var(--secondary);
            margin-top: 2.5rem;
        }
        .recommendation h4 {
            color: var(--secondary);
            margin-bottom: 1.8rem;
            font-size: 1.8rem;
            font-family: 'Georgia', serif;
        }
        .recommendation p {
            margin-bottom: 2.2rem;
            line-height: 2.2;
            font-size: 1.2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 6rem;
            border-top: 1px solid rgba(255,255,255,0.18);
            color: var(--gray);
            font-size: 1.15rem;
            line-height: 2.2;
            position: relative;
            z-index: 2;
        }
        .social-links {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            justify-content: center;
        }
        .social-links a {
            color: white;
            font-size: 2.2rem;
            transition: all 0.3s ease;
            background-color: rgba(255,255,255,0.12);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .social-links a:hover {
            color: var(--secondary);
            transform: translateY(-7px);
            background-color: rgba(255,255,255,0.22);
        }
        .download-links {
            display: flex;
            gap: 1.8rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }
        .download-links a {
            flex: 1;
            min-width: 160px;
        }
        @media (max-width: 1200px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 4.5rem;
            }
        }
        @media (max-width: 992px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 3rem;
            }
            nav ul {
                flex-direction: column;
                gap: 2.5rem;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
            }
            .button-group {
                margin-top: 2.5rem;
                width: 100%;
                display: flex;
                justify-content: flex-end;
            }
            .hero {
                padding: 10rem 0;
            }
            .hero h1 {
                font-size: 3.8rem;
            }
            .hero p {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .hero {
                padding: 9rem 0;
            }
            .hero h1 {
                font-size: 3.3rem;
            }
            .content-section {
                padding: 3.5rem;
            }
            .content-section h2 {
                font-size: 2.7rem;
            }
            .content-section h3 {
                font-size: 2.2rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .bottom-grid {
                gap: 4rem;
            }
            .btn {
                padding: 1.1rem 2rem;
                font-size: 1.05rem;
            }
            .gameplay-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.2rem;
            }
            .hero {
                padding: 8rem 0;
            }
            .hero h1 {
                font-size: 2.9rem;
            }
            .hero p {
                font-size: 1.3rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 2rem;
            }
            .btn {
                width: 100%;
                margin-bottom: 1rem;
                margin-right: 0;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .bottom-grid {
                gap: 3.5rem;
            }
            .content-section {
                padding: 3rem;
            }
            .tabs {
                gap: 1.5rem;
            }
            .tab {
                padding: 1.2rem 1.8rem;
                font-size: 1rem;
            }
            .quote {
                padding: 2.8rem;
                font-size: 1.3rem;
            }
            .highlight-box {
                padding: 2.8rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 3.5rem;
        }
        .mt-2 {
            margin-top: 3.5rem;
        }
        .bold {
            font-weight: 700;
        }
        .italic {
            font-style: italic;
        }
        .text-primary {
            color: var(--primary);
        }
        .text-secondary {
            color: var(--secondary);
        }
        .text-accent {
            color: var(--accent);
        }
        .spacer {
            height: 1.8rem;
            display: block;
        }
        .callout {
            background-color: #E3F2FD;
            border-left: 6px solid var(--accent);
            padding: 1.8rem;
            margin: 3rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .callout p {
            margin-bottom: 0;
            color: var(--accent);
            font-weight: 500;
        }
        .desi-note {
            background-color: #FCE4EC;
            border-left: 6px solid #AD1457;
            padding: 1.8rem;
            margin: 3rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .desi-note p {
            margin-bottom: 0;
            color: #38003C;
            font-weight: 500;
            font-style: italic;
        }
        .game-tip {
            background-color: #E8F5E9;
            border-left: 6px solid #2E7D32;
            padding: 1.8rem;
            margin: 3rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .game-tip p {
            margin-bottom: 0;
            color: #1B5E20;
            font-weight: 500;
        }
