        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Roboto', 'Noto Sans Devanagari', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.8;
            font-size: 1rem;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #93c5fd;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #60a5fa, #34d399);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2rem;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }
        .nav-desktop a:hover {
            background-color: #334155;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #60a5fa;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1e293b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #334155;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #334155;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: linear-gradient(145deg, #1e293b, #0f172a);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #334155;
        }
        article h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #f8fafc;
            line-height: 1.3;
        }
        article h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            color: #34d399;
            border-left: 5px solid #60a5fa;
            padding-left: 15px;
        }
        article h3 {
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            color: #93c5fd;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: #fbbf24;
            font-weight: 700;
        }
        .highlight-box {
            background-color: #1e40af;
            border-left: 6px solid #60a5fa;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 12px 12px 0;
        }
        .feature-list {
            list-style: none;
            padding-left: 1.5rem;
        }
        .feature-list li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 2rem;
        }
        .feature-list li:before {
            content: '🚗';
            position: absolute;
            left: 0;
        }
        .game-image {
            width: 100%;
            border-radius: 12px;
            border: 3px solid #475569;
            margin: 2rem auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.7);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: #1e293b;
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid #334155;
        }
        .widget h3 {
            color: #34d399;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #475569;
            border-radius: 8px 0 0 8px;
            background-color: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #3b82f6;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #2563eb;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #fbbf24;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 3px;
            transition: transform 0.2s;
        }
        .stars span:hover {
            transform: scale(1.2);
        }
        #rating-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: #34d399;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            background-color: #0f172a;
            border: 2px solid #475569;
            color: #e2e8f0;
            font-size: 1rem;
            margin-bottom: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: #10b981;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background-color: #0da271;
        }
        .comments-list {
            margin-top: 2rem;
        }
        .comment {
            background-color: #0f172a;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #3b82f6;
        }
        .comment-author {
            font-weight: bold;
            color: #60a5fa;
        }
        .comment-date {
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0 2rem;
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: #1e293b;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #334155;
            transition: transform 0.3s, border-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #60a5fa;
        }
        .web-link a {
            color: #cbd5e1;
            font-weight: 500;
        }
        .site-footer {
            background-color: #0f172a;
            border-top: 2px solid #334155;
            padding: 2rem 0;
            text-align: center;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
        }
        .copyright {
            margin-top: 1.5rem;
            width: 100%;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.5rem;
            }
            .header-content, .footer-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .btn-download {
            display: inline-block;
            background: linear-gradient(90deg, #3b82f6, #10b981);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.6);
            color: white;
        }
