* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f3e6;
            color: #2c2c2c;
            line-height: 1.8;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .header {
            background-color: #0f1759;
            color: #fff;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 12px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 32px;
            font-weight: 900;
            color: #ffd54f;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #ffffff;
            font-weight: 600;
        }
        .nav-links {
            display: flex;
            gap: 38px;
            align-items: center;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 18px;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffd54f;
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffd54f;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .daman-link {
            background-color: #ffd54f;
            color: #0f1759 !important;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(255, 213, 79, 0.4);
            border: none;
        }
        .daman-link:hover {
            background-color: #ffe082;
            box-shadow: 0 6px 15px rgba(255, 213, 79, 0.5);
            transform: translateY(-2px);
        }
        .daman-link::after {
            display: none;
        }
        .menu-toggle {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: #ffd54f;
            background: transparent;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #0f1759;
                padding: 35px 25px;
                gap: 25px;
                box-shadow: 0 12px 20px rgba(0,0,0,0.25);
                border-top: 1px solid #2c3e99;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 28px;
            }
        }
        .container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 25px;
        }
        h1 {
            color: #0f1759;
            font-size: 45px;
            margin-bottom: 35px;
            text-align: center;
            font-weight: 900;
            line-height: 1.4;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.15);
            padding: 0 15px;
        }
        h2 {
            color: #1a237e;
            font-size: 34px;
            margin: 70px 0 30px;
            border-left: 6px solid #ffd54f;
            padding-left: 22px;
            font-weight: 800;
            line-height: 1.5;
        }
        h3 {
            color: #283593;
            font-size: 28px;
            margin: 50px 0 25px;
            font-weight: 700;
            line-height: 1.6;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🛡️";
            margin-right: 15px;
            font-size: 32px;
        }
        h4 {
            color: #3949ab;
            font-size: 24px;
            margin: 40px 0 20px;
            font-weight: 600;
            line-height: 1.6;
            color: #3949ab;
        }
        p {
            margin-bottom: 22px;
            font-size: 18px;
            text-align: justify;
            color: #333333;
            padding: 0 5px;
        }
        .highlight {
            font-weight: 700;
            color: #0f1759;
            font-size: 19px;
        }
        .emoji {
            margin-right: 12px;
            font-size: 22px;
        }
        .btn-container {
            text-align: center;
            margin: 60px 0;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 40px;
            border-radius: 15px;
            font-size: 22px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.18);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .download-btn {
            background-color: #ff6e40;
            color: #fff;
        }
        .download-btn:hover {
            background-color: #e65100;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 110, 64, 0.5);
        }
        .login-btn {
            background-color: #26a69a;
            color: #fff;
        }
        .login-btn:hover {
            background-color: #00897b;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(38, 166, 154, 0.5);
        }
        .img-container {
            text-align: center;
            margin: 50px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.22);
            border: 4px solid #ffffff;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            background-color: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .stats-table th, .stats-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
            font-size: 18px;
        }
        .stats-table th {
            background-color: #0f1759;
            color: #fff;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .stats-table tr:hover {
            background-color: #faf6ed;
            transform: scale(1.008);
            transition: all 0.3s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .list-container {
            margin: 30px 0 45px 40px;
        }
        .list-container li {
            margin-bottom: 18px;
            font-size: 18px;
            color: #333333;
            list-style-type: disc;
            padding-left: 12px;
        }
        .list-container li strong {
            color: #0f1759;
            font-weight: 700;
        }
        .guide-list {
            list-style-type: decimal;
            margin-left: 50px;
        }
        .guide-list li {
            margin-bottom: 25px;
            padding-left: 15px;
        }
        .genres-container, .tags-container {
            margin: 60px 0;
            padding: 25px;
            background-color: #fff;
            border-radius: 18px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.1);
        }
        .genres-title, .tags-title {
            font-size: 24px;
            color: #0f1759;
            margin-bottom: 25px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .genres, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .genre, .tag {
            padding: 12px 25px;
            background-color: #e3f2fd;
            color: #0f1759;
            border-radius: 30px;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .genre:hover, .tag:hover {
            background-color: #0f1759;
            color: #fff;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(15, 23, 89, 0.25);
        }
        .footer {
            background-color: #0f1759;
            color: #fff;
            padding: 70px 0 40px;
            margin-top: 100px;
            border-top-left-radius: 35px;
            border-top-right-radius: 35px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .recommendation {
            background-color: #1a237e;
            padding: 35px;
            border-radius: 18px;
            margin: 0 0 50px;
            text-align: center;
            font-size: 22px;
            line-height: 1.9;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .recommendation a {
            color: #ffd54f;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .recommendation a:hover {
            border-bottom: 3px solid #ffd54f;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #2c3e99;
            font-size: 17px;
            color: #d1d9ff;
            line-height: 2;
        }
        .community-thread {
            background-color: #fff;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .thread-author {
            font-weight: 700;
            color: #0f1759;
            font-size: 19px;
            margin-bottom: 10px;
        }
        .thread-date {
            color: #757575;
            font-size: 15px;
            margin-bottom: 15px;
        }
        .thread-content {
            font-size: 17px;
            color: #424242;
        }
        .review-card {
            background-color: #fff;
            border-radius: 15px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 5px 18px rgba(0,0,0,0.1);
            border-left: 5px solid #ffd54f;
        }
        .review-rating {
            color: #ffb74d;
            font-size: 24px;
            margin-bottom: 15px;
        }
        .review-author {
            font-weight: 700;
            color: #0f1759;
            font-size: 19px;
            margin-bottom: 5px;
        }
        .review-location {
            color: #616161;
            font-size: 16px;
            margin-bottom: 20px;
        }
        .review-text {
            font-size: 17px;
            color: #37474f;
            line-height: 1.8;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 38px;
            }
            h2 {
                font-size: 30px;
            }
            h3 {
                font-size: 26px;
            }
            h4 {
                font-size: 22px;
            }
            .btn {
                padding: 18px 35px;
                font-size: 20px;
            }
            .stats-table th, .stats-table td {
                padding: 18px;
                font-size: 17px;
            }
            .review-card {
                padding: 25px;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 32px;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 27px;
                margin: 60px 0 25px;
                padding-left: 18px;
            }
            h3 {
                font-size: 24px;
                margin: 45px 0 22px;
            }
            h4 {
                font-size: 21px;
            }
            p, .list-container li, .thread-content, .review-text {
                font-size: 17px;
            }
            .highlight {
                font-size: 18px;
            }
            .btn-container {
                gap: 20px;
            }
            .btn {
                padding: 16px 30px;
                font-size: 19px;
                width: 100%;
                justify-content: center;
            }
            .stats-table th, .stats-table td {
                padding: 15px;
                font-size: 15px;
            }
            .list-container {
                margin: 25px 0 35px 30px;
            }
            .guide-list {
                margin-left: 35px;
            }
            .recommendation {
                padding: 30px;
                font-size: 20px;
            }
            .community-thread {
                padding: 20px;
            }
            .review-card {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 22px;
            }
            h4 {
                font-size: 20px;
            }
            p, .list-container li, .thread-content, .review-text {
                font-size: 16px;
            }
            .stats-table {
                font-size: 14px;
            }
            .genres, .tags {
                gap: 12px;
            }
            .genre, .tag {
                padding: 10px 18px;
                font-size: 15px;
            }
            .recommendation {
                padding: 25px;
                font-size: 18px;
            }
            .copyright {
                font-size: 15px;
            }
            .menu-toggle {
                font-size: 28px;
            }
        }
