* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #faf5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .header {
            background-color: #e65100;
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .container {
            width: 92%;
            max-width: 1250px;
            margin: 0 auto;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #fff;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
        }
        .nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 18px;
        }
        .nav a {
            color: #fff;
            text-decoration: none;
            padding: 10px 18px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1rem;
        }
        .nav a:hover {
            background-color: #cc4a00;
            transform: translateY(-2px);
        }
        .daman-link {
            background-color: #fff;
            color: #e65100 !important;
            font-weight: 700;
        }
        .daman-link:hover {
            background-color: #f9f9f9 !important;
            color: #d34700 !important;
        }
        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 22px;
            right: 25px;
        }
        .btn {
            display: inline-block;
            padding: 14px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            text-align: center;
            margin: 12px 8px;
            transition: transform 0.3s, box-shadow 0.3s;
            font-size: 1.05rem;
        }
        .btn-download {
            background-color: #2e7d32;
            color: #fff;
            box-shadow: 0 4px 12px rgba(46,125,50,0.3);
        }
        .btn-login {
            background-color: #1565c0;
            color: #fff;
            box-shadow: 0 4px 12px rgba(21,101,192,0.3);
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.18);
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        h1 {
            font-size: 2.4rem;
            color: #e65100;
            text-align: center;
            margin: 40px 0 30px;
            padding-bottom: 20px;
            border-bottom: 4px solid #e65100;
            text-transform: capitalize;
            font-weight: 900;
        }
        h2 {
            font-size: 1.9rem;
            color: #263238;
            margin: 50px 0 25px;
            padding-left: 20px;
            border-left: 5px solid #e65100;
            font-weight: 800;
        }
        h3 {
            font-size: 1.5rem;
            color: #37474f;
            margin: 35px 0 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🎯";
            margin-right: 10px;
        }
        .content {
            background-color: #fff;
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            margin-top: 25px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.08rem;
            line-height: 1.8;
        }
        .highlight {
            font-weight: 700;
            color: #e65100;
        }
        .keyword {
            font-weight: 900;
            color: #263238;
            font-size: 1.1rem;
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
            border: 1px solid #f0f0f0;
        }
        .img-caption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 12px;
            font-style: italic;
        }
        ul, ol {
            margin: 25px 0 25px 40px;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.08rem;
            line-height: 1.7;
        }
        ul li::marker {
            color: #e65100;
            font-size: 1.2rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        th, td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
        }
        th {
            background-color: #faf5f0;
            font-weight: 700;
            color: #263238;
            font-size: 1.05rem;
        }
        tr:hover {
            background-color: #fef9f6;
        }
        .footer {
            background-color: #263238;
            color: #fff;
            padding: 50px 0 30px;
            margin-top: 60px;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
        .footer-title {
            font-size: 1.4rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #ffcc80;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .game-types, .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 15px;
        }
        .game-types a, .tag-cloud a {
            color: #fff;
            text-decoration: none;
            padding: 8px 18px;
            border-radius: 20px;
            transition: background-color 0.3s;
            font-size: 0.95rem;
        }
        .game-types a {
            background-color: #37474f;
        }
        .tag-cloud a {
            background-color: #455a64;
        }
        .game-types a:hover, .tag-cloud a:hover {
            background-color: #e65100;
        }
        .recommendation {
            background-color: #fef9f6;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
            font-size: 1.1rem;
            color: #263238;
            border: 1px solid #ffe0b2;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #455a64;
            font-size: 0.95rem;
            color: #b0bec5;
        }
        @media (max-width: 768px) {
            .menu-btn {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                gap: 12px;
            }
            .nav.active {
                display: flex;
            }
            .logo {
                font-size: 1.7rem;
                margin-top: 10px;
            }
            h1 {
                font-size: 1.9rem;
                margin: 30px 0 20px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 40px 0 20px;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 30px 0 15px;
            }
            .content {
                padding: 20px;
            }
            .btn {
                width: 100%;
                margin: 10px 0;
                padding: 14px 20px;
            }
            table {
                margin: 30px 0;
            }
            th, td {
                padding: 12px 8px;
                font-size: 0.9rem;
            }
            ul, ol {
                margin: 20px 0 20px 25px;
            }
            .footer {
                padding: 40px 0 20px;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                width: 90%;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content {
                padding: 30px;
            }
        }
