* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', 'Roboto', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #2d2d2d;
            line-height: 1.9;
            padding: 0;
            margin: 0;
            font-size: 17px;
        }
        .header {
            background: linear-gradient(135deg, #1a237e, #3949ab);
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 36px;
            font-weight: 900;
            color: #ffca28;
            text-decoration: none;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 19px;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ffca28;
            border-bottom: 3px solid #ffca28;
        }
        .daman-link {
            background-color: #ffca28;
            color: #1a237e !important;
            padding: 12px 28px;
            border-radius: 12px;
            border-bottom: none !important;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .daman-link:hover {
            background-color: #ffd54f;
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(255, 202, 40, 0.4);
            color: #1a237e !important;
        }
        .hamburger {
            display: none;
            font-size: 38px;
            color: white;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #1a237e, #3949ab);
                padding: 35px;
                gap: 30px;
                box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 30px;
            }
        }
        .container {
            max-width: 1250px;
            margin: 60px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 52px;
            color: #1a237e;
            text-align: center;
            margin-bottom: 70px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
            border-bottom: 6px solid #ffca28;
            padding-bottom: 30px;
            font-weight: 900;
            line-height: 1.4;
        }
        h2 {
            font-size: 38px;
            color: #3949ab;
            margin: 80px 0 35px;
            display: flex;
            align-items: center;
            gap: 20px;
            font-weight: 800;
            border-left: 7px solid #ffca28;
            padding-left: 25px;
            line-height: 1.5;
        }
        h2::before {
            content: "🏁";
            font-size: 45px;
        }
        h3 {
            font-size: 32px;
            color: #ffca28;
            margin: 60px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
            line-height: 1.5;
        }
        h3::after {
            content: "⚡";
            font-size: 28px;
        }
        h4 {
            font-size: 26px;
            color: #1a237e;
            margin: 40px 0 25px;
            font-weight: 600;
            line-height: 1.5;
        }
        p {
            margin-bottom: 35px;
            font-size: 19px;
            text-align: justify;
            line-height: 2.0;
        }
        .highlight {
            font-weight: 800;
            color: #ff6f00;
            font-size: 21px;
        }
        .key-term {
            font-weight: 900;
            color: #3949ab;
            text-decoration: underline;
            text-underline-offset: 6px;
            text-decoration-thickness: 2px;
        }
        .desi-note {
            background-color: #fff8e1;
            border-left: 6px solid #ffca28;
            padding: 25px 30px;
            margin: 40px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #5d4037;
            font-size: 20px;
            line-height: 1.9;
        }
        .btn-container {
            display: flex;
            gap: 35px;
            justify-content: center;
            margin: 80px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 22px 45px;
            font-size: 24px;
            font-weight: 800;
            border: none;
            border-radius: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        }
        .download-btn {
            background: linear-gradient(135deg, #ff6f00, #e65100);
            color: white;
            min-width: 250px;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #e65100, #cc4a00);
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(255, 111, 0, 0.45);
        }
        .login-btn {
            background: linear-gradient(135deg, #3949ab, #1a237e);
            color: white;
            min-width: 250px;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #1a237e, #0d1b66);
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(57, 73, 171, 0.45);
        }
        .img-container {
            text-align: center;
            margin: 70px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 25px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
            margin-bottom: 25px;
            border: 5px solid #ffca28;
        }
        .img-caption {
            font-size: 19px;
            color: #424242;
            font-style: italic;
            max-width: 1000px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 60px 0;
            background-color: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 22px rgba(0,0,0,0.15);
        }
        .stats-table th, .stats-table td {
            padding: 22px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
            font-size: 19px;
        }
        .stats-table th {
            background: linear-gradient(135deg, #1a237e, #3949ab);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .stats-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .stats-table tr:hover {
            background-color: #fff8e1;
            transform: scale(1.01);
            transition: transform 0.2s ease;
        }
        .guide-list {
            margin: 40px 0 60px 60px;
            list-style-type: disc;
        }
        .guide-list li {
            margin-bottom: 30px;
            font-size: 20px;
            line-height: 2.0;
        }
        .bullet-list {
            margin: 40px 0 60px 60px;
            list-style-type: circle;
        }
        .bullet-list li {
            margin-bottom: 25px;
            font-size: 20px;
            line-height: 1.9;
        }
        .community-card {
            background-color: white;
            border-radius: 22px;
            padding: 40px;
            margin-bottom: 60px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-top: 7px solid #3949ab;
        }
        .community-card h4 {
            font-size: 28px;
            color: #1a237e;
            margin-bottom: 30px;
        }
        .tags-container, .categories-container {
            margin: 80px 0;
        }
        .tags, .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 30px;
        }
        .tag-link, .category-link {
            padding: 15px 30px;
            background-color: #fff8e1;
            color: #1a237e;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            border: 2px solid #ffca28;
        }
        .tag-link:hover, .category-link:hover {
            background-color: #1a237e;
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(26, 35, 126, 0.3);
        }
        .footer {
            background-color: #1a237e;
            color: white;
            padding: 80px 20px;
            margin-top: 150px;
        }
        .footer-container {
            max-width: 1250px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 60px;
        }
        .footer-section h3 {
            color: #ffca28;
            border-bottom: 5px solid #ffca28;
            padding-bottom: 25px;
            margin-bottom: 35px;
            font-size: 30px;
        }
        .recommendation {
            font-size: 24px;
            margin: 60px 0;
            text-align: center;
            color: #f5f5f5;
            line-height: 2.2;
        }
        .copyright {
            text-align: center;
            padding-top: 60px;
            border-top: 1px solid #3949ab;
            font-size: 19px;
            color: #e0e0e0;
            line-height: 2.0;
        }
        .desi-accent {
            font-family: 'Georgia', 'Times New Roman', serif;
            font-style: italic;
            color: #d84315;
            font-weight: 700;
            font-size: 22px;
        }
        .star-rating {
            color: #ffca28;
            font-size: 26px;
            letter-spacing: 10px;
        }
        .section-spacing {
            margin-top: 100px;
        }
        @media (max-width: 600px) {
            h1 {
                font-size: 40px;
                margin-bottom: 50px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 32px;
                margin: 60px 0 30px;
                padding-left: 20px;
            }
            h3 {
                font-size: 28px;
                margin: 50px 0 25px;
            }
            h4 {
                font-size: 24px;
                margin: 35px 0 20px;
            }
            p {
                font-size: 18px;
                margin-bottom: 30px;
                line-height: 1.9;
            }
            .btn {
                padding: 20px 35px;
                font-size: 22px;
                min-width: 100%;
            }
            .stats-table th, .stats-table td {
                padding: 18px;
                font-size: 17px;
            }
            .guide-list, .bullet-list {
                margin-left: 40px;
            }
            .guide-list li, .bullet-list li {
                font-size: 19px;
                margin-bottom: 25px;
            }
            .community-card {
                padding: 30px;
            }
            .desi-note {
                padding: 20px 25px;
                font-size: 19px;
            }
            .img-caption {
                font-size: 18px;
            }
        }
