* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #faf5f0;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #0984e3;
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #ffdd59;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffffff;
            font-size: 1.8rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            color: #ffdd59;
            transform: translateY(-1px);
        }
        .daman-link {
            color: #ffdd59 !important;
            font-weight: 700;
            border-bottom: 2px solid #ffdd59;
            padding-bottom: 2px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #0984e3;
                padding: 25px;
                gap: 20px;
                border-top: 1px solid rgba(255,255,255,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 1.6rem;
            }
            .logo span {
                font-size: 1.4rem;
            }
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 12px 8px;
            text-align: center;
            font-size: 1.1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
            border: 2px solid #27ae60;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #e17055;
            color: white;
            border: 2px solid #e17055;
        }
        .btn-login:hover {
            background-color: #d63031;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.2);
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        h1 {
            font-size: 2.8rem;
            color: #0984e3;
            text-align: center;
            margin: 50px 0 40px;
            padding-bottom: 20px;
            border-bottom: 4px solid #ffdd59;
            text-transform: capitalize;
        }
        h2 {
            font-size: 2.2rem;
            color: #2d3436;
            margin: 50px 0 25px;
            padding-left: 20px;
            border-left: 5px solid #e17055;
            text-transform: capitalize;
        }
        h3 {
            font-size: 1.7rem;
            color: #0984e3;
            margin: 35px 0 20px;
            text-transform: capitalize;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "⚔️ ";
            margin-right: 10px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
                margin: 35px 0 30px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.9;
        }
        strong {
            color: #e17055;
            font-weight: 700;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 3px 8px;
            border-radius: 5px;
            font-weight: 700;
            color: #d63031;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.18);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        ul, ol {
            margin: 25px 0 30px 50px;
            font-size: 1.15rem;
            line-height: 2;
        }
        li {
            margin-bottom: 15px;
            position: relative;
        }
        ul li::before {
            content: "✅ ";
            position: absolute;
            left: -30px;
            color: #27ae60;
        }
        ol li::before {
            content: counter(list-item) ". ";
            position: absolute;
            left: -30px;
            color: #0984e3;
            font-weight: 700;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        }
        th, td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
            font-size: 1.05rem;
        }
        th {
            background-color: #0984e3;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        tr:hover {
            background-color: #f8f9fa;
            transform: translateX(2px);
            transition: all 0.2s ease;
        }
        .game-types {
            margin: 60px 0 40px;
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        }
        .game-types h3 {
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 2px solid #ffdd59;
            padding-bottom: 15px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            justify-content: center;
        }
        .type-links a {
            color: #2d3436;
            background-color: #f1f8fe;
            padding: 10px 22px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .type-links a:hover {
            background-color: #0984e3;
            color: white;
            transform: translateY(-2px);
        }
        .tags {
            margin: 40px 0 60px;
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        }
        .tags h3 {
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 2px solid #ffdd59;
            padding-bottom: 15px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }
        .tag-links a {
            color: #34495e;
            background-color: #f5f6fa;
            padding: 8px 18px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag-links a:hover {
            background-color: #ffdd59;
            color: #2d3436;
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: #0984e3;
            color: white;
            padding: 35px;
            border-radius: 12px;
            text-align: center;
            margin: 50px 0;
            font-size: 1.25rem;
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        }
        .recommendation strong {
            color: #ffdd59;
            font-size: 1.35rem;
        }
        .footer-note {
            text-align: center;
            font-size: 1.15rem;
            margin: 40px 0 30px;
            color: #2d3436;
            line-height: 2;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 40px 0 20px;
            text-align: center;
            margin-top: 60px;
            border-radius: 12px 12px 0 0;
        }
        .copyright {
            font-size: 1rem;
            opacity: 0.8;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        script[type="application/ld+json"] {
            display: none;
        }
        .internal-link {
            color: #0984e3;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .internal-link:hover {
            color: #e17055;
            border-bottom: 2px solid #e17055;
        }
