        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            line-height: 1.8;
            color: #2d3436;
            background-color: #fffdf7;
            padding-bottom: 60px;
            font-size: 16px;
        }
        header {
            background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
            color: #fff;
            padding: 15px 0;
            box-shadow: 0 3px 15px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 9999;
        }
        .container {
            width: 93%;
            max-width: 1350px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: linear-gradient(90deg, #fff 0%, #ffeb3b 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .logo span {
            font-style: italic;
            font-size: 1.6rem;
            letter-spacing: 0;
            color: #fff;
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
        }
        nav {
            display: block;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            padding: 7px 14px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.28);
            transform: translateY(-2px);
        }
        nav a.active {
            background-color: rgba(255,255,255,0.35);
            font-weight: 600;
        }
        .btn {
            padding: 12px 24px;
            border-radius: 35px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            text-align: center;
        }
        .btn-login {
            background-color: #ffffff;
            color: #FF9800;
            margin-right: 15px;
        }
        .btn-login:hover {
            background-color: #f8f8f8;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        }
        .btn-download {
            background-color: #ffeb3b;
            color: #F57C00;
        }
        .btn-download:hover {
            background-color: #fdd835;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.18);
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: #fff;
        }
        main {
            padding: 50px 0;
        }
        .page-title {
            font-size: 3rem;
            color: #F57C00;
            margin-bottom: 40px;
            text-align: center;
            border-bottom: 4px solid #FF9800;
            padding-bottom: 20px;
            font-weight: 800;
            letter-spacing: -0.8px;
        }
        .intro-panel {
            background: linear-gradient(120deg, #fffaf0 0%, #ffe0b2 100%);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 7px 25px rgba(0,0,0,0.08);
            margin-bottom: 50px;
            border-left: 10px solid #FF9800;
        }
        .intro-panel p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            line-height: 1.9;
        }
        .highlight-card {
            background-color: #fff8e1;
            border-left: 6px solid #F57C00;
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }
        .highlight-card h3 {
            color: #F57C00;
            margin-bottom: 15px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .stat-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-box {
            background-color: #fff;
            border-radius: 15px;
            padding: 28px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.07);
            border: 1px solid #ffcc80;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #F57C00;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .stat-desc {
            font-size: 1rem;
            color: #666;
            font-weight: 500;
        }
        section {
            background-color: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 7px 25px rgba(0,0,0,0.08);
            margin-bottom: 50px;
        }
        section h2 {
            color: #F57C00;
            margin-bottom: 35px;
            font-size: 2.3rem;
            border-bottom: 3px solid #ffcc80;
            padding-bottom: 15px;
            font-weight: 700;
        }
        section h3 {
            color: #E65100;
            margin: 35px 0 20px;
            font-size: 1.6rem;
            font-weight: 600;
        }
        section h4 {
            color: #F57C00;
            margin: 25px 0 15px;
            font-size: 1.3rem;
            font-weight: 600;
        }
        section p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.9;
        }
        .feature-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .feature-box {
            background-color: #fffaf0;
            border-radius: 15px;
            padding: 30px;
            border: 1px solid #ffcc80;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.1);
        }
        .feature-box h4 {
            color: #F57C00;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.3rem;
        }
        .feature-box p {
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .character-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 35px;
            margin: 40px 0;
        }
        .character-item {
            background-color: #fffaf0;
            border-radius: 18px;
            padding: 30px;
            text-align: center;
            border: 1px solid #ffcc80;
            box-shadow: 0 5px 18px rgba(0,0,0,0.06);
        }
        .character-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 20px;
            border: 4px solid #FF9800;
            transition: transform 0.3s ease;
        }
        .character-item:hover img {
            transform: scale(1.07);
        }
        .character-item h4 {
            color: #E65100;
            margin-bottom: 12px;
            font-size: 1.4rem;
        }
        .character-item p {
            font-size: 1rem;
            line-height: 1.8;
        }
        .mode-grid {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin: 40px 0;
        }
        .mode-item {
            background-color: #fffaf0;
            border-radius: 15px;
            padding: 30px;
            display: flex;
            gap: 30px;
            align-items: center;
            border: 1px solid #ffcc80;
            transition: all 0.3s ease;
        }
        .mode-item:hover {
            transform: translateX(7px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.09);
        }
        .mode-item img {
            width: 200px;
            height: 140px;
            object-fit: cover;
            border-radius: 12px;
            border: 4px solid #FF9800;
            flex-shrink: 0;
        }
        .mode-details h4 {
            color: #F57C00;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .mode-details p {
            font-size: 1.05rem;
            line-height: 1.8;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 18px rgba(0,0,0,0.07);
        }
        th, td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #ffcc80;
        }
        th {
            background-color: #fff8e1;
            color: #F57C00;
            font-weight: 600;
            font-size: 1.1rem;
        }
        tr:hover {
            background-color: #fffaf0;
        }
        tr:last-child td {
            border-bottom: none;
        }
        blockquote {
            font-style: italic;
            padding: 25px 30px;
            margin: 35px 0;
            border-left: 6px solid #FF9800;
            background-color: #fff8e1;
            border-radius: 0 12px 12px 0;
            color: #444;
            font-size: 1.1rem;
            line-height: 2;
            position: relative;
        }
        blockquote::before {
            content: '"';
            font-size: 3.5rem;
            color: #FF9800;
            opacity: 0.3;
            position: absolute;
            top: -15px;
            left: 15px;
        }
        blockquote::after {
            content: '"';
            font-size: 3.5rem;
            color: #FF9800;
            opacity: 0.3;
            position: absolute;
            bottom: -40px;
            right: 15px;
        }
        blockquote .cite {
            display: block;
            margin-top: 20px;
            font-weight: 600;
            color: #F57C00;
            font-style: normal;
        }
        ul, ol {
            margin-left: 35px;
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 2;
        }
        li {
            margin-bottom: 15px;
        }
        footer {
            background-color: #2d3436;
            color: #fff;
            padding: 70px 0 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 45px;
            margin-bottom: 60px;
        }
        .footer-column h3 {
            color: #ffeb3b;
            margin-bottom: 30px;
            font-size: 1.5rem;
            border-bottom: 2px solid #FF9800;
            padding-bottom: 15px;
            display: inline-block;
        }
        .footer-column ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-column ul li {
            margin-bottom: 18px;
        }
        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-column a:hover {
            color: #ffeb3b;
            padding-left: 8px;
        }
        .daman-recommendation {
            background-color: #34495e;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 50px;
            border: 1px solid #444;
        }
        .daman-recommendation h3 {
            color: #ffeb3b;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .daman-recommendation p {
            color: #eee;
            line-height: 1.9;
            font-size: 1.1rem;
        }
        .game-tags {
            margin: 35px 0;
        }
        .game-tags h4 {
            color: #ffeb3b;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag-cloud a {
            background-color: #444;
            padding: 10px 20px;
            border-radius: 25px;
            color: #eee;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag-cloud a:hover {
            background-color: #FF9800;
            color: #fff;
            transform: translateY(-2px);
        }
        .copyright {
            text-align: center;
            padding-top: 35px;
            border-top: 1px solid #444;
            font-size: 1rem;
            color: #aaa;
            line-height: 1.8;
        }
        .copyright a {
            color: #ffeb3b;
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        @media (max-width: 1200px) {
            .mode-item {
                gap: 25px;
            }
            .mode-item img {
                width: 180px;
                height: 130px;
            }
        }
        @media (max-width: 992px) {
            .header-content {
                gap: 15px;
            }
            nav ul {
                gap: 25px;
            }
            .btn {
                padding: 11px 20px;
                font-size: 1rem;
            }
            .mode-item {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            .mode-item img {
                width: 100%;
                max-width: 400px;
                height: auto;
            }
            .page-title {
                font-size: 2.6rem;
            }
            section h2 {
                font-size: 2.1rem;
            }
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 18px;
                background-color: rgba(255,152,0,0.95);
                padding: 25px;
                border-radius: 12px;
            }
            nav a {
                display: block;
                padding: 12px 18px;
            }
            .hamburger {
                display: block;
            }
            .btn-group {
                margin-top: 20px;
                width: 100%;
                display: flex;
                justify-content: center;
                gap: 12px;
            }
            .btn-login {
                margin-right: 0;
                flex: 1;
            }
            .btn-download {
                flex: 1;
            }
            .page-title {
                font-size: 2.2rem;
                padding-bottom: 18px;
            }
            .intro-panel, section {
                padding: 30px;
            }
            .stat-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .feature-container {
                grid-template-columns: 1fr;
            }
            .character-container {
                grid-template-columns: repeat(2, 1fr);
            }
            th, td {
                padding: 15px;
                font-size: 1rem;
            }
            blockquote {
                padding: 20px 25px;
                font-size: 1.05rem;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.7rem;
            }
            .logo span {
                font-size: 1.4rem;
            }
            .page-title {
                font-size: 1.9rem;
                border-bottom: 3px solid #FF9800;
            }
            .intro-panel, section {
                padding: 25px;
            }
            .stat-container {
                grid-template-columns: 1fr;
            }
            .character-container {
                grid-template-columns: 1fr;
            }
            .stat-number {
                font-size: 2.4rem;
            }
            section h2 {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            section h3 {
                font-size: 1.4rem;
            }
            section p, ul, ol {
                font-size: 1.05rem;
            }
            .footer-grid {
                gap: 35px;
            }
            .tag-cloud {
                gap: 10px;
            }
            .tag-cloud a {
                padding: 8px 15px;
                font-size: 0.95rem;
            }
        }
        @media print {
            header, footer, .btn-group, .hamburger {
                display: none;
            }
            body {
                background-color: #fff;
                color: #000;
                font-size: 14px;
            }
            .container {
                width: 100%;
                padding: 0;
            }
            section {
                box-shadow: none;
                border: none;
                padding: 0;
                margin-bottom: 25px;
            }
            .page-title {
                color: #000;
                border-bottom: 2px solid #000;
            }
            a {
                color: #000;
                text-decoration: underline;
            }
        }
