* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2d2d2d;
            background-color: #f5f5f0;
            padding-bottom: 80px;
        }
        .navbar {
            background-color: #0047ab;
            padding: 20px 30px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.18);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
            text-transform: uppercase;
        }
        .logo span {
            color: #ffd700;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            padding: 10px 15px;
            border-radius: 10px;
        }
        .nav-links a:hover {
            background-color: #ffd700;
            color: #0047ab;
            transform: translateY(-3px);
        }
        .daman-link {
            background-color: #22c55e;
            padding: 12px 25px;
            border-radius: 35px;
            font-weight: 700 !important;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .daman-link:hover {
            background-color: #16a34a;
            color: #ffffff !important;
            box-shadow: 0 5px 12px rgba(34, 197, 94, 0.4);
        }
        .menu-toggle {
            display: none;
            font-size: 2rem;
            color: #ffffff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .container {
            max-width: 1300px;
            margin: 50px auto;
            padding: 0 30px;
        }
        h1 {
            font-size: 3rem;
            color: #0047ab;
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 25px;
            border-bottom: 5px solid #ffd700;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.15);
        }
        h2 {
            font-size: 2.4rem;
            color: #1e3a8a;
            margin: 70px 0 35px;
            padding-left: 25px;
            border-left: 6px solid #0047ab;
            text-transform: Capitalize;
        }
        h3 {
            font-size: 1.8rem;
            color: #0047ab;
            margin: 45px 0 25px;
            padding-bottom: 10px;
            border-bottom: 3px dashed #ffd700;
        }
        h4 {
            font-size: 1.5rem;
            color: #3b82f6;
            margin: 35px 0 20px;
        }
        p {
            margin-bottom: 28px;
            font-size: 1.2rem;
            color: #2b2d42;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #0047ab;
            font-size: 1.3rem;
        }
        .game-btn {
            display: inline-block;
            padding: 20px 40px;
            margin: 20px 25px 45px 0;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.4rem;
            transition: all 0.4s ease;
            box-shadow: 0 7px 20px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .download-btn {
            background-color: #22c55e;
            color: white;
        }
        .download-btn:hover {
            background-color: #16a34a;
            transform: translateY(-5px);
            box-shadow: 0 9px 25px rgba(34, 197, 94, 0.45);
        }
        .login-btn {
            background-color: #1e3a8a;
            color: white;
        }
        .login-btn:hover {
            background-color: #1e40af;
            transform: translateY(-5px);
            box-shadow: 0 9px 25px rgba(30, 58, 138, 0.45);
        }
        .img-container {
            margin: 60px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 6px solid #ffd700;
        }
        .stats-box {
            background-color: #ffffff;
            padding: 45px;
            border-radius: 25px;
            box-shadow: 0 10px 35px rgba(0,0,0,0.15);
            margin: 50px 0;
            border-top: 10px solid #0047ab;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 35px;
            margin-top: 35px;
        }
        .stat-item {
            text-align: center;
            padding: 30px;
            background-color: #f5f5f0;
            border-radius: 20px;
            border: 3px solid #ffd700;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #0047ab;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.15);
        }
        .stat-label {
            font-size: 1.2rem;
            color: #4a4e69;
            font-weight: 600;
        }
        .review-card {
            background-color: #ffffff;
            padding: 35px;
            border-radius: 22px;
            box-shadow: 0 6px 22px rgba(0,0,0,0.12);
            margin-bottom: 35px;
            border-left: 10px solid #ffd700;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        .reviewer-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 25px;
            background-color: #0047ab;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.8rem;
            box-shadow: 0 5px 12px rgba(0,0,0,0.18);
        }
        .review-rating {
            color: #ffd700;
            font-size: 1.8rem;
            margin-bottom: 20px;
            letter-spacing: 4px;
        }
        .guide-step {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.1);
            border-right: 6px solid #1e3a8a;
        }
        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background-color: #0047ab;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-weight: 800;
            margin-right: 25px;
            font-size: 1.5rem;
        }
        .event-card {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            margin-bottom: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            align-items: center;
            border-top: 6px solid #22c55e;
        }
        .event-img {
            flex: 1;
            min-width: 300px;
        }
        .event-details {
            flex: 2;
            min-width: 350px;
        }
        .event-date {
            display: inline-block;
            background-color: #ffd700;
            color: #0047ab;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-transform: uppercase;
        }
        .community-forum {
            background-color: #ffffff;
            padding: 45px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            margin: 50px 0;
            border-bottom: 10px solid #1e3a8a;
        }
        .forum-thread {
            padding: 25px 0;
            border-bottom: 3px solid #f1f5f9;
        }
        .forum-thread:last-child {
            border-bottom: none;
        }
        .thread-title {
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .thread-meta {
            color: #6c757d;
            font-size: 1.1rem;
            display: flex;
            gap: 25px;
        }
        .faq-item {
            margin-bottom: 35px;
        }
        .faq-question {
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.3rem;
        }
        .faq-answer {
            color: #4a4e69;
            padding-left: 30px;
            font-size: 1.2rem;
        }
        .game-info {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            margin: 60px 0;
        }
        .game-types h3, .tags h3 {
            margin-bottom: 30px;
        }
        .game-types a, .tags a {
            display: inline-block;
            color: #ffffff;
            text-decoration: none;
            margin: 0 15px 15px 0;
            padding: 10px 22px;
            background-color: #4a4e69;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            font-weight: 500;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #0047ab;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 71, 171, 0.3);
        }
        .recommendation {
            font-size: 1.3rem;
            line-height: 2.2;
            color: #2b2d42;
            margin: 40px 0;
            text-align: center;
            font-weight: 500;
        }
        .footer {
            background-color: #1e3a8a;
            color: white;
            padding: 80px 40px 50px;
            margin-top: 120px;
        }
        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
        }
        .footer-section h3 {
            color: #ffd700;
            font-size: 1.7rem;
            margin-bottom: 35px;
            padding-bottom: 20px;
            border-bottom: 4px solid #0047ab;
            text-transform: uppercase;
        }
        .copyright {
            text-align: center;
            margin-top: 80px;
            padding-top: 40px;
            border-top: 3px solid #3b82f6;
            color: #bfdbfe;
            font-size: 1.1rem;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 25px;
            }
            .logo {
                font-size: 2rem;
            }
            h1 {
                font-size: 2.7rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
                margin: 60px 0 30px;
            }
            h3 {
                font-size: 1.6rem;
            }
            .stat-number {
                font-size: 2.7rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background-color: #0047ab;
                padding: 40px;
                gap: 30px;
                border-top: 4px solid #ffd700;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 1.7rem;
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 50px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 55px 0 28px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.5rem;
            }
            p {
                font-size: 1.15rem;
                margin-bottom: 25px;
            }
            .game-btn {
                padding: 18px 35px;
                font-size: 1.3rem;
                display: block;
                text-align: center;
                margin: 20px 0;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .reviewer-avatar {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
            }
            .event-card {
                padding: 30px;
                gap: 25px;
            }
        }
        @media (max-width: 576px) {
            .navbar {
                padding: 15px 20px;
            }
            .logo {
                font-size: 1.5rem;
            }
            .nav-links {
                top: 80px;
                padding: 30px;
            }
            h1 {
                font-size: 2rem;
                margin-bottom: 45px;
            }
            h2 {
                font-size: 1.7rem;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .community-forum {
                padding: 35px 25px;
            }
            .footer {
                padding: 60px 25px 40px;
            }
            .footer-container {
                gap: 40px;
            }
            .copyright {
                margin-top: 60px;
                padding-top: 30px;
                font-size: 1rem;
            }
            .game-info {
                padding: 30px 25px;
            }
            .game-types a, .tags a {
                padding: 8px 18px;
                font-size: 1rem;
                margin: 0 10px 10px 0;
            }
        }
