* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            background-color: #1a1a1a;
            color: #f8f8f8;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .header {
            background-color: #e63946;
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #fff;
            text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
            font-family: 'Courier New', monospace;
        }
        .nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 18px;
        }
        .nav a {
            color: #fff;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1.05rem;
            background-color: rgba(255,255,255,0.15);
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.3);
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .daman-link {
            background-color: #ffb703 !important;
            color: #1a1a1a !important;
            font-weight: 800;
            border: 2px solid #1a1a1a;
        }
        .daman-link:hover {
            background-color: #fb8500 !important;
            color: #fff !important;
            border-color: #fff;
        }
        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            position: absolute;
            top: 22px;
            right: 25px;
            z-index: 1001;
        }
        .btn {
            display: inline-block;
            padding: 16px 40px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 800;
            text-align: center;
            margin: 15px 10px;
            transition: transform 0.3s, box-shadow 0.3s;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-download {
            background-color: #219ebc;
            color: #fff;
            box-shadow: 0 6px 15px rgba(33,158,188,0.4);
            border: 2px solid #fff;
        }
        .btn-login {
            background-color: #2b9348;
            color: #fff;
            box-shadow: 0 6px 15px rgba(43,147,72,0.4);
            border: 2px solid #fff;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .btn-download:hover {
            background-color: #1d3557;
        }
        .btn-login:hover {
            background-color: #06d6a0;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        h1 {
            font-size: 2.6rem;
            color: #e63946;
            text-align: center;
            margin: 50px 0 35px;
            padding-bottom: 25px;
            border-bottom: 5px solid #e63946;
            text-transform: uppercase;
            font-weight: 900;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            font-size: 2.1rem;
            color: #ffb703;
            margin: 60px 0 30px;
            padding-left: 25px;
            border-left: 6px solid #ffb703;
            font-weight: 800;
            text-transform: capitalize;
        }
        h3 {
            font-size: 1.6rem;
            color: #8ecae6;
            margin: 40px 0 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            text-transform: capitalize;
        }
        h3::before {
            content: "🏁";
            margin-right: 12px;
            font-size: 1.8rem;
        }
        .content {
            background-color: #2d2d2d;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            margin-top: 30px;
            border: 1px solid #444;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.9;
            color: #f0f0f0;
        }
        .highlight {
            font-weight: 800;
            color: #e63946;
            font-size: 1.15rem;
        }
        .keyword {
            font-weight: 900;
            color: #ffb703;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .img-container {
            text-align: center;
            margin: 50px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
            border: 3px solid #444;
        }
        .img-caption {
            font-size: 1rem;
            color: #b0b0b0;
            margin-top: 15px;
            font-style: italic;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        ul, ol {
            margin: 30px 0 30px 50px;
        }
        li {
            margin-bottom: 18px;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #f0f0f0;
        }
        ul li::marker {
            color: #8ecae6;
            font-size: 1.3rem;
        }
        ol li::marker {
            color: #ffb703;
            font-weight: 700;
            font-size: 1.2rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        th, td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #555;
        }
        th {
            background-color: #1a1a1a;
            font-weight: 800;
            color: #8ecae6;
            font-size: 1.1rem;
            text-transform: capitalize;
        }
        td {
            background-color: #333;
            color: #f0f0f0;
        }
        tr:hover {
            background-color: #3d3d3d;
            transform: scale(1.01);
            transition: all 0.2s ease;
        }
        .footer {
            background-color: #121212;
            color: #fff;
            padding: 60px 0 40px;
            margin-top: 80px;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            border-top: 3px solid #e63946;
        }
        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ffb703;
            font-weight: 800;
        }
        .footer-section {
            margin-bottom: 50px;
        }
        .game-types, .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        .game-types a, .tag-cloud a {
            color: #f0f0f0;
            text-decoration: none;
            padding: 10px 22px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 1rem;
            background-color: #333;
            border: 1px solid #555;
        }
        .game-types a:hover, .tag-cloud a:hover {
            background-color: #e63946;
            border-color: #e63946;
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: #333;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
            font-size: 1.2rem;
            color: #f0f0f0;
            border: 2px solid #ffb703;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #444;
            font-size: 1rem;
            color: #b0b0b0;
        }
        @media (max-width: 768px) {
            .menu-btn {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 25px;
                gap: 15px;
                background-color: #e63946;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            }
            .nav.active {
                display: flex;
            }
            .logo {
                font-size: 1.8rem;
                margin-top: 10px;
            }
            h1 {
                font-size: 2rem;
                margin: 35px 0 25px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 45px 0 25px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 35px 0 18px;
            }
            .content {
                padding: 25px;
            }
            .btn {
                width: 100%;
                margin: 12px 0;
                padding: 16px 25px;
            }
            table {
                margin: 35px 0;
            }
            th, td {
                padding: 15px 10px;
                font-size: 0.95rem;
            }
            ul, ol {
                margin: 25px 0 25px 30px;
            }
            .footer {
                padding: 50px 0 30px;
            }
            .img-caption {
                font-size: 0.9rem;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                width: 90%;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .content {
                padding: 35px;
            }
            .btn {
                padding: 15px 35px;
            }
        }
