        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #f8fafc;
            line-height: 1.9;
            font-size: 16px;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 42px;
            font-weight: 800;
            color: #f97316;
            margin-bottom: 25px;
            line-height: 1.3;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        h2 {
            font-size: 34px;
            font-weight: 700;
            color: #fb923c;
            margin: 50px 0 30px;
            padding-left: 20px;
            border-left: 6px solid #dc2626;
            line-height: 1.4;
        }
        h3 {
            font-size: 26px;
            font-weight: 600;
            color: #38bdf8;
            margin: 40px 0 20px;
            line-height: 1.5;
        }
        h4 {
            font-size: 22px;
            font-weight: 600;
            color: #60a5fa;
            margin: 30px 0 15px;
            line-height: 1.5;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
            font-size: 17px;
            color: #e2e8f0;
        }
        strong {
            color: #fcd34d;
            font-weight: 700;
        }
        em {
            color: #a78bfa;
            font-style: italic;
        }
        .highlight {
            font-weight: 700;
            color: #f97316;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #38bdf8;
            padding: 18px 25px;
            margin: 35px 0;
            color: #cbd5e1;
            background-color: #1e293b;
            border-radius: 0 8px 8px 0;
            font-size: 18px;
        }
        .list {
            margin: 25px 0 35px 50px;
            list-style-type: disc;
        }
        .list li {
            margin-bottom: 15px;
            font-size: 17px;
            color: #e2e8f0;
        }
        .list-circle {
            list-style-type: circle;
            margin-left: 30px;
        }
        .list-square {
            list-style-type: square;
            margin-left: 30px;
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 45px 0;
        }
        .card {
            background-color: #1e293b;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #334155;
            transition: all 0.4s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .card:hover {
            transform: translateY(-8px);
            border-color: #f97316;
            box-shadow: 0 10px 20px rgba(249, 115, 22, 0.15);
        }
        .card h4 {
            margin-bottom: 20px;
            color: #f97316;
            border-bottom: 2px solid #38bdf8;
            padding-bottom: 10px;
        }
        .image-placeholder {
            width: 100%;
            height: 240px;
            background-color: #334155;
            border-radius: 10px;
            margin: 30px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            font-size: 16px;
            text-align: center;
            padding: 20px;
            border: 1px dashed #64748b;
        }
        .btn {
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            font-size: 17px;
            border: none;
            cursor: pointer;
        }
        .btn-download {
            background-color: #dc2626;
            color: white;
        }
        .btn-download:hover {
            background-color: #b91c1c;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(220, 38, 38, 0.2);
        }
        .btn-login {
            background-color: #38bdf8;
            color: #0f172a;
            margin-left: 15px;
        }
        .btn-login:hover {
            background-color: #0ea5e9;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(56, 189, 248, 0.2);
        }
        header {
            background-color: #1e293b;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #f97316;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #f97316;
            text-decoration: none;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #38bdf8;
            margin-left: 5px;
        }
        .navbar {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .navbar a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 17px;
        }
        .navbar a:hover {
            color: #f97316;
        }
        .hamburger {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: #e2e8f0;
        }
        .hero {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), url('https://host.com/hero-bg.jpg') center/cover no-repeat;
            border-radius: 15px;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .hero h1 {
            font-size: 52px;
            margin-bottom: 30px;
            color: #f97316;
            text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
        }
        .hero p {
            font-size: 20px;
            max-width: 900px;
            margin: 0 auto 40px;
            color: #cbd5e1;
            text-align: center;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .main-content {
            padding: 20px 0 60px;
        }
        section {
            margin-bottom: 70px;
        }
        .recommendation {
            background-color: #1e293b;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            border-left: 6px solid #38bdf8;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .recommendation h4 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #f97316;
        }
        footer {
            background-color: #1e293b;
            padding: 70px 0 40px;
            border-top: 3px solid #f97316;
            margin-top: 80px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 25px;
            color: #f97316;
            border-bottom: 2px solid #38bdf8;
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 17px;
        }
        .footer-links a:hover {
            color: #f97316;
            padding-left: 5px;
        }
        .game-categories {
            margin-top: 20px;
        }
        .game-categories a {
            display: inline-block;
            margin: 0 10px 10px 0;
            padding: 8px 15px;
            background-color: #334155;
            border-radius: 20px;
            font-size: 15px;
        }
        .game-categories a:hover {
            background-color: #f97316;
            color: #0f172a;
            padding-left: 15px;
        }
        .tags {
            margin-top: 20px;
        }
        .tags a {
            display: inline-block;
            margin: 0 8px 8px 0;
            padding: 6px 12px;
            background-color: #475569;
            border-radius: 15px;
            font-size: 14px;
        }
        .tags a:hover {
            background-color: #38bdf8;
            color: #0f172a;
            padding-left: 12px;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 16px;
            line-height: 1.8;
        }
        @media (max-width: 1200px) {
            .navbar {
                gap: 25px;
            }
            .hero h1 {
                font-size: 46px;
            }
            h2 {
                font-size: 32px;
            }
        }
        @media (max-width: 992px) {
            .navbar {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background-color: #1e293b;
                padding: 30px;
                gap: 20px;
                border-bottom: 2px solid #334155;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .navbar.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 40px;
            }
            .hero p {
                font-size: 18px;
            }
            .grid {
                gap: 25px;
            }
        }
        @media (max-width: 768px) {
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 34px;
            }
            h2 {
                font-size: 28px;
                padding-left: 15px;
            }
            h3 {
                font-size: 24px;
            }
            h4 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .grid {
                grid-template-columns: 1fr;
            }
            .image-placeholder {
                height: 200px;
            }
            .btn {
                padding: 10px 24px;
                font-size: 16px;
            }
            .footer-content {
                gap: 30px;
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            .hero p {
                font-size: 16px;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
                padding: 0 20px;
            }
            .btn-login {
                margin-left: 0;
            }
            .list {
                margin-left: 30px;
            }
            .quote {
                padding: 15px 20px;
                font-size: 16px;
            }
            .logo {
                font-size: 24px;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mb-40 {
            margin-bottom: 40px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .italic {
            font-style: italic;
        }
        .underline {
            text-decoration: underline;
        }
