* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #fff8e6;
            color: #2d3436;
            padding-bottom: 60px;
        }
        .header {
            background-color: #e67e22;
            padding: 18px 25px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 5px 10px;
            border-radius: 8px;
            border: 2px solid #ffd700;
        }
        .logo span {
            color: #ffffff;
            -webkit-text-fill-color: #ffffff;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            color: #ffd700;
            background-color: rgba(255,255,255,0.1);
        }
        .daman-link {
            background-color: #ffd700;
            padding: 10px 20px;
            border-radius: 8px;
            color: #e67e22 !important;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .daman-link:hover {
            background-color: #f1c40f;
            color: #d35400 !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .menu-toggle {
            display: none;
            font-size: 30px;
            color: #ffffff;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #e67e22;
                padding: 25px;
                gap: 20px;
                border-top: 1px solid rgba(255,255,255,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 24px;
            }
        }
        .container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 42px;
            color: #e67e22;
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 4px solid #ffd700;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 32px;
            color: #d35400;
            margin: 60px 0 25px;
            padding-left: 20px;
            border-left: 5px solid #ffd700;
            text-transform: capitalize;
        }
        h3 {
            font-size: 26px;
            color: #2d3436;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f39c12;
            text-transform: capitalize;
        }
        h4 {
            font-size: 22px;
            color: #e67e22;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 18px;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #e74c3c;
            text-shadow: 0 0 1px rgba(0,0,0,0.1);
        }
        .keyword {
            font-weight: 800;
            color: #3498db;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .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.4s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #27ae60;
            color: #ffffff;
        }
        .download-btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(39, 174, 96, 0.3);
        }
        .login-btn {
            background-color: #3498db;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
        }
        @media (max-width: 768px) {
            .btn {
                padding: 15px 30px;
                font-size: 18px;
                width: 100%;
            }
        }
        .img-container {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.18);
            border: 5px solid #ffd700;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: #ffffff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        .stats-table th, .stats-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
            font-size: 17px;
        }
        .stats-table th {
            background-color: #e67e22;
            color: #ffffff;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stats-table tr:hover {
            background-color: #faf6ed;
            transform: scale(1.01);
            transition: transform 0.2s ease;
        }
        @media (max-width: 768px) {
            .stats-table th, .stats-table td {
                padding: 12px;
                font-size: 15px;
            }
        }
        .guide-list {
            margin: 30px 0 40px 50px;
        }
        .guide-list li {
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            padding-left: 20px;
        }
        .guide-list li:before {
            content: "⭐";
            position: absolute;
            left: -25px;
            top: 2px;
        }
        @media (max-width: 768px) {
            .guide-list {
                margin-left: 30px;
            }
            p, .guide-list li {
                font-size: 17px;
            }
        }
        .tabs {
            display: flex;
            gap: 15px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 12px 25px;
            background-color: #34495e;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            font-weight: 600;
        }
        .tab-btn.active {
            background-color: #ffd700;
            color: #e67e22;
            font-weight: 700;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .tab-content {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            margin-bottom: 40px;
            border-left: 5px solid #ffd700;
        }
        .community-card {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            margin-bottom: 35px;
            border-top: 5px solid #3498db;
        }
        .community-card h4 {
            font-size: 22px;
            color: #e67e22;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        .community-card h4:before {
            content: "💬";
            margin-right: 10px;
        }
        .footer {
            background-color: #2d3436;
            color: #ffffff;
            padding: 60px 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-genres {
            margin-bottom: 40px;
        }
        .game-genres h3 {
            color: #ffd700;
            margin-bottom: 20px;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 10px;
        }
        .genres-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .genres-list a {
            color: #ffffff;
            text-decoration: none;
            background-color: #34495e;
            padding: 10px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 16px;
            font-weight: 600;
        }
        .genres-list a:hover {
            background-color: #ffd700;
            color: #2d3436;
            transform: translateY(-2px);
        }
        .tags-section {
            margin-bottom: 40px;
        }
        .tags-section h3 {
            color: #ffd700;
            margin-bottom: 20px;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 10px;
        }
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tags-list a {
            color: #ffffff;
            text-decoration: none;
            background-color: #34495e;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .tags-list a:hover {
            background-color: #ffd700;
            color: #2d3436;
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: #34495e;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 40px;
            text-align: center;
            font-size: 20px;
            line-height: 1.8;
        }
        .recommendation a {
            color: #ffd700;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 3px;
        }
        .recommendation a:hover {
            color: #f1c40f;
            border-bottom-color: #f1c40f;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            font-size: 16px;
            color: #bdc3c7;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 32px;
                margin-bottom: 35px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 28px;
                margin: 40px 0 20px;
                padding-left: 15px;
            }
            h3 {
                font-size: 24px;
                margin: 30px 0 15px;
            }
            h4 {
                font-size: 20px;
            }
            .container {
                margin: 30px auto;
            }
            .footer {
                padding: 40px 20px;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #e67e22;
            color: #ffffff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 999;
        }
        .scroll-top:hover {
            background-color: #d35400;
            transform: translateY(-3px);
        }
