        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #fff8f0;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #d92b04, #ff9a00);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffdd00;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
            margin-right: 10px;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #2c3e50;
            color: white;
        }
        .btn-login:hover {
            background-color: #1a252f;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            background: url('https://via.placeholder.com/1200x400?text=Brave+Kebab+Avenger+Hero+Image') alt="Brave Kebab Avenger Hero Banner" title="Brave Kebab Avenger - Desi Action Adventure" class="hero-img";
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            margin: 20px 0;
            border-radius: 10px;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            border-radius: 10px;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .section {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        .section h2 {
            color: #d92b04;
            margin-bottom: 20px;
            font-size: 2rem;
            border-bottom: 3px solid #ffdd00;
            padding-bottom: 10px;
            display: inline-block;
        }
        .section h3 {
            color: #2c3e50;
            margin: 25px 0 15px;
            font-size: 1.5rem;
        }
        .section p {
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: #444;
        }
        .section ul, .section ol {
            margin: 15px 0 25px 30px;
            color: #444;
        }
        .section li {
            margin-bottom: 10px;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 15px;
            border-left: 4px solid #ff9a00;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .highlight strong {
            color: #d92b04;
        }
        .image-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
            justify-content: center;
        }
        .game-image {
            width: 100%;
            max-width: 350px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .feature-card {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #27ae60;
        }
        .feature-card h4 {
            color: #27ae60;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .feature-card p {
            font-size: 1rem;
            margin-bottom: 0;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #eee;
            margin: 20px 0;
        }
        .tab {
            padding: 10px 20px;
            cursor: pointer;
            background-color: #f8f9fa;
            border: none;
            font-weight: 600;
            color: #444;
            transition: all 0.3s ease;
        }
        .tab.active {
            background-color: #d92b04;
            color: white;
        }
        .tab-content {
            padding: 20px;
            border: 1px solid #eee;
            border-top: none;
            border-radius: 0 0 8px 8px;
        }
        .game-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .category-link {
            background-color: #e9ecef;
            color: #2c3e50;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .category-link:hover {
            background-color: #d92b04;
            color: white;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 20px 0 30px;
        }
        .tag-link {
            background-color: #f1f3f5;
            color: #495057;
            padding: 6px 12px;
            border-radius: 15px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #ff9a00;
            color: white;
        }
        .recommendation {
            background-color: #e8f5e9;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 2px dashed #27ae60;
        }
        .recommendation h3 {
            color: #27ae60;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding: 20px;
            background-color: #2c3e50;
            color: white;
            border-radius: 10px;
            margin-top: 40px;
        }
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .section h2 {
                font-size: 1.8rem;
            }
            .section h3 {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #d92b04;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-buttons {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
            .hero {
                height: 300px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section {
                padding: 20px;
            }
            .section h2 {
                font-size: 1.6rem;
            }
            .section h3 {
                font-size: 1.3rem;
            }
            .image-container {
                gap: 15px;
            }
            .game-image {
                max-width: 100%;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
        }
