:root {
            --primary: #E63946;
            --secondary: #1D3557;
            --accent: #FFB703;
            --light: #F1FAEE;
            --dark: #111827;
            --success: #2A9D8F;
            --spacing: 1.5rem;
            --border-radius: 10px;
            --shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #F9F7F3;
            color: var(--dark);
            line-height: 1.9;
            font-size: 16px;
            font-weight: 400;
        }
        body {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            loading: lazy;
            max-width: 100%;
            height: auto;
        }
        .container {
            width: 100%;
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary);
            color: var(--light);
            padding: 1.2rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 9999;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.7px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            color: var(--primary);
        }
        .logo .champion {
            font-style: italic;
            color: var(--light);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.2rem;
            align-items: center;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.6rem 0;
            position: relative;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .daman-link {
            color: var(--accent) !important;
            font-weight: 600;
            border: 1px solid var(--accent);
            padding: 0.6rem 1.2rem !important;
            border-radius: var(--border-radius);
        }
        .daman-link:hover {
            color: var(--secondary) !important;
            background-color: var(--accent);
        }
        .daman-link::after {
            display: none;
        }
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            font-size: 1.05rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        }
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        .btn-primary:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230,57,70,0.3);
        }
        .btn-secondary {
            background-color: var(--accent);
            color: var(--secondary);
        }
        .btn-secondary:hover {
            background-color: #e0a800;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,183,3,0.3);
        }
        .btn-container {
            display: flex;
            gap: 1.5rem;
            margin: 2.5rem 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 2rem;
            cursor: pointer;
            z-index: 10000;
        }
        .hero {
            background: linear-gradient(rgba(29,53,87,0.92), rgba(29,53,87,0.85)), url('https://host.com/images/dash-ginger-champion-hero.jpg') center/cover no-repeat;
            color: var(--light);
            padding: 6rem 0;
            text-align: center;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            margin-bottom: 4rem;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://host.com/images/desi-pattern.png') repeat;
            opacity: 0.05;
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.8rem;
            color: var(--accent);
            text-shadow: 0 3px 6px rgba(0,0,0,0.3);
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.25rem;
            max-width: 850px;
            margin: 0 auto 3rem;
            color: #f0f8ff;
            line-height: 2;
        }
        .hero .tagline {
            font-style: italic;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 2rem;
            font-size: 1.3rem;
        }
        main {
            padding: 1rem 0 3rem;
        }
        .content-section {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 3rem;
            margin-bottom: 4rem;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--primary);
        }
        .content-section h2 {
            font-size: 2.4rem;
            color: var(--secondary);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--accent);
            line-height: 1.4;
        }
        .content-section h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 2.5rem 0 1.2rem;
            line-height: 1.5;
        }
        .content-section h4 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
            line-height: 1.5;
        }
        .content-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.9;
        }
        .content-section ul, .content-section ol {
            margin: 1.5rem 0 2rem 2.5rem;
        }
        .content-section li {
            margin-bottom: 1rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .content-section li strong {
            color: var(--primary);
        }
        .highlight {
            background-color: rgba(255,183,3,0.08);
            border-left: 5px solid var(--accent);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .highlight strong {
            color: var(--primary);
            font-size: 1.1rem;
        }
        .highlight p {
            margin-bottom: 0;
            font-size: 1.05rem;
        }
        .fact-box {
            background-color: rgba(42,157,143,0.08);
            border-radius: var(--border-radius);
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-top: 3px solid var(--success);
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .fact-box .icon {
            font-size: 2.5rem;
            color: var(--success);
            margin-top: 0.5rem;
        }
        .fact-box content {
            flex: 1;
        }
        .fact-box h4 {
            margin: 0 0 1rem 0;
            color: var(--success);
        }
        .image-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2.5rem 0;
            justify-content: center;
        }
        .image-card {
            flex: 1 1 320px;
            max-width: 450px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            background-color: var(--light);
        }
        .image-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .image-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            border-bottom: 3px solid var(--accent);
        }
        .image-card figcaption {
            padding: 1.2rem;
            background-color: var(--light);
            text-align: center;
            font-size: 1rem;
            color: var(--secondary);
            font-weight: 500;
            line-height: 1.6;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background-color: var(--light);
            padding: 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-top: 4px solid var(--primary);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: scale(1.03);
        }
        .stat-card .stat-value {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.8rem;
            line-height: 1.2;
        }
        .stat-card .stat-label {
            font-size: 1.1rem;
            color: var(--secondary);
            font-weight: 500;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            font-size: 1.05rem;
        }
        .game-table th, .game-table td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        .game-table th {
            background-color: var(--secondary);
            color: var(--light);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .game-table tr:hover {
            background-color: rgba(255,183,3,0.05);
        }
        .game-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .quote {
            font-style: italic;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            border-left: 4px solid var(--primary);
            background-color: rgba(230,57,70,0.05);
            color: var(--secondary);
            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;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #e0e0e0;
            margin: 2rem 0;
        }
        .tab {
            padding: 1rem 1.5rem;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 600;
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        .tab.active {
            border-bottom: 3px solid var(--primary);
            color: var(--primary);
        }
        .tab-content {
            padding: 1.5rem 0;
        }
        footer {
            background-color: var(--secondary);
            color: var(--light);
            padding: 5rem 0 2.5rem;
            margin-top: 5rem;
            border-top: 5px solid var(--accent);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 1.8rem;
            color: var(--accent);
            position: relative;
            padding-bottom: 1rem;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 8px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .tag {
            background-color: rgba(255,255,255,0.1);
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--accent);
            transform: translateY(-2px);
        }
        .tag a {
            color: var(--light);
            text-decoration: none;
        }
        .tag:hover a {
            color: var(--secondary);
        }
        .recommendation {
            background-color: rgba(255,183,3,0.1);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
            border-left: 5px solid var(--accent);
        }
        .recommendation h4 {
            color: var(--secondary);
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
        }
        .recommendation p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        .recommendation .btn {
            margin-top: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 1rem;
            color: #aaa;
            line-height: 1.8;
        }
        .copyright a {
            color: var(--accent);
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .breadcrumb {
            margin-bottom: 2rem;
            font-size: 0.95rem;
            color: var(--secondary);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 0.5rem;
            color: #666;
        }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
            .content-section {
                padding: 2.5rem;
            }
            .content-section h2 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 1.8rem;
            }
            .hero {
                padding: 5rem 0;
            }
            .hero h1 {
                font-size: 2.7rem;
            }
            .hero p {
                font-size: 1.15rem;
            }
            .stats-grid {
                gap: 1.5rem;
            }
            .stat-card .stat-value {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--secondary);
                padding: 2rem;
                gap: 1.8rem;
                box-shadow: 0 8px 15px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero {
                padding: 4rem 0;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.1rem;
                max-width: 90%;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 90%;
                max-width: 350px;
            }
            .image-container {
                flex-direction: column;
            }
            .image-card {
                max-width: 100%;
            }
            .content-section {
                padding: 2rem;
            }
            .content-section h2 {
                font-size: 2rem;
            }
            .content-section h3 {
                font-size: 1.6rem;
            }
            .content-section h4 {
                font-size: 1.4rem;
            }
            .game-table {
                font-size: 0.95rem;
            }
            .game-table th, .game-table td {
                padding: 0.9rem;
            }
            .fact-box {
                flex-direction: column;
                gap: 1rem;
            }
            .fact-box .icon {
                margin-top: 0;
                align-self: center;
            }
        }
        @media (max-width: 576px) {
            .header-content {
                flex-wrap: wrap;
            }
            .logo {
                font-size: 1.7rem;
            }
            .hero {
                padding: 3.5rem 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero .tagline {
                font-size: 1.15rem;
            }
            .content-section {
                padding: 1.8rem;
            }
            .content-section h2 {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
            }
            .content-section h3 {
                font-size: 1.5rem;
                margin: 2rem 0 1rem;
            }
            .content-section p {
                font-size: 1.05rem;
                margin-bottom: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .stat-card {
                padding: 1.8rem;
            }
            .footer-content {
                gap: 2.5rem;
            }
            .breadcrumb {
                font-size: 0.9rem;
            }
            .back-to-top {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
                bottom: 1.5rem;
                right: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .btn {
                padding: 0.9rem 1.5rem;
                font-size: 1rem;
            }
            .content-section ul, .content-section ol {
                margin-left: 1.5rem;
            }
            .content-section li {
                font-size: 1rem;
            }
            .game-table {
                font-size: 0.9rem;
            }
            .game-table th, .game-table td {
                padding: 0.7rem;
            }
            .copyright {
                font-size: 0.9rem;
            }
        }
