* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #faf6ed;
            color: #2d2d2d;
            line-height: 1.9;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .header {
            background-color: #121a63;
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #ffd166;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffffff;
            font-weight: 500;
        }
        .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;
        }
        .nav-links a:hover {
            color: #ffd166;
            transform: translateY(-2px);
        }
        .daman-link {
            background-color: #ffd166;
            color: #121a63 !important;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            box-shadow: 0 3px 8px rgba(255, 209, 102, 0.3);
        }
        .daman-link:hover {
            background-color: #ffdf8c;
            box-shadow: 0 4px 12px rgba(255, 209, 102, 0.4);
            transform: translateY(-3px);
        }
        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: #ffd166;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #121a63;
                padding: 30px 25px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 24px;
            }
        }
        .container {
            max-width: 1150px;
            margin: 40px auto;
            padding: 0 25px;
        }
        h1 {
            color: #121a63;
            font-size: 42px;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 800;
            line-height: 1.3;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1e2985;
            font-size: 32px;
            margin: 60px 0 25px;
            border-left: 5px solid #ffd166;
            padding-left: 20px;
            font-weight: 700;
            line-height: 1.4;
        }
        h3 {
            color: #2b36a6;
            font-size: 26px;
            margin: 40px 0 20px;
            font-weight: 600;
            line-height: 1.5;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "⚔️";
            margin-right: 12px;
            font-size: 28px;
        }
        h4 {
            color: #3540b3;
            font-size: 22px;
            margin: 30px 0 15px;
            font-weight: 600;
            line-height: 1.5;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
            color: #333333;
        }
        .highlight {
            font-weight: 700;
            color: #121a63;
            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 35px;
            border-radius: 12px;
            font-size: 20px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .download-btn {
            background-color: #ff6b35;
            color: #fff;
        }
        .download-btn:hover {
            background-color: #e55a2a;
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
        }
        .login-btn {
            background-color: #2ecc71;
            color: #fff;
        }
        .login-btn:hover {
            background-color: #27ae60;
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(46, 204, 113, 0.4);
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.18);
            border: 3px solid #ffffff;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 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: #121a63;
            color: #fff;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stats-table tr:hover {
            background-color: #f9f7f3;
            transform: scale(1.005);
            transition: all 0.2s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .list-container {
            margin: 25px 0 40px 35px;
        }
        .list-container li {
            margin-bottom: 15px;
            font-size: 17px;
            color: #333333;
            list-style-type: disc;
            padding-left: 10px;
        }
        .list-container li strong {
            color: #121a63;
        }
        .genres-container, .tags-container {
            margin: 50px 0;
        }
        .genres-title, .tags-title {
            font-size: 22px;
            color: #121a63;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .genres, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .genre, .tag {
            padding: 10px 22px;
            background-color: #e8f0fe;
            color: #121a63;
            border-radius: 30px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .genre:hover, .tag:hover {
            background-color: #121a63;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(18, 26, 99, 0.2);
        }
        .footer {
            background-color: #121a63;
            color: #fff;
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }
        .footer-container {
            max-width: 1150px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .recommendation {
            background-color: #1e2985;
            padding: 30px;
            border-radius: 15px;
            margin: 0 0 40px;
            text-align: center;
            font-size: 20px;
            line-height: 1.8;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        .recommendation a {
            color: #ffd166;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .recommendation a:hover {
            border-bottom: 2px solid #ffd166;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2b36a6;
            font-size: 16px;
            color: #d1d9ff;
            line-height: 1.8;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 24px;
            }
            h4 {
                font-size: 20px;
            }
            .btn {
                padding: 15px 30px;
                font-size: 18px;
            }
            .stats-table th, .stats-table td {
                padding: 15px;
                font-size: 16px;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 30px;
                margin-bottom: 25px;
            }
            h2 {
                font-size: 25px;
                margin: 50px 0 20px;
                padding-left: 15px;
            }
            h3 {
                font-size: 22px;
                margin: 35px 0 18px;
            }
            h4 {
                font-size: 19px;
            }
            p, .list-container li {
                font-size: 16px;
            }
            .highlight {
                font-size: 17px;
            }
            .btn-container {
                gap: 15px;
            }
            .btn {
                padding: 14px 25px;
                font-size: 17px;
                width: 100%;
                justify-content: center;
            }
            .stats-table th, .stats-table td {
                padding: 12px;
                font-size: 14px;
            }
            .list-container {
                margin: 20px 0 30px 25px;
            }
            .recommendation {
                padding: 25px;
                font-size: 18px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 20px;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 22px;
            }
            h3 {
                font-size: 20px;
            }
            h4 {
                font-size: 18px;
            }
            p, .list-container li {
                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;
            }
        }
