* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
        }
        body {
            color: #2d3436;
            background-color: #f8f4e9;
            padding-bottom: 90px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #0f4c81;
            color: white;
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 18px rgba(0,0,0,0.25);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffdd59;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo span {
            color: #ff793f;
        }
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ffdd59;
            border-bottom: 3px solid #ffdd59;
        }
        .daman-link {
            background-color: #ffdd59;
            padding: 14px 28px;
            border-radius: 12px;
            color: #0f4c81 !important;
            font-weight: 700;
            border-bottom: none !important;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .daman-link:hover {
            background-color: #ffc107;
            color: white !important;
            transform: translateY(-4px);
            box-shadow: 0 7px 15px rgba(0,0,0,0.25);
        }
        .menu-toggle {
            display: none;
            font-size: 2.4rem;
            cursor: pointer;
            color: white;
        }
        #menu-checkbox {
            display: none;
        }
        .btn-container {
            margin: 60px 0;
            display: flex;
            gap: 35px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .download-btn, .login-btn {
            padding: 20px 45px;
            border: none;
            border-radius: 15px;
            font-size: 1.4rem;
            font-weight: 800;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .login-btn {
            background-color: #e74c3c;
            color: white;
        }
        .download-btn:hover, .login-btn:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .download-btn i, .login-btn i {
            font-size: 1.8rem;
        }
        h1 {
            font-size: 3.2rem;
            color: #0f4c81;
            margin: 70px 0 45px;
            text-align: center;
            border-bottom: 6px solid #ffdd59;
            padding-bottom: 30px;
            font-weight: 900;
            letter-spacing: 1px;
        }
        h2 {
            font-size: 2.5rem;
            color: #ff793f;
            margin: 80px 0 40px;
            padding-left: 30px;
            border-left: 7px solid #ff793f;
            font-weight: 800;
        }
        h3 {
            font-size: 2rem;
            color: #27ae60;
            margin: 60px 0 35px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h3::before {
            content: "🏹";
            font-size: 2rem;
        }
        h4 {
            font-size: 1.7rem;
            color: #8e44ad;
            margin: 50px 0 30px;
            font-weight: 700;
            padding-bottom: 10px;
            border-bottom: 2px dashed #bdc3c7;
        }
        p {
            margin-bottom: 35px;
            font-size: 1.2rem;
            text-align: justify;
            color: #34495e;
            line-height: 2;
        }
        strong {
            color: #0f4c81;
            font-weight: 800;
            font-size: 1.25rem;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 6px 12px;
            border-radius: 8px;
            font-weight: 700;
            color: #d35400;
            border: 1px solid #ffd93d;
        }
        .img-container {
            margin: 70px 0;
            text-align: center;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .img-caption {
            text-align: center;
            margin-top: 25px;
            font-style: italic;
            color: #636e72;
            font-size: 1.1rem;
            padding: 0 30px 25px;
        }
        ul, ol {
            margin: 35px 0 45px 70px;
        }
        li {
            margin-bottom: 30px;
            font-size: 1.2rem;
            color: #34495e;
            position: relative;
            line-height: 2;
        }
        ul li::before {
            content: "✅";
            position: absolute;
            left: -40px;
            top: 5px;
            font-size: 1.2rem;
        }
        ol li {
            counter-increment: item;
        }
        ol li::before {
            content: counter(item) ".";
            position: absolute;
            left: -40px;
            top: 0;
            font-weight: 800;
            color: #ff793f;
            font-size: 1.3rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 60px 0;
            background-color: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        th, td {
            padding: 22px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
        }
        th {
            background-color: #0f4c81;
            color: white;
            font-weight: 700;
            font-size: 1.15rem;
        }
        tr:hover {
            background-color: #f9f9f9;
            transform: scale(1.009);
            transition: transform 0.2s ease;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .localization-tabs {
            display: flex;
            gap: 18px;
            margin: 50px 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .tab {
            padding: 16px 28px;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 35px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .tab.active {
            background-color: #ff793f;
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.25);
        }
        .tab:hover {
            background-color: #2980b9;
        }
        .community-card {
            background-color: white;
            border-radius: 20px;
            padding: 40px;
            margin: 60px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border-left: 7px solid #ffdd59;
        }
        .community-card h4 {
            font-size: 1.8rem;
            color: #0f4c81;
            margin-bottom: 30px;
            border-bottom: 2px solid #f1f1f1;
            padding-bottom: 18px;
        }
        .testimonial {
            font-style: italic;
            color: #2c3e50;
            position: relative;
            padding-left: 50px;
            font-size: 1.3rem;
        }
        .testimonial::before {
            content: "\"";
            position: absolute;
            left: 0;
            top: -20px;
            font-size: 4.5rem;
            color: #ffdd59;
            opacity: 0.85;
        }
        .testimonial-author {
            display: block;
            text-align: right;
            margin-top: 25px;
            font-weight: 700;
            color: #0f4c81;
            font-size: 1.2rem;
        }
        .game-categories {
            margin: 80px 0 60px;
        }
        .category-list {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 35px 0;
        }
        .category-link {
            padding: 14px 28px;
            background-color: #f1f2f6;
            color: #0f4c81;
            text-decoration: none;
            border-radius: 35px;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        .category-link:hover {
            background-color: #0f4c81;
            color: white;
            transform: translateY(-4px);
        }
        .tags-section {
            margin: 70px 0;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 35px 0;
        }
        .tag-link {
            padding: 12px 25px;
            background-color: #e3f2fd;
            color: #2c3e50;
            text-decoration: none;
            border-radius: 30px;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #3498db;
            color: white;
        }
        .recommendation-section {
            background-color: #f5f6fa;
            border-radius: 20px;
            padding: 45px;
            margin: 80px 0;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .recommendation-section p {
            font-size: 1.4rem;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 0;
            line-height: 2.2;
        }
        .recommendation-section strong {
            color: #ff793f;
        }
        footer {
            background-color: #0f4c81;
            color: white;
            padding: 80px 0 50px;
            margin-top: 120px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 60px;
            margin-bottom: 70px;
        }
        .footer-section h4 {
            font-size: 1.6rem;
            margin-bottom: 35px;
            color: #ffdd59;
            border-bottom: 3px solid #ffdd59;
            padding-bottom: 18px;
        }
        .footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            display: block;
            margin-bottom: 18px;
            transition: color 0.3s ease;
            font-size: 1.15rem;
        }
        .footer-section a:hover {
            color: #ffdd59;
            padding-left: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid #2980b9;
            font-size: 1.1rem;
            color: #b0b0b0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100px;
                left: 0;
                right: 0;
                background-color: #0f4c81;
                padding: 45px;
                gap: 30px;
                box-shadow: 0 18px 18px rgba(0,0,0,0.25);
            }
            #menu-checkbox:checked ~ .nav-links {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2.6rem;
                margin: 60px 0 40px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 2.2rem;
                margin: 70px 0 35px;
                padding-left: 25px;
            }
            h3 {
                font-size: 1.8rem;
                margin: 50px 0 30px;
            }
            h4 {
                font-size: 1.5rem;
            }
            .btn-container {
                flex-direction: column;
                gap: 25px;
            }
            .download-btn, .login-btn {
                width: 100%;
                justify-content: center;
                padding: 18px 30px;
                font-size: 1.3rem;
            }
            p {
                font-size: 1.15rem;
                margin-bottom: 30px;
            }
            ul, ol {
                margin: 30px 0 40px 55px;
            }
            li {
                margin-bottom: 25px;
                font-size: 1.15rem;
            }
            th, td {
                padding: 18px;
                font-size: 1.05rem;
            }
            .img-container {
                margin: 50px 0;
            }
            .footer-container {
                gap: 45px;
            }
            .footer-section h4 {
                margin-bottom: 30px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.9rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .localization-tabs {
                gap: 12px;
            }
            .tab {
                padding: 12px 20px;
                font-size: 1rem;
            }
            .community-card {
                padding: 30px;
            }
            .recommendation-section {
                padding: 35px;
            }
            .recommendation-section p {
                font-size: 1.2rem;
            }
            .footer-container {
                gap: 35px;
            }
        }
