* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f2f5;
            color: #1a1a1a;
            line-height: 1.7;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #1e3a8a;
            color: white;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 22px;
            font-weight: bold;
            color: #fbbf24;
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #fbbf24;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background-color: #1e3a8a;
                padding: 15px 20px;
                gap: 12px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://example.com/real-pool-3d-hero.jpg');
            background-size: cover;
            background-position: center;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            margin-bottom: 30px;
            border-radius: 8px;
        }
        .hero-content h1 {
            font-size: 42px;
            margin-bottom: 15px;
            color: #fbbf24;
        }
        .hero-content p {
            font-size: 18px;
            max-width: 650px;
            margin-bottom: 25px;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s;
            margin: 0 8px 10px 0;
            font-size: 16px;
        }
        .btn-download {
            background-color: #10b981;
        }
        .btn-login {
            background-color: #3b82f6;
        }
        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .section {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .section-title {
            font-size: 26px;
            color: #1e3a8a;
            margin-bottom: 18px;
            padding-bottom: 8px;
            border-bottom: 2px solid #fbbf24;
        }
        .image-container {
            text-align: center;
            margin: 25px 0;
        }
        .game-image {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.15);
            border: 1px solid #eee;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }
        .stat-card {
            background-color: #f8fafc;
            padding: 18px;
            border-radius: 6px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            border-left: 4px solid #3b82f6;
        }
        .stat-value {
            font-size: 30px;
            font-weight: bold;
            color: #dc2626;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #64748b;
            font-size: 15px;
        }
        .tips-list {
            margin: 18px 0;
            padding-left: 20px;
        }
        .tips-list li {
            margin-bottom: 12px;
            line-height: 1.6;
        }
        .review-card {
            background-color: #f8fafc;
            padding: 18px;
            border-radius: 6px;
            margin-bottom: 18px;
            border-left: 3px solid #3b82f6;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        .reviewer-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: #94a3b8;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }
        .review-stars {
            color: #fbbf24;
            margin: 8px 0;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 18px 0;
        }
        .tag {
            background-color: #3b82f6;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 13px;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .tag:hover {
            background-color: #2563eb;
        }
        .game-type-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 18px 0;
        }
        .game-type-link {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
        }
        .game-type-link:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #1e3a8a;
            color: white;
            padding: 30px 0 15px;
            margin-top: 40px;
            border-radius: 8px 8px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-bottom: 25px;
        }
        .footer-section h3 {
            margin-bottom: 15px;
            color: #fbbf24;
            font-size: 18px;
        }
        .footer-section p {
            margin-bottom: 8px;
            font-size: 14px;
            color: #e2e8f0;
        }
        .footer-section a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 14px;
        }
        .footer-section a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid #334155;
            font-size: 13px;
            color: #94a3b8;
        }
        strong {
            color: #dc2626;
        }
        .indian-accent {
            font-family: 'Georgia', serif;
        }
        .community-highlight {
            background-color: #fffbeb;
            border-left: 3px solid #f59e0b;
            padding: 12px;
            margin: 18px 0;
            border-radius: 0 4px 4px 0;
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 34px;
            }
            .hero-content p {
                font-size: 16px;
            }
            .section-title {
                font-size: 22px;
            }
            .stat-value {
                font-size: 26px;
            }
            .btn {
                padding: 8px 16px;
                font-size: 15px;
            }
        }
