* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f0e6;
            color: #2c2c2c;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 16px;
            word-spacing: 0.8px;
            letter-spacing: 0.3px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #ff9f0a, #fff4e0, #ff6b00);
            padding: 18px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 9999;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 900;
            color: #121a69;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        .logo span {
            color: #ff6b00;
            font-style: italic;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
            align-items: center;
        }
        .nav-links li a {
            text-decoration: none;
            color: #121a69;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links li a:hover {
            color: #ff6b00;
            border-bottom: 2px solid #ff6b00;
        }
        .daman-link {
            background-color: #ff9f0a;
            color: #121a69 !important;
            padding: 10px 20px;
            border-radius: 8px;
            border-bottom: none !important;
            font-weight: 700;
            font-size: 17px;
            box-shadow: 0 2px 6px rgba(255, 159, 10, 0.3);
        }
        .daman-link:hover {
            background-color: #ffb74d !important;
            color: #121a69 !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255, 159, 10, 0.4);
        }
        .btn-nav {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 17px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .btn-login-nav {
            background-color: #ff6b00;
            color: white !important;
            border-bottom: none !important;
        }
        .btn-login-nav:hover {
            background-color: #e55a00 !important;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255, 107, 0, 0.4);
        }
        .btn-download-nav {
            background-color: #121a69;
            color: white !important;
            border-bottom: none !important;
        }
        .btn-download-nav:hover {
            background-color: #0a0f45 !important;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(18, 26, 105, 0.4);
        }
        .hamburger {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: #121a69;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: white;
                padding: 25px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.12);
                gap: 20px;
                border-top: 3px solid #ff9f0a;
                border-radius: 0 0 12px 12px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 24px;
            }
            .btn-nav {
                width: 100%;
                text-align: center;
            }
        }
        h1 {
            font-size: 36px;
            color: #121a69;
            margin: 50px 0 30px;
            text-align: center;
            font-weight: 900;
            border-bottom: 4px solid #ff6b00;
            padding-bottom: 20px;
            text-transform: capitalize;
            line-height: 1.5;
        }
        h2 {
            font-size: 30px;
            color: #121a69;
            margin: 60px 0 25px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: capitalize;
            border-left: 5px solid #ff9f0a;
            padding-left: 18px;
        }
        h2::before {
            content: "🎯";
        }
        h3 {
            font-size: 24px;
            color: #2c2c2c;
            margin: 45px 0 22px;
            font-weight: 700;
            padding-left: 15px;
            border-left: 3px solid #ff6b00;
            text-transform: capitalize;
        }
        h4 {
            font-size: 22px;
            color: #121a69;
            margin: 30px 0 18px;
            font-weight: 600;
            text-transform: capitalize;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h4::before {
            content: "🌟";
        }
        p {
            margin-bottom: 22px;
            font-size: 17px;
            text-align: justify;
            line-height: 1.9;
            color: #2c2c2c;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 3px 10px;
            border-radius: 6px;
            font-weight: 700;
            color: #d35400;
            border: 1px solid #ffdd70;
        }
        .keyword {
            font-weight: 900;
            color: #ff6b00;
            font-size: 19px;
            text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
        }
        .btn-container {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 35px;
            font-size: 20px;
            font-weight: 800;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 5px 12px rgba(0,0,0,0.12);
            min-width: 250px;
        }
        .btn-download {
            background-color: #121a69;
            color: white;
        }
        .btn-download:hover {
            background-color: #0a0f45;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(18, 26, 105, 0.4);
        }
        .btn-login {
            background-color: #ff6b00;
            color: white;
        }
        .btn-login:hover {
            background-color: #e55a00;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
        }
        .img-container {
            display: flex;
            justify-content: center;
            margin: 45px 0;
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.18);
            border: 3px solid #ff9f0a;
        }
        .img-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 45px 0;
        }
        .img-grid-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.18);
            border: 3px solid #ff9f0a;
        }
        .img-grid-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .img-grid-item img:hover {
            transform: scale(1.04);
        }
        ul, ol {
            margin: 25px 0 35px 50px;
            font-size: 17px;
            line-height: 2.0;
            color: #2c2c2c;
        }
        li {
            margin-bottom: 18px;
            position: relative;
        }
        ul li::before {
            content: "✅";
            position: absolute;
            left: -30px;
            top: 2px;
            font-size: 18px;
        }
        ol li::before {
            content: counter(ol-counter) ".";
            counter-increment: ol-counter;
            position: absolute;
            left: -30px;
            top: 2px;
            font-weight: 800;
            color: #ff6b00;
            font-size: 18px;
        }
        ol {
            counter-reset: ol-counter;
        }
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            transition: transform 0.4s ease;
            border-top: 5px solid #ff9f0a;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.18);
        }
        .card-title {
            font-size: 22px;
            color: #121a69;
            margin-bottom: 20px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card-title::before {
            content: "🎮";
        }
        .card-meta {
            color: #666;
            font-size: 15px;
            margin-bottom: 12px;
            font-style: italic;
        }
        .tabs {
            display: flex;
            gap: 15px;
            margin: 45px 0;
            flex-wrap: wrap;
            overflow-x: auto;
            padding-bottom: 8px;
        }
        .tab {
            padding: 12px 25px;
            background-color: #f0e8d8;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .tab.active {
            background-color: #ff6b00;
            color: white;
        }
        .tab:hover:not(.active) {
            background-color: #e0d4c0;
            transform: translateY(-2px);
        }
        .tab-content {
            background-color: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
            margin-bottom: 45px;
            border-left: 5px solid #ff9f0a;
        }
        .section-highlight {
            background-color: #fff3cd;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            margin: 50px 0;
            border: 2px solid #ff9f0a;
        }
        .section-highlight p {
            font-size: 18px;
            line-height: 1.9;
            text-align: center;
        }
        .section-highlight strong {
            color: #ff6b00;
            font-size: 20px;
        }
        .game-types {
            background-color: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            margin: 60px 0;
        }
        .game-types h3 {
            margin-top: 0;
            margin-bottom: 25px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 25px;
        }
        .type-link {
            text-decoration: none;
            color: #121a69;
            font-weight: 700;
            padding: 10px 22px;
            border: 2px solid #ff9f0a;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .type-link:hover {
            background-color: #ff9f0a;
            color: #121a69;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(255, 159, 10, 0.3);
        }
        .tags {
            background-color: white;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            margin: 50px 0;
        }
        .tags h3 {
            margin-top: 0;
            margin-bottom: 25px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 25px;
        }
        .tag-link {
            text-decoration: none;
            color: #121a69;
            font-weight: 700;
            padding: 8px 20px;
            border: 2px solid #ff6b00;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .tag-link:hover {
            background-color: #ff6b00;
            color: white;
            border-color: #ff6b00;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
        }
        footer {
            background-color: #121a69;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 35px;
        }
        .footer-section {
            margin-bottom: 15px;
        }
        .footer-section h3 {
            color: #ff9f0a;
            border-left: 4px solid #ff6b00;
            margin-bottom: 25px;
            padding-left: 15px;
        }
        .footer-recommendation {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            font-size: 18px;
            line-height: 1.9;
        }
        .footer-recommendation strong {
            color: #ff9f0a;
            font-size: 20px;
        }
        .copyright {
            text-align: center;
            font-size: 17px;
            opacity: 0.85;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 30px;
                margin: 40px 0 25px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 26px;
                margin: 50px 0 22px;
                padding-left: 12px;
            }
            h3 {
                font-size: 22px;
                margin: 40px 0 20px;
                padding-left: 12px;
            }
            h4 {
                font-size: 20px;
                margin: 25px 0 15px;
            }
            p, ul, ol {
                font-size: 16px;
                line-height: 1.8;
            }
            .btn {
                padding: 16px 30px;
                font-size: 18px;
                width: 100%;
                min-width: auto;
            }
            .card-container {
                gap: 25px;
            }
            .card {
                padding: 25px;
            }
            ul, ol {
                margin: 20px 0 30px 40px;
            }
            li {
                margin-bottom: 15px;
            }
            .img-container {
                margin: 35px 0;
            }
            .img-grid {
                gap: 20px;
                margin: 35px 0;
            }
            .img-grid-item img {
                height: 180px;
            }
            .btn-container {
                gap: 20px;
                margin: 40px 0;
            }
            .tabs {
                gap: 12px;
                margin: 35px 0;
            }
            .tab {
                padding: 10px 20px;
                font-size: 15px;
            }
            .tab-content {
                padding: 25px;
            }
            .section-highlight {
                padding: 25px;
                margin: 40px 0;
            }
            .game-types, .tags {
                padding: 25px;
                margin: 50px 0;
            }
            .type-links, .tag-links {
                gap: 12px;
                margin-top: 20px;
            }
            .type-link {
                padding: 8px 18px;
                font-size: 15px;
            }
            .tag-link {
                padding: 7px 16px;
                font-size: 15px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 22px;
            }
            h1 {
                font-size: 28px;
                margin: 35px 0 22px;
                padding-bottom: 12px;
            }
            h2 {
                font-size: 24px;
                margin: 45px 0 20px;
            }
            .img-grid-item img {
                height: 160px;
            }
            .footer-container {
                gap: 25px;
            }
            .footer-recommendation {
                padding: 20px;
                font-size: 17px;
            }
        }
