* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #f8f4e9;
            color: #333;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #e63946;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .logo span {
            color: #ffd166;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd166;
            border-bottom: 2px solid #ffd166;
        }
        .daman-link {
            background-color: #ffd166;
            padding: 8px 20px;
            border-radius: 25px;
            color: #2d3142 !important;
            font-weight: 700;
            border-bottom: none !important;
        }
        .daman-link:hover {
            background-color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255,209,102,0.4);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }
        .btn-container {
            margin: 40px 0;
            text-align: center;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        .btn {
            display: inline-block;
            padding: 14px 35px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            font-size: 18px;
            min-width: 200px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #2ec4b6;
            color: #fff;
            border: 2px solid #27a69b;
        }
        .btn-download:hover {
            background-color: #27a69b;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(46,196,182,0.3);
        }
        .btn-login {
            background-color: #06d6a0;
            color: #fff;
            border: 2px solid #05a87d;
        }
        .btn-login:hover {
            background-color: #05a87d;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(6,214,160,0.3);
        }
        h1 {
            font-size: 42px;
            color: #e63946;
            text-align: center;
            margin: 50px 0 30px;
            font-weight: 900;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            line-height: 1.4;
        }
        h2 {
            font-size: 32px;
            color: #2d3142;
            margin: 60px 0 30px;
            padding-bottom: 12px;
            border-bottom: 4px solid #e63946;
            font-weight: 800;
            display: flex;
            align-items: center;
        }
        h2::before {
            content: "🎯";
            margin-right: 15px;
        }
        h3 {
            font-size: 24px;
            color: #e63946;
            margin: 40px 0 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "➡️";
            margin-right: 10px;
        }
        h4 {
            font-size: 20px;
            color: #2d3142;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 22px;
            font-size: 18px;
            color: #4a4e69;
            text-align: justify;
        }
        .highlight {
            font-weight: 800;
            color: #e63946;
            font-size: 19px;
        }
        .desi-tip {
            background-color: #fff8e6;
            border-left: 5px solid #ffd166;
            padding: 20px 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
        }
        .desi-tip strong {
            color: #e63946;
            font-size: 19px;
            display: block;
            margin-bottom: 8px;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 40px auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 4px solid #fff;
        }
        ul, ol {
            margin: 25px 0 35px 50px;
            font-size: 18px;
            color: #4a4e69;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 15px;
            padding-left: 10px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
            font-size: 17px;
        }
        .stats-table th {
            background-color: #e63946;
            color: #fff;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stats-table tr:hover {
            background-color: #faf6ed;
            transform: scale(1.005);
            transition: transform 0.2s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .categories-container {
            margin: 60px 0 40px;
        }
        .categories-title, .tags-title {
            font-size: 22px;
            color: #2d3142;
            margin-bottom: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        .categories-title::before, .tags-title::before {
            content: "🏷️";
            margin-right: 10px;
        }
        .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }
        .category {
            padding: 12px 25px;
            background-color: #e63946;
            color: #fff;
            border-radius: 30px;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        .category:hover {
            background-color: #c1121f;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(230,57,70,0.3);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            padding: 10px 20px;
            background-color: #4a4e69;
            color: #fff;
            border-radius: 25px;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .tag:hover {
            background-color: #2d3142;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(74,78,105,0.3);
        }
        footer {
            background-color: #2d3142;
            color: #fff;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-note {
            font-size: 20px;
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.8;
            color: #f8f4e9;
        }
        .footer-note strong {
            color: #ffd166;
        }
        .footer-links {
            margin: 40px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #4a4e69;
            font-size: 16px;
            color: #d8d4cd;
        }
        .guide-card {
            background-color: #fff;
            border-radius: 15px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            border-left: 6px solid #2ec4b6;
        }
        .guide-card h4 {
            color: #2ec4b6;
            margin-bottom: 20px;
        }
        .guide-steps {
            counter-reset: step-counter;
            list-style-type: none;
            margin-left: 0;
        }
        .guide-steps li {
            position: relative;
            padding-left: 50px;
            margin-bottom: 25px;
        }
        .guide-steps li::before {
            content: counter(step-counter);
            counter-increment: step-counter;
            position: absolute;
            left: 0;
            top: 0;
            background-color: #2ec4b6;
            color: #fff;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }
        .community-thread {
            background-color: #fff;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .thread-author {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ffd166;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #2d3142;
            margin-right: 15px;
        }
        .author-name {
            font-weight: 600;
            color: #2d3142;
        }
        .thread-date {
            color: #9a968f;
            font-size: 15px;
            margin-left: 10px;
        }
        .thread-content {
            color: #4a4e69;
            font-size: 17px;
        }
        .thread-reply {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }
        .faq-container {
            margin: 40px 0;
        }
        .faq-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
        }
        .faq-question {
            background-color: #f8f4e9;
            padding: 20px;
            font-weight: 600;
            color: #2d3142;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            background-color: #fff;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 30px 20px;
                gap: 20px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 32px;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 26px;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 22px;
                margin: 30px 0 15px;
            }
            h4 {
                font-size: 19px;
            }
            p, ul, ol, .thread-content {
                font-size: 17px;
            }
            .btn {
                padding: 12px 25px;
                font-size: 16px;
                width: 100%;
                min-width: auto;
                margin: 8px 0;
            }
            .stats-table th, .stats-table td {
                padding: 12px 10px;
                font-size: 15px;
            }
            .guide-card {
                padding: 20px;
            }
            .community-thread {
                padding: 20px;
            }
            .desi-tip {
                padding: 15px 20px;
            }
            ul, ol {
                margin-left: 30px;
            }
            .guide-steps li {
                padding-left: 40px;
            }
            .footer-note {
                font-size: 18px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            .btn-container {
                gap: 10px;
            }
            .stats-table {
                font-size: 14px;
            }
            .categories, .tags {
                gap: 10px;
            }
            .category {
                padding: 10px 18px;
                font-size: 15px;
            }
            .tag {
                padding: 8px 15px;
                font-size: 14px;
            }
        }
