* {
            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: #f5f5f0;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #0a3d62;
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f9ca24;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #eb4d4b;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #f9ca24;
            border-bottom: 2px solid #f9ca24;
        }
        .daman-link {
            background-color: #f9ca24;
            padding: 10px 20px;
            border-radius: 8px;
            color: #0a3d62 !important;
            font-weight: 700;
            border-bottom: none !important;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .daman-link:hover {
            background-color: #f0932b;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
        }
        .menu-toggle {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: white;
        }
        #menu-checkbox {
            display: none;
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .download-btn, .login-btn {
            padding: 16px 35px;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .login-btn {
            background-color: #3498db;
            color: white;
        }
        .download-btn:hover, .login-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.18);
        }
        .download-btn i, .login-btn i {
            font-size: 1.4rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #0a3d62;
            margin: 50px 0 35px;
            text-align: center;
            border-bottom: 4px solid #f9ca24;
            padding-bottom: 20px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 2.2rem;
            color: #eb4d4b;
            margin: 60px 0 30px;
            padding-left: 20px;
            border-left: 5px solid #eb4d4b;
            font-weight: 700;
        }
        h3 {
            font-size: 1.7rem;
            color: #2c3e50;
            margin: 40px 0 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "🎯";
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #16a085;
            margin: 30px 0 20px;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            color: #34495e;
        }
        strong {
            color: #0a3d62;
            font-weight: 700;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 3px 8px;
            border-radius: 5px;
            font-weight: 700;
            color: #e65100;
            border: 1px solid #ffe082;
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .img-caption {
            text-align: center;
            margin-top: 15px;
            font-style: italic;
            color: #636e72;
            font-size: 1rem;
            padding: 0 20px 15px;
        }
        ul, ol {
            margin: 25px 0 35px 50px;
        }
        li {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #34495e;
            position: relative;
        }
        ul li::before {
            content: "✅";
            position: absolute;
            left: -30px;
            top: 2px;
            font-size: 0.9rem;
        }
        ol li {
            counter-increment: item;
        }
        ol li::before {
            content: counter(item) ".";
            position: absolute;
            left: -30px;
            top: 0;
            font-weight: 700;
            color: #eb4d4b;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        th, td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #ecf0f1;
        }
        th {
            background-color: #0a3d62;
            color: white;
            font-weight: 700;
            font-size: 1.05rem;
        }
        tr:hover {
            background-color: #f8f9fa;
            transform: scale(1.005);
            transition: transform 0.2s ease;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .localization-tabs {
            display: flex;
            gap: 12px;
            margin: 35px 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .tab {
            padding: 12px 22px;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tab.active {
            background-color: #eb4d4b;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .tab:hover {
            background-color: #2980b9;
        }
        .community-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #f9ca24;
        }
        .community-card h4 {
            font-size: 1.5rem;
            color: #0a3d62;
            margin-bottom: 20px;
            border-bottom: 2px solid #f1f1f1;
            padding-bottom: 10px;
        }
        .testimonial {
            font-style: italic;
            color: #4a4a4a;
            position: relative;
            padding-left: 30px;
        }
        .testimonial::before {
            content: "\"";
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: #f9ca24;
            opacity: 0.7;
        }
        .testimonial-author {
            display: block;
            text-align: right;
            margin-top: 15px;
            font-weight: 600;
            color: #0a3d62;
        }
        .game-categories {
            margin: 60px 0 40px;
        }
        .category-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 25px 0;
        }
        .category-link {
            padding: 10px 20px;
            background-color: #f1f2f6;
            color: #0a3d62;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .category-link:hover {
            background-color: #0a3d62;
            color: white;
            transform: translateY(-2px);
        }
        .tags-section {
            margin: 50px 0;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0;
        }
        .tag-link {
            padding: 8px 18px;
            background-color: #e8f4f8;
            color: #2d3436;
            text-decoration: none;
            border-radius: 20px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #3498db;
            color: white;
        }
        .recommendation-section {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 35px;
            margin: 60px 0;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .recommendation-section p {
            font-size: 1.2rem;
            color: #2d3436;
            text-align: center;
            margin-bottom: 0;
        }
        .recommendation-section strong {
            color: #eb4d4b;
        }
        footer {
            background-color: #0a3d62;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #f9ca24;
            border-bottom: 2px solid #f9ca24;
            padding-bottom: 12px;
        }
        .footer-section a {
            color: #dfe6e9;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-section a:hover {
            color: #f9ca24;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1e272e;
            font-size: 1rem;
            color: #b2bec3;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #0a3d62;
                padding: 30px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.15);
            }
            #menu-checkbox:checked ~ .nav-links {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin: 40px 0 30px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 50px 0 25px;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 35px 0 20px;
            }
            h4 {
                font-size: 1.3rem;
            }
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
            .download-btn, .login-btn {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
                font-size: 1.1rem;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 20px;
            }
            ul, ol {
                margin: 20px 0 30px 35px;
            }
            li {
                margin-bottom: 15px;
                font-size: 1.05rem;
            }
            th, td {
                padding: 12px;
                font-size: 0.95rem;
            }
            .img-container {
                margin: 30px 0;
            }
            .footer-container {
                gap: 30px;
            }
            .footer-section h4 {
                margin-bottom: 20px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .localization-tabs {
                gap: 8px;
            }
            .tab {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            .community-card {
                padding: 20px;
            }
            .recommendation-section {
                padding: 25px;
            }
            .recommendation-section p {
                font-size: 1.1rem;
            }
        }
