* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #faf6ed;
            color: #2c3e50;
            padding-bottom: 80px;
            letter-spacing: 0.4px;
        }
        .header {
            background: linear-gradient(135deg, #d4af37 0%, #f9f299 100%);
            padding: 20px 25px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 36px;
            font-weight: 900;
            color: #8b4513;
            text-decoration: none;
            letter-spacing: 3px;
            text-transform: uppercase;
            padding: 10px 20px;
            border-radius: 12px;
            border: 4px solid #8b4513;
            display: inline-block;
            background: linear-gradient(135deg, #ffffff 0%, #f9f299 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
        }
        .logo span {
            color: #8b4513;
            -webkit-text-fill-color: #8b4513;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: #8b4513;
            text-decoration: none;
            font-size: 19px;
            font-weight: 700;
            transition: all 0.3s ease;
            padding: 10px 15px;
            border-radius: 10px;
            text-transform: capitalize;
            background-color: rgba(255,255,255,0.2);
        }
        .nav-links a:hover {
            color: #ffffff;
            background-color: #8b4513;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .daman-link {
            background-color: #8b4513 !important;
            padding: 12px 28px;
            border-radius: 12px;
            color: #ffffff !important;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.25);
        }
        .daman-link:hover {
            background-color: #6b3410 !important;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }
        .menu-toggle {
            display: none;
            font-size: 40px;
            color: #8b4513;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 110px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #d4af37 0%, #f9f299 100%);
                padding: 35px;
                gap: 30px;
                border-top: 3px solid #8b4513;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 30px;
                padding: 8px 15px;
            }
        }
        .container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 48px;
            color: #8b4513;
            text-align: center;
            margin-bottom: 70px;
            padding-bottom: 30px;
            border-bottom: 6px solid #d4af37;
            text-transform: capitalize;
            letter-spacing: 2px;
            font-weight: 900;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 36px;
            color: #6b3410;
            margin: 80px 0 35px;
            padding-left: 30px;
            border-left: 8px solid #d4af37;
            text-transform: capitalize;
            font-weight: 800;
        }
        h3 {
            font-size: 30px;
            color: #8b4513;
            margin: 60px 0 30px;
            padding-bottom: 20px;
            border-bottom: 4px solid #f9f299;
            text-transform: capitalize;
            font-weight: 700;
        }
        h4 {
            font-size: 26px;
            color: #6b3410;
            margin: 45px 0 25px;
            text-transform: capitalize;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        h4:before {
            content: "🌟";
            margin-right: 18px;
            font-size: 30px;
        }
        p {
            margin-bottom: 35px;
            font-size: 20px;
            text-align: justify;
            line-height: 2.1;
            color: #34495e;
        }
        .highlight {
            font-weight: 900;
            color: #e67e22;
            text-shadow: 0 0 3px rgba(0,0,0,0.15);
            font-size: 22px;
        }
        .keyword {
            font-weight: 900;
            color: #8b4513;
            text-decoration: underline;
            text-underline-offset: 8px;
            text-decoration-thickness: 3px;
            text-decoration-color: #f9f299;
        }
        .btn-container {
            display: flex;
            gap: 35px;
            justify-content: center;
            margin: 90px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 25px 45px;
            font-size: 24px;
            font-weight: 900;
            border: none;
            border-radius: 18px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
            min-width: 280px;
        }
        .download-btn {
            background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
            color: #ffffff;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #219653 0%, #27ae60 100%);
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
        }
        .login-btn {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: #ffffff;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #2980b9 0%, #196090 100%);
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
        }
        @media (max-width: 768px) {
            .btn {
                padding: 22px 40px;
                font-size: 22px;
                width: 100%;
                min-width: auto;
            }
        }
        .img-container {
            display: flex;
            justify-content: center;
            margin: 70px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 25px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.3);
            border: 8px solid #f9f299;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 70px 0;
            background-color: #ffffff;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(0,0,0,0.25);
        }
        .stats-table th, .stats-table td {
            padding: 25px;
            text-align: left;
            border-bottom: 3px solid #f1e9d2;
            font-size: 19px;
        }
        .stats-table th {
            background: linear-gradient(135deg, #8b4513 0%, #6b3410 100%);
            color: #ffffff;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .stats-table tr:hover {
            background-color: #faf6ed;
            transform: scale(1.02);
            transition: transform 0.3s ease;
        }
        @media (max-width: 768px) {
            .stats-table th, .stats-table td {
                padding: 18px;
                font-size: 17px;
            }
        }
        .guide-list {
            margin: 50px 0 70px 70px;
        }
        .guide-list li {
            margin-bottom: 30px;
            font-size: 20px;
            position: relative;
            padding-left: 30px;
            color: #34495e;
        }
        .guide-list li:before {
            content: "🎯";
            position: absolute;
            left: -40px;
            top: 8px;
            font-size: 25px;
        }
        @media (max-width: 768px) {
            .guide-list {
                margin-left: 50px;
            }
            p, .guide-list li {
                font-size: 19px;
            }
        }
        .tabs {
            display: flex;
            gap: 25px;
            margin: 70px 0;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 18px 35px;
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
            color: #ffffff;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 19px;
            font-weight: 700;
            text-transform: capitalize;
        }
        .tab-btn.active {
            background: linear-gradient(135deg, #d4af37 0%, #f9f299 100%);
            color: #8b4513;
            font-weight: 800;
            transform: translateY(-6px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.3);
        }
        .tab-content {
            background-color: #ffffff;
            padding: 45px;
            border-radius: 25px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.25);
            margin-bottom: 70px;
            border-left: 10px solid #d4af37;
        }
        .community-card {
            background-color: #ffffff;
            padding: 45px;
            border-radius: 25px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.25);
            margin-bottom: 50px;
            border-top: 10px solid #3498db;
            position: relative;
        }
        .community-card:before {
            content: "💬";
            position: absolute;
            top: -30px;
            left: 35px;
            font-size: 45px;
            background-color: #ffffff;
            padding: 12px;
            border-radius: 50%;
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
        }
        .community-card h4 {
            font-size: 26px;
            color: #8b4513;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            padding-top: 20px;
        }
        .community-card p {
            font-style: italic;
            color: #495057;
            font-size: 21px;
        }
        .footer {
            background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
            color: #ffffff;
            padding: 90px 30px;
            margin-top: 120px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-genres {
            margin-bottom: 70px;
        }
        .game-genres h3 {
            color: #f9f299;
            margin-bottom: 35px;
            border-bottom: 4px solid #d4af37;
            padding-bottom: 20px;
        }
        .genres-list {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }
        .genres-list a {
            color: #ffffff;
            text-decoration: none;
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
            padding: 15px 30px;
            border-radius: 12px;
            transition: all 0.3s ease;
            font-size: 18px;
            font-weight: 600;
            text-transform: capitalize;
        }
        .genres-list a:hover {
            background: linear-gradient(135deg, #d4af37 0%, #f9f299 100%);
            color: #8b4513;
            transform: translateY(-4px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .tags-section {
            margin-bottom: 70px;
        }
        .tags-section h3 {
            color: #f9f299;
            margin-bottom: 35px;
            border-bottom: 4px solid #d4af37;
            padding-bottom: 20px;
        }
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .tags-list a {
            color: #ffffff;
            text-decoration: none;
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
            padding: 12px 25px;
            border-radius: 35px;
            font-size: 17px;
            transition: all 0.3s ease;
            text-transform: lowercase;
        }
        .tags-list a:hover {
            background: linear-gradient(135deg, #d4af37 0%, #f9f299 100%);
            color: #8b4513;
            transform: translateY(-4px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .recommendation {
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
            padding: 40px;
            border-radius: 25px;
            margin-bottom: 70px;
            text-align: center;
            font-size: 24px;
            line-height: 2.4;
            box-shadow: 0 10px 25px rgba(0,0,0,0.25);
        }
        .recommendation a {
            color: #f9f299;
            font-weight: 800;
            text-decoration: none;
            border-bottom: 4px solid #d4af37;
            padding-bottom: 8px;
        }
        .recommendation a:hover {
            color: #ffffff;
            border-bottom-color: #f9f299;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 3px solid #34495e;
            font-size: 19px;
            color: #bdc3c7;
            line-height: 2.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 42px;
                margin-bottom: 55px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 32px;
                margin: 60px 0 30px;
                padding-left: 25px;
            }
            h3 {
                font-size: 28px;
                margin: 50px 0 25px;
            }
            h4 {
                font-size: 24px;
            }
            .container {
                margin: 50px auto;
                padding: 0 20px;
            }
            .footer {
                padding: 70px 20px;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 50px;
            right: 50px;
            background: linear-gradient(135deg, #8b4513 0%, #6b3410 100%);
            color: #ffffff;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0,0,0,0.35);
            transition: all 0.3s ease;
            z-index: 999;
            border: 4px solid #f9f299;
        }
        .scroll-top:hover {
            background: linear-gradient(135deg, #6b3410 0%, #8b4513 100%);
            transform: translateY(-6px);
        }
        .quote {
            font-style: italic;
            color: #495057;
            border-left: 5px solid #d4af37;
            padding-left: 30px;
            margin: 50px 0;
            font-size: 22px;
            line-height: 2.3;
        }
        .badge {
            display: inline-block;
            background-color: #e67e22;
            color: #ffffff;
            padding: 8px 20px;
            border-radius: 35px;
            font-size: 18px;
            font-weight: 700;
            margin-right: 15px;
            margin-bottom: 15px;
        }
        .feature-box {
            background: linear-gradient(135deg, #faf6ed 0%, #f1e9d2 100%);
            padding: 40px;
            border-radius: 25px;
            margin: 60px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border-left: 10px solid #8b4513;
        }
        .feature-box h4 {
            margin-bottom: 25px;
        }
        .feature-box ul {
            margin-left: 40px;
        }
        .feature-box li {
            margin-bottom: 20px;
            font-size: 20px;
        }
        .spacer {
            height: 40px;
        }
