* {
            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;
            letter-spacing: 0.4px;
        }
        .header {
            background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
            color: #fff;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 5px 18px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 36px;
            font-weight: 900;
            color: #ffd166;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 4px 4px 8px rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #ffffff;
            font-weight: 400;
            margin-left: 10px;
            font-size: 22px;
        }
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 18px;
            padding: 8px 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffd166;
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffd166;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .daman-link {
            background-color: #ffd166;
            color: #2c3e50 !important;
            padding: 12px 25px;
            border-radius: 10px;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(255, 209, 102, 0.5);
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .daman-link:hover {
            background-color: #ffe082;
            box-shadow: 0 7px 20px rgba(255, 209, 102, 0.6);
            transform: translateY(-3px);
        }
        .daman-link::after {
            display: none;
        }
        .menu-toggle {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: #ffd166;
            background: transparent;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
                padding: 35px 25px;
                gap: 25px;
                box-shadow: 0 18px 30px rgba(0,0,0,0.4);
                border-top: 2px solid #4a6278;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 30px;
            }
            .logo span {
                font-size: 20px;
            }
        }
        .container {
            max-width: 1300px;
            margin: 50px auto;
            padding: 0 25px;
        }
        h1 {
            color: #2c3e50;
            font-size: 45px;
            margin-bottom: 35px;
            text-align: center;
            font-weight: 900;
            line-height: 1.5;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
            padding: 0 15px;
        }
        h2 {
            color: #34495e;
            font-size: 34px;
            margin: 70px 0 30px;
            border-left: 6px solid #ffd166;
            padding-left: 25px;
            font-weight: 800;
            line-height: 1.6;
        }
        h3 {
            color: #415a77;
            font-size: 28px;
            margin: 50px 0 25px;
            font-weight: 700;
            line-height: 1.7;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🛡️";
            margin-right: 15px;
            font-size: 32px;
        }
        h4 {
            color: #526d82;
            font-size: 24px;
            margin: 40px 0 20px;
            font-weight: 600;
            line-height: 1.7;
        }
        p {
            margin-bottom: 25px;
            font-size: 18px;
            text-align: justify;
            color: #333333;
            padding: 0 10px;
        }
        .highlight {
            font-weight: 800;
            color: #2c3e50;
            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 42px;
            border-radius: 15px;
            font-size: 22px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .download-btn {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: #fff;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #f15c4b 0%, #d35446 100%);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(231, 76, 60, 0.6);
        }
        .login-btn {
            background: linear-gradient(135deg, #27ae60 0%, #219954 100%);
            color: #fff;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(39, 174, 96, 0.6);
        }
        .img-container {
            text-align: center;
            margin: 55px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            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 #f2f2f2;
            font-size: 18px;
        }
        .stats-table th {
            background-color: #2c3e50;
            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: 20px;
            font-size: 18px;
            color: #333333;
            list-style-type: disc;
            padding-left: 15px;
        }
        .list-container li strong {
            color: #2c3e50;
            font-weight: 800;
        }
        .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 6px 20px rgba(0,0,0,0.1);
        }
        .genres-title, .tags-title {
            font-size: 24px;
            color: #2c3e50;
            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: #e8f4f8;
            color: #2c3e50;
            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: #2c3e50;
            color: #fff;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(44, 62, 80, 0.25);
        }
        .footer {
            background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
            color: #fff;
            padding: 70px 0 40px;
            margin-top: 100px;
            border-top-left-radius: 40px;
            border-top-right-radius: 40px;
        }
        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .recommendation {
            background-color: #34495e;
            padding: 35px;
            border-radius: 18px;
            margin: 0 0 50px;
            text-align: center;
            font-size: 22px;
            line-height: 2;
            box-shadow: 0 8px 22px rgba(0,0,0,0.2);
        }
        .recommendation a {
            color: #ffd166;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .recommendation a:hover {
            border-bottom: 3px solid #ffd166;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #4a6278;
            font-size: 17px;
            color: #d0d9e3;
            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.09);
        }
        .thread-author {
            font-weight: 700;
            color: #2c3e50;
            font-size: 19px;
            margin-bottom: 10px;
        }
        .thread-date {
            color: #7f8c8d;
            font-size: 15px;
            margin-bottom: 15px;
        }
        .thread-content {
            font-size: 17px;
            color: #444444;
        }
        .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 #ffd166;
        }
        .review-rating {
            color: #f39c12;
            font-size: 24px;
            margin-bottom: 15px;
        }
        .review-author {
            font-weight: 700;
            color: #2c3e50;
            font-size: 19px;
            margin-bottom: 5px;
        }
        .review-location {
            color: #6c7a7d;
            font-size: 16px;
            margin-bottom: 18px;
        }
        .review-text {
            font-size: 17px;
            color: #3d4749;
            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 36px;
                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: 20px;
            }
            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 32px;
                font-size: 19px;
                width: 100%;
                justify-content: center;
            }
            .stats-table th, .stats-table td {
                padding: 16px;
                font-size: 16px;
            }
            .list-container {
                margin: 25px 0 40px 30px;
            }
            .guide-list {
                margin-left: 35px;
            }
            .recommendation {
                padding: 30px;
                font-size: 20px;
            }
            .community-thread {
                padding: 22px;
            }
            .review-card {
                padding: 22px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 26px;
            }
            .logo span {
                font-size: 18px;
            }
            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;
            }
        }
