* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #2d2d2d;
            line-height: 1.8;
            padding: 0;
            margin: 0;
        }
        .header {
            background: linear-gradient(135deg, #ff7e00, #ffb800);
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .logo span {
            color: #10b981;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #f0fdf4;
            border-bottom: 2px solid #10b981;
        }
        .daman-link {
            background-color: #10b981;
            padding: 10px 20px;
            border-radius: 8px;
            border-bottom: none !important;
        }
        .daman-link:hover {
            background-color: #059669;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 32px;
            color: white;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff7e00, #ffb800);
                padding: 25px;
                gap: 20px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 24px;
            }
        }
        .container {
            max-width: 1150px;
            margin: 40px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 42px;
            color: #ff7e00;
            text-align: center;
            margin-bottom: 50px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            border-bottom: 4px solid #10b981;
            padding-bottom: 20px;
            font-weight: 900;
        }
        h2 {
            font-size: 32px;
            color: #1e293b;
            margin: 60px 0 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 800;
            border-left: 5px solid #ff7e00;
            padding-left: 15px;
        }
        h2::before {
            content: "🏹";
            font-size: 38px;
        }
        h3 {
            font-size: 26px;
            color: #10b981;
            margin: 40px 0 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::after {
            content: "✨";
            font-size: 20px;
        }
        h4 {
            font-size: 22px;
            color: #ff7e00;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            font-size: 18px;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 700;
            color: #ff7e00;
            font-size: 19px;
        }
        .key-term {
            font-weight: 800;
            color: #10b981;
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-thickness: 2px;
        }
        .desi-note {
            background-color: #fef3c7;
            border-left: 4px solid #ffb800;
            padding: 15px 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #78350f;
        }
        .btn-container {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin: 60px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 35px;
            font-size: 20px;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .download-btn {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            min-width: 200px;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
        }
        .login-btn {
            background: linear-gradient(135deg, #ff7e00, #e66a00);
            color: white;
            min-width: 200px;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #e66a00, #c25800);
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(255, 126, 0, 0.4);
        }
        .img-container {
            text-align: center;
            margin: 50px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin-bottom: 15px;
            border: 3px solid #ffb800;
        }
        .img-caption {
            font-size: 16px;
            color: #64748b;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #f1f5f9;
            font-size: 17px;
        }
        .stats-table th {
            background: linear-gradient(135deg, #ff7e00, #ffb800);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stats-table tr:nth-child(even) {
            background-color: #fef3c7;
        }
        .stats-table tr:hover {
            background-color: #fffbeb;
        }
        .guide-list {
            margin: 25px 0 40px 40px;
            list-style-type: disc;
        }
        .guide-list li {
            margin-bottom: 20px;
            font-size: 18px;
            line-height: 1.8;
        }
        .bullet-list {
            margin: 25px 0 40px 40px;
            list-style-type: circle;
        }
        .bullet-list li {
            margin-bottom: 15px;
            font-size: 18px;
        }
        .community-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.08);
            border-top: 5px solid #10b981;
        }
        .community-card h4 {
            font-size: 24px;
            color: #1e293b;
            margin-bottom: 20px;
        }
        .tags-container, .categories-container {
            margin: 60px 0;
        }
        .tags, .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        .tag-link, .category-link {
            padding: 10px 20px;
            background-color: #fef3c7;
            color: #ff7e00;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: 1px solid #ffb800;
        }
        .tag-link:hover, .category-link:hover {
            background-color: #ff7e00;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255, 126, 0, 0.2);
        }
        .footer {
            background-color: #1e293b;
            color: white;
            padding: 60px 20px;
            margin-top: 100px;
        }
        .footer-container {
            max-width: 1150px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #10b981;
            border-bottom: 3px solid #ff7e00;
            padding-bottom: 15px;
            margin-bottom: 25px;
            font-size: 24px;
        }
        .recommendation {
            font-size: 20px;
            margin: 40px 0;
            text-align: center;
            color: #f8fafc;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #475569;
            font-size: 16px;
            color: #94a3b8;
        }
        .desi-accent {
            font-family: 'Georgia', serif;
            font-style: italic;
            color: #c25800;
            font-weight: 600;
        }
        .star-rating {
            color: #ffd700;
            font-size: 22px;
            letter-spacing: 5px;
        }
        .section-spacing {
            margin-top: 80px;
        }
        @media (max-width: 600px) {
            h1 {
                font-size: 32px;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 26px;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 22px;
                margin: 30px 0 15px;
            }
            p {
                font-size: 17px;
                margin-bottom: 20px;
            }
            .btn {
                padding: 15px 25px;
                font-size: 18px;
                min-width: 100%;
            }
            .stats-table th, .stats-table td {
                padding: 12px;
                font-size: 15px;
            }
            .guide-list, .bullet-list {
                margin-left: 25px;
            }
            .guide-list li, .bullet-list li {
                font-size: 17px;
                margin-bottom: 15px;
            }
            .community-card {
                padding: 20px;
            }
        }
