* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f9f5f0;
            color: #333;
            line-height: 1.8;
            padding: 0;
            margin: 0;
        }
        .header {
            background-color: #FF6B00;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: 900;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffd166;
        }
        .daman-link {
            background-color: #06D6A0;
            padding: 8px 15px;
            border-radius: 5px;
        }
        .daman-link:hover {
            background-color: #059669;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            color: white;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #FF6B00;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
        }
        .container {
            max-width: 1100px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 36px;
            color: #FF6B00;
            text-align: center;
            margin-bottom: 40px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            border-bottom: 3px solid #06D6A0;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 28px;
            color: #2A2A2A;
            margin: 40px 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h2::before {
            content: "🏹";
            font-size: 32px;
        }
        h3 {
            font-size: 22px;
            color: #FF6B00;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #FF6B00;
        }
        .key-term {
            font-weight: 700;
            color: #06D6A0;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .download-btn {
            background-color: #06D6A0;
            color: white;
            box-shadow: 0 4px 10px rgba(6, 214, 160, 0.3);
        }
        .download-btn:hover {
            background-color: #059669;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(6, 214, 160, 0.4);
        }
        .login-btn {
            background-color: #FF6B00;
            color: white;
            box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
        }
        .login-btn:hover {
            background-color: #E05A00;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 10px;
        }
        .img-caption {
            font-size: 14px;
            color: #666;
            font-style: italic;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .stats-table th {
            background-color: #FF6B00;
            color: white;
            font-weight: 700;
        }
        .stats-table tr:nth-child(even) {
            background-color: #f9f5f0;
        }
        .guide-list {
            margin: 20px 0 30px 30px;
            list-style-type: disc;
        }
        .guide-list li {
            margin-bottom: 15px;
            font-size: 17px;
        }
        .community-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
        }
        .community-card h4 {
            font-size: 20px;
            color: #2A2A2A;
            margin-bottom: 15px;
        }
        .tags-container, .categories-container {
            margin: 40px 0;
        }
        .tags, .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 15px;
        }
        .tag-link, .category-link {
            padding: 8px 15px;
            background-color: #f0e6dd;
            color: #FF6B00;
            text-decoration: none;
            border-radius: 20px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .tag-link:hover, .category-link:hover {
            background-color: #FF6B00;
            color: white;
        }
        .footer {
            background-color: #2A2A2A;
            color: white;
            padding: 50px 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #06D6A0;
            border-bottom: 2px solid #FF6B00;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .recommendation {
            font-size: 18px;
            margin: 30px 0;
            text-align: center;
            color: #f0e6dd;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            font-size: 15px;
            color: #aaa;
        }
        .desi-accent {
            font-family: 'Georgia', serif;
            font-style: italic;
            color: #E05A00;
        }
        .star-rating {
            color: #FFD700;
            font-size: 18px;
        }
