* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f9f5f0;
            color: #2c3e50;
            line-height: 1.9;
            padding-bottom: 80px;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #8b5a2b;
            color: #ffffff;
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 38px;
            font-weight: 900;
            color: #ffd700;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            text-decoration: none;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #fff8e1;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links li a:hover {
            color: #ffd700;
            border-bottom: 3px solid #ffd700;
        }
        .daman-link {
            background-color: #ffd700;
            padding: 12px 25px;
            border-radius: 35px;
            color: #8b5a2b !important;
            font-weight: 700;
            border-bottom: none !important;
        }
        .daman-link:hover {
            background-color: #ffc107;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 215, 0, 0.4);
        }
        .download-nav-btn {
            background-color: #2ecc71;
            padding: 12px 25px;
            border-radius: 35px;
            color: white !important;
            font-weight: 700;
            border-bottom: none !important;
        }
        .download-nav-btn:hover {
            background-color: #27ae60;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(46, 204, 113, 0.4);
        }
        .login-nav-btn {
            background-color: #3498db;
            padding: 12px 25px;
            border-radius: 35px;
            color: white !important;
            font-weight: 700;
            border-bottom: none !important;
        }
        .login-nav-btn:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(52, 152, 219, 0.4);
        }
        .hamburger {
            display: none;
            font-size: 35px;
            cursor: pointer;
            color: #ffd700;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background-color: #8b5a2b;
                padding: 40px 25px;
                gap: 30px;
                border-top: 2px solid rgba(255,255,255,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 32px;
            }
        }
        h1 {
            font-size: 45px;
            color: #8b5a2b;
            margin: 70px 0 45px;
            text-align: center;
            font-weight: 900;
            border-bottom: 6px solid #ffd700;
            padding-bottom: 30px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.15);
        }
        h2 {
            font-size: 36px;
            color: #8b5a2b;
            margin: 80px 0 40px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 18px;
            position: relative;
            padding-left: 20px;
        }
        h2::before {
            content: "🍲";
            font-size: 40px;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 90%;
            background-color: #ffd700;
            border-radius: 4px;
        }
        h3 {
            font-size: 30px;
            color: #6d4c41;
            margin: 60px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            padding-left: 15px;
        }
        h3::before {
            content: "🛡️";
            font-size: 28px;
        }
        h4 {
            font-size: 24px;
            color: #5d4037;
            margin: 45px 0 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h4::before {
            content: "🔶";
            font-size: 20px;
        }
        p {
            margin-bottom: 30px;
            font-size: 19px;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 5px 10px;
            border-radius: 6px;
            font-weight: 700;
            color: #856404;
            border: 1px solid #ffeeba;
        }
        .keyword {
            font-weight: 900;
            color: #8b5a2b;
            text-decoration: underline;
            text-underline-offset: 8px;
            text-decoration-thickness: 3px;
        }
        .stats-box {
            background-color: #f5ebe0;
            padding: 35px;
            border-radius: 20px;
            margin: 50px 0;
            border-left: 8px solid #3498db;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 220px;
        }
        .stat-value {
            font-size: 42px;
            font-weight: 900;
            color: #8b5a2b;
            margin-bottom: 12px;
        }
        .stat-label {
            font-size: 18px;
            color: #4a4a4a;
            font-weight: 500;
        }
        .img-container {
            margin: 70px 0;
            text-align: center;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .img-caption {
            margin-top: 25px;
            font-size: 17px;
            color: #555555;
            font-style: italic;
            padding: 0 30px 25px;
            background-color: #ffffff;
        }
        .btn-container {
            display: flex;
            gap: 35px;
            justify-content: center;
            margin: 80px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 22px 45px;
            border-radius: 40px;
            font-size: 23px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 7px 20px rgba(0,0,0,0.12);
        }
        .download-btn {
            background-color: #2ecc71;
            color: white;
        }
        .download-btn:hover {
            background-color: #27ae60;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(46, 204, 113, 0.45);
        }
        .login-btn {
            background-color: #3498db;
            color: white;
        }
        .login-btn:hover {
            background-color: #2980b9;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(52, 152, 219, 0.45);
        }
        ul, ol {
            margin: 35px 0 45px 70px;
        }
        li {
            margin-bottom: 25px;
            font-size: 19px;
            line-height: 1.9;
        }
        ul li::marker {
            color: #ffd700;
            font-size: 22px;
        }
        ol li::marker {
            color: #8b5a2b;
            font-weight: 700;
            font-size: 20px;
        }
        .guide-card {
            background-color: #f8f4e9;
            padding: 40px;
            border-radius: 20px;
            margin: 60px 0;
            border-top: 6px solid #3498db;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .guide-card h3 {
            margin-top: 0;
        }
        .tip-box {
            background-color: #fff8e6;
            padding: 30px;
            border-radius: 15px;
            margin: 35px 0;
            border-left: 5px solid #ffc107;
        }
        .tip-box p {
            margin-bottom: 0;
            font-weight: 600;
            color: #856404;
        }
        .event-card {
            background-color: #fdf2f8;
            padding: 40px;
            border-radius: 20px;
            margin: 60px 0;
            border-top: 6px solid #e74c3c;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .community-discussion {
            background-color: #e8f4f8;
            padding: 40px;
            border-radius: 20px;
            margin: 60px 0;
            border-top: 6px solid #8b5a2b;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .discussion-topic {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 4px solid #3498db;
        }
        .discussion-topic h4 {
            margin-top: 0;
            margin-bottom: 15px;
        }
        .game-types {
            background-color: #f0e6d2;
            padding: 45px;
            border-radius: 20px;
            margin: 90px 0 50px;
            border-left: 8px solid #8b5a2b;
        }
        .game-types h3 {
            margin-top: 0;
            color: #8b5a2b;
        }
        .type-list {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 35px;
        }
        .type-link {
            background-color: #d7ccc8;
            color: #8b5a2b;
            padding: 15px 28px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            font-size: 18px;
        }
        .type-link:hover {
            background-color: #bcafa6;
            transform: translateY(-4px);
            box-shadow: 0 5px 15px rgba(139, 90, 43, 0.25);
        }
        .tags {
            background-color: #faf0f5;
            padding: 45px;
            border-radius: 20px;
            margin: 50px 0 90px;
            border-left: 8px solid #e74c3c;
        }
        .tags h3 {
            margin-top: 0;
            color: #e74c3c;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 35px;
        }
        .tag-link {
            background-color: #fce4ec;
            color: #e74c3c;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag-link:hover {
            background-color: #f8ccd8;
            transform: translateY(-4px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.25);
        }
        .recommendation {
            background-color: #fff8e6;
            padding: 45px;
            border-radius: 20px;
            margin: 80px 0;
            text-align: center;
            border: 4px solid #ffd700;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
        }
        .recommendation p {
            font-size: 22px;
            font-weight: 700;
            color: #856404;
            margin-bottom: 0;
            text-align: center;
        }
        .recommendation a {
            color: #8b5a2b;
            font-weight: 900;
            text-decoration: underline;
            text-underline-offset: 7px;
        }
        .copyright {
            text-align: center;
            padding: 40px;
            background-color: #8b5a2b;
            color: #ffffff;
            margin-top: 120px;
            border-top: 6px solid #ffd700;
        }
        .copyright p {
            text-align: center;
            margin-bottom: 20px;
            font-size: 18px;
        }
        .copyright a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 38px;
                margin: 60px 0 35px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 32px;
                margin: 70px 0 35px;
            }
            h3 {
                font-size: 26px;
                margin: 50px 0 28px;
            }
            h4 {
                font-size: 22px;
                margin: 40px 0 22px;
            }
            .btn {
                padding: 20px 40px;
                font-size: 21px;
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            .img-container {
                margin: 60px 0;
            }
            ul, ol {
                margin: 30px 0 40px 50px;
            }
            p {
                font-size: 18px;
                margin-bottom: 28px;
            }
            .game-types, .tags {
                padding: 35px;
                margin: 70px 0;
            }
            .type-list, .tag-list {
                gap: 20px;
            }
            .stats-box {
                padding: 30px;
                gap: 30px;
            }
            .stat-value {
                font-size: 36px;
            }
            .guide-card, .event-card, .community-discussion {
                padding: 30px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 34px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 24px;
            }
            h4 {
                font-size: 20px;
            }
            .logo {
                font-size: 28px;
            }
            .nav-container {
                padding: 0 15px;
            }
            .container {
                padding: 0 15px;
            }
            .recommendation {
                padding: 30px 15px;
            }
            .recommendation p {
                font-size: 20px;
            }
            .stat-item {
                min-width: 180px;
            }
            .stat-value {
                font-size: 32px;
            }
        }
