* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f8f4e9;
            color: #333;
            padding-bottom: 50px;
        }
        .header {
            background: linear-gradient(135deg, #ff9a00, #ff5e00);
            padding: 15px 20px;
            color: white;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .mobile-nav-btn {
            display: block;
            background: white;
            color: #ff5e00;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: bold;
            margin: 0 auto 15px;
            cursor: pointer;
        }
        .nav-links {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 3px;
            transition: background 0.3s;
        }
        .nav-links li a:hover {
            background: rgba(255,255,255,0.2);
        }
        .daman-link {
            background: white;
            color: #ff5e00 !important;
        }
        .daman-link:hover {
            background: #f0f0f0 !important;
        }
        .container {
            max-width: 1100px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #ff5e00;
            text-align: center;
            margin-bottom: 30px;
            font-size: 32px;
            border-bottom: 2px solid #ff9a00;
            padding-bottom: 10px;
        }
        h2 {
            color: #e65100;
            margin: 40px 0 20px;
            font-size: 26px;
            border-left: 4px solid #ff9a00;
            padding-left: 15px;
        }
        h3 {
            color: #d32f2f;
            margin: 30px 0 15px;
            font-size: 22px;
        }
        p {
            margin-bottom: 18px;
            font-size: 16px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #ff5e00;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: #ff5e00;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 8px;
            margin: 10px 15px 20px 0;
            transition: transform 0.3s, background 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .btn:hover {
            transform: translateY(-3px);
            background: #e65100;
        }
        .btn-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .review-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }
        .review-table th, .review-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .review-table th {
            background: #ff9a00;
            color: white;
            font-weight: bold;
        }
        .review-table tr:hover {
            background: #f1f1f1;
        }
        .list {
            margin: 15px 0 25px 30px;
        }
        .list li {
            margin-bottom: 12px;
            font-size: 16px;
        }
        .tags-container {
            margin: 40px 0 30px;
        }
        .tag {
            display: inline-block;
            background: #f0f0f0;
            padding: 8px 15px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
            transition: background 0.3s;
        }
        .tag:hover {
            background: #ff9a00;
            color: white;
        }
        .game-types {
            margin: 30px 0;
        }
        .game-type-link {
            color: #ff5e00;
            text-decoration: none;
            margin: 0 10px;
            font-weight: 600;
        }
        .game-type-link:hover {
            text-decoration: underline;
        }
        .footer {
            background: #333;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .footer p {
            text-align: center;
            margin-bottom: 15px;
        }
        .copyright {
            font-size: 14px;
            color: #ccc;
            text-align: center;
            margin-top: 20px;
        }
        <script type="application/ld+json">
        {
            "@context": "https://schema.org/",
            "@type": "VideoGame",
            "name": "Bollywood Beach Volley",
            "description": "A popular beach volleyball game in India with Bollywood-themed elements, localization for Indian players, and community-driven events.",
            "gamePlatform": "Mobile (Android, iOS)",
            "publisher": {
                "@type": "Organization",
                "name": "Daman Games"
            },
            "offers": {
                "@type": "Offer",
                "url": "https://down.com",
                "price": "0",
                "priceCurrency": "INR"
            },
            "aggregateRating": {
                "@type": "AggregateRating",
                "ratingValue": "4.5",
                "reviewCount": "150000+"
            }
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 20px;
            }
            p, .list li {
                font-size: 15px;
            }
            .btn {
                display: block;
                width: 90%;
                margin: 10px auto;
                text-align: center;
            }
            .review-table th, .review-table td {
                padding: 8px 10px;
                font-size: 14px;
            }
        }
