        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #FFFDF5;
            color: #2D2D2D;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 17px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #FF7A00;
            color: white;
        }
        .btn-download:hover {
            background-color: #E06A00;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #008B7D;
            color: white;
            margin-left: 15px;
        }
        .btn-login:hover {
            background-color: #007266;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.15);
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        header {
            background-color: #FFFFFF;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 9999;
            padding: 12px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #FF7A00;
            letter-spacing: 0.8px;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #008B7D;
            margin-left: 5px;
        }
        .logo::before {
            content: "🎮 ";
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        .nav-links li a {
            font-weight: 500;
            color: #333333;
            padding: 8px 0;
            position: relative;
        }
        .nav-links li a:hover {
            color: #FF7A00;
        }
        .nav-links li a::after {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #FF7A00;
            transition: width 0.3s ease;
        }
        .nav-links li a:hover::after {
            width: 100%;
        }
        .nav-links li a.daman-link {
            color: #008B7D;
            font-weight: 700;
            font-size: 17px;
        }
        .hamburger {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: #333333;
            background: none;
            border: none;
        }
        .hero {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, #FF7A0012 0%, #008B7D12 100%);
            border-radius: 20px;
            margin: 35px 0;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://via.placeholder.com/1500x800');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-size: 48px;
            color: #2D2D2D;
            margin-bottom: 25px;
            line-height: 1.4;
            font-weight: 800;
        }
        .hero h1 span {
            color: #FF7A00;
        }
        .hero p {
            font-size: 20px;
            max-width: 900px;
            margin: 0 auto 40px;
            color: #4A4A4A;
            line-height: 1.9;
        }
        .hero-img {
            max-width: 90%;
            height: auto;
            border-radius: 15px;
            margin-top: 30px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.18);
            border: 4px solid white;
        }
        .main-content {
            margin: 80px 0;
        }
        .section {
            margin-bottom: 100px;
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        .section-title {
            font-size: 36px;
            color: #2D2D2D;
            margin-bottom: 40px;
            padding-bottom: 15px;
            border-bottom: 4px solid #FF7A00;
            display: inline-block;
            font-weight: 700;
        }
        .subsection-title {
            font-size: 28px;
            color: #008B7D;
            margin: 50px 0 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .subsection-title::before {
            content: "🔹 ";
            margin-right: 10px;
        }
        .subsubsection-title {
            font-size: 22px;
            color: #FF7A00;
            margin: 35px 0 18px;
            font-weight: 600;
        }
        .paragraph {
            margin-bottom: 30px;
            font-size: 18px;
            color: #3A3A3A;
            line-height: 1.8;
            text-align: justify;
        }
        .paragraph strong {
            color: #FF7A00;
            font-weight: 600;
        }
        .paragraph em {
            color: #008B7D;
            font-style: italic;
        }
        .highlight-box {
            background-color: #FFF8E0;
            padding: 25px;
            border-left: 5px solid #FFC107;
            border-radius: 0 12px 12px 0;
            margin: 40px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .highlight-box p {
            font-size: 19px;
            font-weight: 500;
            color: #2D2D2D;
            line-height: 1.9;
        }
        .highlight-box p::before {
            content: "💡 ";
        }
        .quote-box {
            background-color: #F0FFF9;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            position: relative;
        }
        .quote-box p {
            font-size: 20px;
            color: #2D2D2D;
            line-height: 2.0;
            font-style: italic;
            margin-bottom: 15px;
        }
        .quote-box .author {
            font-size: 17px;
            color: #008B7D;
            font-weight: 600;
            text-align: right;
        }
        .quote-box::before {
            content: "“";
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 60px;
            color: #008B7D;
            opacity: 0.2;
            font-family: Georgia, serif;
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
        }
        .responsive-img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            border: 1px solid #EEEEEE;
        }
        .img-caption {
            margin-top: 15px;
            color: #666666;
            font-size: 16px;
            font-style: italic;
        }
        .list-container {
            margin: 30px 0 40px 50px;
        }
        .bulleted-list {
            font-size: 18px;
            color: #3A3A3A;
            line-height: 1.9;
        }
        .bulleted-list li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }
        .bulleted-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #FF7A00;
            font-weight: bold;
        }
        .numbered-list {
            font-size: 18px;
            color: #3A3A3A;
            line-height: 1.9;
        }
        .numbered-list li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 10px;
        }
        .table-container {
            overflow-x: auto;
            margin: 40px 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 17px;
        }
        .data-table th, .data-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 2px solid #F0F0F0;
        }
        .data-table th {
            background-color: #008B7D;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .data-table tr:hover {
            background-color: #F9FFF9;
        }
        .data-table tr:nth-child(even) {
            background-color: #FAFAFA;
        }
        .tabs-container {
            margin: 50px 0;
        }
        .tabs-nav {
            display: flex;
            border-bottom: 2px solid #EEEEEE;
            margin-bottom: 30px;
        }
        .tab-btn {
            padding: 15px 25px;
            background: none;
            border: none;
            font-size: 18px;
            font-weight: 600;
            color: #666666;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }
        .tab-btn.active {
            color: #FF7A00;
            border-bottom: 3px solid #FF7A00;
        }
        .tab-btn:hover {
            color: #FF7A00;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .faqs-container {
            margin: 60px 0;
        }
        .faq-item {
            margin-bottom: 25px;
            background-color: #FAFAFA;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }
        .faq-item:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transform: translateY(-3px);
        }
        .faq-question {
            font-size: 20px;
            font-weight: 600;
            color: #2D2D2D;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        .faq-question::before {
            content: "❓";
            margin-right: 12px;
        }
        .faq-answer {
            font-size: 18px;
            color: #4A4A4A;
            line-height: 1.8;
            text-align: justify;
        }
        footer {
            background-color: #2D2D2D;
            color: white;
            padding: 80px 0 40px;
            border-radius: 20px 20px 0 0;
            margin-top: 100px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-column h3 {
            font-size: 22px;
            margin-bottom: 25px;
            color: #FFD700;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links li a {
            color: #DDDDDD;
            font-size: 17px;
            transition: all 0.3s ease;
        }
        .footer-links li a:hover {
            color: #FF7A00;
            padding-left: 8px;
        }
        .game-categories {
            margin: 40px 0;
        }
        .categories-title {
            font-size: 19px;
            color: #FFD700;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .categories-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .category-link {
            background-color: #444444;
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 15px;
            color: #FFFFFF;
            transition: all 0.3s ease;
        }
        .category-link:hover {
            background-color: #FF7A00;
            transform: translateY(-2px);
        }
        .tags-container {
            margin: 40px 0;
        }
        .tags-title {
            font-size: 19px;
            color: #FFD700;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-link {
            background-color: #3A3A3A;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            color: #EEEEEE;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #008B7D;
            transform: translateY(-2px);
        }
        .recommendation-box {
            background-color: #3A3A3A;
            padding: 35px;
            border-radius: 15px;
            margin: 40px 0;
            border: 1px solid #4A4A4A;
        }
        .recommendation-box h3 {
            color: #FFD700;
            margin-bottom: 20px;
            font-size: 22px;
            font-weight: 600;
        }
        .recommendation-box p {
            color: #EEEEEE;
            font-size: 18px;
            line-height: 1.9;
            margin-bottom: 25px;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #444444;
            color: #AAAAAA;
            font-size: 16px;
            line-height: 1.8;
        }
        .copyright a {
            color: #FF7A00;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 42px;
            }
            .section-title {
                font-size: 32px;
            }
            .subsection-title {
                font-size: 25px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 38px;
            }
            .hero p {
                font-size: 18px;
            }
            .paragraph {
                font-size: 17px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: white;
                padding: 30px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                border-radius: 0 0 15px 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 32px;
            }
            .hero p {
                font-size: 17px;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
            }
            .btn-login {
                margin-left: 0;
                margin-top: 15px;
            }
            .section {
                padding: 30px 20px;
            }
            .subsection-title {
                font-size: 23px;
            }
            .list-container {
                margin: 20px 0 30px 25px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 24px;
            }
            .hero {
                padding: 40px 0;
                margin: 20px 0;
            }
            .hero h1 {
                font-size: 28px;
            }
            .section {
                margin-bottom: 60px;
            }
            .paragraph {
                font-size: 16px;
            }
            .faq-question {
                font-size: 18px;
            }
            .recommendation-box {
                padding: 25px;
            }
        }
        img {
            loading: lazy;
        }
        .btn {
            transform: translateZ(0);
        }
