* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #2c3e50;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffd700;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffd700;
        }
        .daman-link {
            color: #ffd700 !important;
            font-weight: 600;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #2c3e50;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.5rem;
            }
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            margin: 10px 5px;
            text-align: center;
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
            border: none;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #e67e22;
            color: white;
            border: none;
        }
        .btn-login:hover {
            background-color: #d35400;
            transform: translateY(-2px);
        }
        .btn-container {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            text-align: center;
            margin: 40px 0 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffd700;
        }
        h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 4px solid #e67e22;
        }
        h3 {
            font-size: 1.5rem;
            color: #34495e;
            margin: 30px 0 15px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #e67e22;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: 600;
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        ul, ol {
            margin: 20px 0 20px 40px;
            font-size: 1.1rem;
        }
        li {
            margin-bottom: 10px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #2c3e50;
            color: white;
        }
        tr:hover {
            background-color: #f5f5f5;
        }
        .game-types {
            margin: 50px 0 30px;
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .game-types h3 {
            margin-bottom: 20px;
            text-align: center;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        .type-links a {
            color: #2c3e50;
            background-color: #ecf0f1;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        .type-links a:hover {
            background-color: #e67e22;
            color: white;
        }
        .tags {
            margin: 30px 0 50px;
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .tags h3 {
            margin-bottom: 20px;
            text-align: center;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .tag-links a {
            color: #34495e;
            background-color: #f1f2f6;
            padding: 6px 12px;
            border-radius: 15px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .tag-links a:hover {
            background-color: #ffd700;
            color: #2c3e50;
        }
        .recommendation {
            background-color: #2c3e50;
            color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            margin: 40px 0;
            font-size: 1.2rem;
        }
        .recommendation strong {
            color: #ffd700;
        }
        footer {
            background-color: #1a252f;
            color: white;
            padding: 30px 0;
            text-align: center;
            margin-top: 50px;
        }
        .copyright {
            font-size: 0.95rem;
            opacity: 0.8;
        }
        <script type="application/ld+json">
        {
            "@context": "https://schema.org",
            "@type": "Game",
            "name": "Desi Rally Legends",
            "description": "Desi Rally Legends is India's most popular desi racing game with over 50 million downloads, featuring localized content, regional tracks, and multiplayer modes tailored for Indian players.",
            "gameCategory": "Racing Game",
            "publisher": {
                "@type": "Organization",
                "name": "daman games"
            },
            "operatingSystem": "Android, iOS",
            "interactivityType": "Multiplayer",
            "keywords": "Desi Rally Legends, Indian racing game, Desi racing, Mobile racing game",
            "aggregateRating": {
                "@type": "AggregateRating",
                "ratingValue": "4.7",
                "reviewCount": "1.2M"
            },
            "offers": {
                "@type": "Offer",
                "url": "https://down.com",
                "price": "0",
                "priceCurrency": "INR"
            }
        }
