* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f0e1;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .header {
            background: linear-gradient(135deg, #1a237e 0%, #0f1759 100%);
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.25);
        }
        .nav-container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 34px;
            font-weight: 900;
            color: #ffdd59;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #ffffff;
            font-weight: 500;
            margin-left: 8px;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 17px;
            padding: 6px 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffdd59;
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffdd59;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .daman-link {
            background-color: #ffdd59;
            color: #1a237e !important;
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(255, 221, 89, 0.45);
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .daman-link:hover {
            background-color: #ffe67e;
            box-shadow: 0 6px 18px rgba(255, 221, 89, 0.55);
            transform: translateY(-2px);
        }
        .daman-link::after {
            display: none;
        }
        .menu-toggle {
            display: none;
            font-size: 30px;
            cursor: pointer;
            color: #ffdd59;
            background: transparent;
            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, #1a237e 0%, #0f1759 100%);
                padding: 30px 20px;
                gap: 22px;
                box-shadow: 0 15px 25px rgba(0,0,0,0.3);
                border-top: 1px solid #3949ab;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 28px;
            }
        }
        .container {
            max-width: 1250px;
            margin: 45px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1a237e;
            font-size: 42px;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 900;
            line-height: 1.4;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            padding: 0 10px;
        }
        h2 {
            color: #283593;
            font-size: 32px;
            margin: 65px 0 25px;
            border-left: 5px solid #ffdd59;
            padding-left: 20px;
            font-weight: 800;
            line-height: 1.5;
        }
        h3 {
            color: #3949ab;
            font-size: 26px;
            margin: 45px 0 22px;
            font-weight: 700;
            line-height: 1.6;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "⚔️";
            margin-right: 12px;
            font-size: 28px;
        }
        h4 {
            color: #4a57c9;
            font-size: 22px;
            margin: 35px 0 18px;
            font-weight: 600;
            line-height: 1.6;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
            color: #333333;
            padding: 0 5px;
        }
        .highlight {
            font-weight: 700;
            color: #1a237e;
            font-size: 18px;
        }
        .emoji {
            margin-right: 10px;
            font-size: 20px;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 38px;
            border-radius: 12px;
            font-size: 20px;
            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.15);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .download-btn {
            background: linear-gradient(135deg, #ff6e40 0%, #e65100 100%);
            color: #fff;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #ff8a5f 0%, #ff6b28 100%);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(255, 110, 64, 0.5);
        }
        .login-btn {
            background: linear-gradient(135deg, #26a69a 0%, #00897b 100%);
            color: #fff;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #2ec4b6 0%, #00a18e 100%);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(38, 166, 154, 0.5);
        }
        .img-container {
            text-align: center;
            margin: 45px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            border: 3px solid #ffffff;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 45px 0;
            background-color: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }
        .stats-table th, .stats-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
            font-size: 17px;
        }
        .stats-table th {
            background-color: #1a237e;
            color: #fff;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .stats-table tr:hover {
            background-color: #faf6ed;
            transform: scale(1.005);
            transition: all 0.3s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .list-container {
            margin: 25px 0 40px 35px;
        }
        .list-container li {
            margin-bottom: 16px;
            font-size: 17px;
            color: #333333;
            list-style-type: disc;
            padding-left: 10px;
        }
        .list-container li strong {
            color: #1a237e;
            font-weight: 700;
        }
        .guide-list {
            list-style-type: decimal;
            margin-left: 45px;
        }
        .guide-list li {
            margin-bottom: 22px;
            padding-left: 12px;
        }
        .genres-container, .tags-container {
            margin: 50px 0;
            padding: 22px;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .genres-title, .tags-title {
            font-size: 22px;
            color: #1a237e;
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .genres, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .genre, .tag {
            padding: 10px 22px;
            background-color: #e3f2fd;
            color: #1a237e;
            border-radius: 25px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        }
        .genre:hover, .tag:hover {
            background-color: #1a237e;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(26, 35, 126, 0.2);
        }
        .footer {
            background: linear-gradient(135deg, #1a237e 0%, #0f1759 100%);
            color: #fff;
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }
        .footer-container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .recommendation {
            background-color: #283593;
            padding: 30px;
            border-radius: 15px;
            margin: 0 0 40px;
            text-align: center;
            font-size: 20px;
            line-height: 1.8;
            box-shadow: 0 6px 18px rgba(0,0,0,0.18);
        }
        .recommendation a {
            color: #ffdd59;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .recommendation a:hover {
            border-bottom: 2px solid #ffdd59;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #3949ab;
            font-size: 16px;
            color: #d1d9ff;
            line-height: 1.8;
        }
        .community-thread {
            background-color: #fff;
            border-radius: 12px;
            padding: 22px;
            margin: 25px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.07);
        }
        .thread-author {
            font-weight: 700;
            color: #1a237e;
            font-size: 18px;
            margin-bottom: 8px;
        }
        .thread-date {
            color: #757575;
            font-size: 14px;
            margin-bottom: 12px;
        }
        .thread-content {
            font-size: 16px;
            color: #424242;
        }
        .review-card {
            background-color: #fff;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.09);
            border-left: 4px solid #ffdd59;
        }
        .review-rating {
            color: #ffb74d;
            font-size: 22px;
            margin-bottom: 12px;
        }
        .review-author {
            font-weight: 700;
            color: #1a237e;
            font-size: 18px;
            margin-bottom: 4px;
        }
        .review-location {
            color: #616161;
            font-size: 15px;
            margin-bottom: 15px;
        }
        .review-text {
            font-size: 16px;
            color: #37474f;
            line-height: 1.7;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 24px;
            }
            h4 {
                font-size: 20px;
            }
            .btn {
                padding: 16px 32px;
                font-size: 18px;
            }
            .stats-table th, .stats-table td {
                padding: 16px;
                font-size: 16px;
            }
            .review-card {
                padding: 22px;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 30px;
                margin-bottom: 25px;
            }
            h2 {
                font-size: 25px;
                margin: 55px 0 22px;
                padding-left: 15px;
            }
            h3 {
                font-size: 22px;
                margin: 40px 0 20px;
            }
            h4 {
                font-size: 19px;
            }
            p, .list-container li, .thread-content, .review-text {
                font-size: 16px;
            }
            .highlight {
                font-size: 17px;
            }
            .btn-container {
                gap: 18px;
            }
            .btn {
                padding: 14px 28px;
                font-size: 17px;
                width: 100%;
                justify-content: center;
            }
            .stats-table th, .stats-table td {
                padding: 14px;
                font-size: 15px;
            }
            .list-container {
                margin: 22px 0 35px 25px;
            }
            .guide-list {
                margin-left: 30px;
            }
            .recommendation {
                padding: 25px;
                font-size: 18px;
            }
            .community-thread {
                padding: 18px;
            }
            .review-card {
                padding: 18px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 20px;
            }
            h4 {
                font-size: 18px;
            }
            p, .list-container li, .thread-content, .review-text {
                font-size: 15px;
            }
            .stats-table {
                font-size: 13px;
            }
            .genres, .tags {
                gap: 10px;
            }
            .genre, .tag {
                padding: 8px 15px;
                font-size: 14px;
            }
            .recommendation {
                padding: 20px;
                font-size: 16px;
            }
            .copyright {
                font-size: 14px;
            }
            .menu-toggle {
                font-size: 26px;
            }
        }
