* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #f0f8fb;
            color: #2d3748;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 17px;
        }
        .header {
            background-color: #4299e1;
            padding: 16px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1250px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 32px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .logo span {
            color: #fefcbf;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 17px;
            transition: all 0.3s ease;
            padding: 6px 0;
            position: relative;
        }
        .nav-links a:hover {
            color: #fefcbf;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #fefcbf;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .daman-link {
            background-color: #ed8936;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600 !important;
            transition: all 0.3s ease;
        }
        .daman-link:hover {
            background-color: #dd6b20;
            color: #ffffff !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(237, 137, 54, 0.3);
        }
        .daman-link::after {
            display: none;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            color: #ffffff;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1001;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: #4299e1;
                padding: 80px 20px;
                gap: 25px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
                z-index: 1000;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 28px;
            }
        }
        .container {
            max-width: 1150px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 38px;
            color: #2d3748;
            text-align: center;
            margin-bottom: 45px;
            padding-bottom: 20px;
            border-bottom: 4px solid #4299e1;
            font-weight: 800;
        }
        h2 {
            font-size: 30px;
            color: #2d3748;
            margin: 50px 0 25px;
            padding-left: 20px;
            border-left: 6px solid #ed8936;
            font-weight: 700;
        }
        h3 {
            font-size: 24px;
            color: #4a5568;
            margin: 35px 0 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: '🔹';
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 700;
            color: #4299e1;
            font-size: 18px;
        }
        .strong-highlight {
            font-weight: 800;
            color: #ed8936;
            font-size: 19px;
            display: inline-block;
            margin: 2px 0;
        }
        .btn-container {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin: 60px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 35px;
            font-size: 22px;
            font-weight: 700;
            border: none;
            border-radius: 35px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 5px 18px rgba(0,0,0,0.12);
            min-width: 200px;
        }
        .download-btn {
            background-color: #38b2ac;
            color: white;
        }
        .download-btn:hover {
            background-color: #319795;
            transform: translateY(-4px);
            box-shadow: 0 8px 22px rgba(56, 178, 172, 0.3);
        }
        .login-btn {
            background-color: #9f7aea;
            color: white;
        }
        .login-btn:hover {
            background-color: #805ad5;
            transform: translateY(-4px);
            box-shadow: 0 8px 22px rgba(159, 122, 234, 0.3);
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 4px solid #ffffff;
        }
        .img-caption {
            margin-top: 15px;
            font-size: 17px;
            color: #718096;
            font-style: italic;
            text-align: center;
        }
        ul, ol {
            margin: 25px 0 35px 50px;
            font-size: 17px;
            line-height: 2.1;
        }
        ul {
            list-style-type: '✅ ';
        }
        ol {
            list-style-type: decimal-leading-zero;
        }
        li {
            margin-bottom: 18px;
            padding-left: 10px;
        }
        .section-card {
            background-color: white;
            border-radius: 18px;
            padding: 35px;
            margin-bottom: 50px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            border-top: 5px solid #4299e1;
        }
        .review-card {
            background-color: #f5fafe;
            border-left: 5px solid #38b2ac;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 18px;
        }
        .review-stars {
            color: #ed8936;
            font-size: 18px;
            letter-spacing: 2px;
        }
        .review-location {
            color: #718096;
            font-size: 16px;
            margin-left: 8px;
        }
        .localization-table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 0;
            font-size: 17px;
        }
        .localization-table th, .localization-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 2px solid #e2e8f0;
        }
        .localization-table th {
            background-color: #4299e1;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .localization-table tr:hover {
            background-color: #f5fafe;
            transform: scale(1.005);
            transition: transform 0.2s ease;
        }
        .localization-table tr:nth-child(even) {
            background-color: #fafafa;
        }
        .tabs {
            display: flex;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .tab {
            padding: 12px 25px;
            background-color: #e8f4f8;
            border-radius: 30px;
            font-weight: 600;
            color: #4299e1;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .tab.active {
            background-color: #4299e1;
            color: white;
            border-color: #2b6cb0;
        }
        .tab:hover {
            background-color: #d6eaf8;
            transform: translateY(-2px);
        }
        .discussion-thread {
            background-color: #fdf2f8;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            border-top: 4px solid #9f7aea;
        }
        .discussion-title {
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
            font-size: 19px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .discussion-author {
            color: #718096;
            font-size: 16px;
            margin-bottom: 20px;
        }
        .discussion-content {
            margin-bottom: 20px;
            line-height: 1.9;
        }
        .discussion-replies {
            margin-left: 20px;
            padding-left: 20px;
            border-left: 2px solid #e2d5de;
        }
        .reply {
            margin-bottom: 20px;
            padding: 15px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .reply-author {
            font-weight: 600;
            color: #4a5568;
            margin-bottom: 5px;
            font-size: 16px;
        }
        .footer {
            background-color: #2d3748;
            color: white;
            padding: 60px 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1150px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
        }
        .footer-section h4 {
            font-size: 22px;
            margin-bottom: 25px;
            color: #ed8936;
            font-weight: 700;
            padding-bottom: 10px;
            border-bottom: 2px solid #4a5568;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #e2e8f0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 17px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a:hover {
            color: #ed8936;
            padding-left: 8px;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .tag {
            background-color: #4a5568;
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .tag a {
            color: #e2e8f0;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #ed8936;
            transform: translateY(-2px);
        }
        .tag:hover a {
            color: white;
        }
        .recommendation {
            background-color: #4a5568;
            padding: 30px;
            border-radius: 15px;
            margin-top: 40px;
            text-align: center;
            font-size: 19px;
            line-height: 2.1;
        }
        .recommendation a {
            color: #38b2ac;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .recommendation a:hover {
            color: #ed8936;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 2px solid #4a5568;
            font-size: 17px;
            color: #a0aec0;
            line-height: 1.8;
        }
        .game-type-nav {
            margin: 40px 0 20px;
            padding: 20px;
            background-color: #f5fafe;
            border-radius: 15px;
        }
        .game-type-nav h4 {
            font-size: 20px;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 700;
        }
        .game-type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-type-links a {
            color: #4299e1;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            background-color: white;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .game-type-links a:hover {
            background-color: #4299e1;
            color: white;
            border-color: #4299e1;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 32px;
                margin-bottom: 35px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 26px;
                margin: 40px 0 20px;
                padding-left: 15px;
            }
            h3 {
                font-size: 22px;
                margin: 30px 0 15px;
            }
            p, ul, ol {
                font-size: 16px;
                line-height: 1.8;
            }
            .btn {
                padding: 15px 30px;
                font-size: 20px;
                width: 100%;
                margin-bottom: 10px;
            }
            .section-card {
                padding: 25px;
                margin-bottom: 40px;
            }
            .localization-table th, .localization-table td {
                padding: 12px 8px;
                font-size: 15px;
            }
            ul, ol {
                margin: 20px 0 30px 30px;
            }
            .review-card {
                padding: 20px;
                margin: 25px 0;
            }
            .img-container {
                margin: 40px 0;
            }
            .footer {
                padding: 40px 20px;
            }
            .footer-container {
                gap: 30px;
            }
            .game-type-nav {
                padding: 15px;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f0f8fb;
        }
        ::-webkit-scrollbar-thumb {
            background: #4299e1;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #2b6cb0;
        }
