* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f9f3e6;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 80px;
            font-size: 16px;
            word-spacing: 0.5px;
            letter-spacing: 0.2px;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #ffb800, #fff3cd, #ff7e00);
            padding: 20px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.18);
            position: sticky;
            top: 0;
            z-index: 9999;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 36px;
            font-weight: 900;
            color: #1a237e;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
        }
        .logo span {
            color: #ff7e00;
            font-style: italic;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }
        .nav-links li a {
            text-decoration: none;
            color: #1a237e;
            font-weight: 600;
            font-size: 17px;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links li a:hover {
            color: #ff7e00;
            border-bottom: 3px solid #ff7e00;
        }
        .daman-link {
            background-color: #ffb800;
            color: #1a237e !important;
            padding: 12px 24px;
            border-radius: 10px;
            border-bottom: none !important;
            font-weight: 700;
            font-size: 18px;
            box-shadow: 0 3px 8px rgba(255, 184, 0, 0.3);
        }
        .daman-link:hover {
            background-color: #ffca28 !important;
            color: #1a237e !important;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(255, 184, 0, 0.4);
        }
        .btn-nav {
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        .btn-login-nav {
            background-color: #ff7e00;
            color: white !important;
            border-bottom: none !important;
        }
        .btn-login-nav:hover {
            background-color: #e66f00 !important;
            color: white !important;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(255, 126, 0, 0.4);
        }
        .btn-download-nav {
            background-color: #1a237e;
            color: white !important;
            border-bottom: none !important;
        }
        .btn-download-nav:hover {
            background-color: #0d1137 !important;
            color: white !important;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(26, 35, 126, 0.4);
        }
        .hamburger {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: #1a237e;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background: white;
                padding: 30px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.15);
                gap: 25px;
                border-top: 4px solid #ffb800;
                border-radius: 0 0 15px 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 28px;
            }
            .btn-nav {
                width: 100%;
                text-align: center;
            }
        }
        h1 {
            font-size: 42px;
            color: #1a237e;
            margin: 60px 0 40px;
            text-align: center;
            font-weight: 900;
            border-bottom: 5px solid #ff7e00;
            padding-bottom: 25px;
            text-transform: capitalize;
            line-height: 1.4;
        }
        h2 {
            font-size: 34px;
            color: #1a237e;
            margin: 70px 0 35px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 15px;
            text-transform: capitalize;
            border-left: 6px solid #ffb800;
            padding-left: 20px;
        }
        h2::before {
            content: "🔥";
        }
        h3 {
            font-size: 28px;
            color: #2d2d2d;
            margin: 50px 0 30px;
            font-weight: 700;
            padding-left: 18px;
            border-left: 4px solid #ff7e00;
            text-transform: capitalize;
        }
        h4 {
            font-size: 24px;
            color: #1a237e;
            margin: 35px 0 20px;
            font-weight: 600;
            text-transform: capitalize;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h4::before {
            content: "✨";
        }
        p {
            margin-bottom: 28px;
            font-size: 18px;
            text-align: justify;
            line-height: 1.9;
            color: #2d2d2d;
        }
        .highlight {
            background-color: #fff8e0;
            padding: 4px 12px;
            border-radius: 8px;
            font-weight: 700;
            color: #e65100;
            border: 1px solid #ffe082;
        }
        .keyword {
            font-weight: 900;
            color: #ff7e00;
            font-size: 20px;
            text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
        }
        .btn-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin: 60px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 22px 40px;
            font-size: 22px;
            font-weight: 800;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            min-width: 280px;
        }
        .btn-download {
            background-color: #1a237e;
            color: white;
        }
        .btn-download:hover {
            background-color: #0d1137;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(26, 35, 126, 0.4);
        }
        .btn-login {
            background-color: #ff7e00;
            color: white;
        }
        .btn-login:hover {
            background-color: #e66f00;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 126, 0, 0.4);
        }
        .img-container {
            display: flex;
            justify-content: center;
            margin: 50px 0;
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            border: 4px solid #ffb800;
        }
        .img-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .img-grid-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            border: 4px solid #ffb800;
        }
        .img-grid-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .img-grid-item img:hover {
            transform: scale(1.05);
        }
        ul, ol {
            margin: 30px 0 40px 60px;
            font-size: 18px;
            line-height: 2.1;
            color: #2d2d2d;
        }
        li {
            margin-bottom: 22px;
            position: relative;
        }
        ul li::before {
            content: "✅";
            position: absolute;
            left: -35px;
            top: 3px;
            font-size: 20px;
        }
        ol li::before {
            content: counter(ol-counter) ".";
            counter-increment: ol-counter;
            position: absolute;
            left: -35px;
            top: 3px;
            font-weight: 800;
            color: #ff7e00;
            font-size: 20px;
        }
        ol {
            counter-reset: ol-counter;
        }
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        .card {
            background-color: white;
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.4s ease;
            border-top: 6px solid #ffb800;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .card-title {
            font-size: 24px;
            color: #1a237e;
            margin-bottom: 25px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .card-title::before {
            content: "🎮";
        }
        .card-meta {
            color: #666;
            font-size: 16px;
            margin-bottom: 15px;
            font-style: italic;
        }
        .tabs {
            display: flex;
            gap: 20px;
            margin: 50px 0;
            flex-wrap: wrap;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        .tab {
            padding: 15px 30px;
            background-color: #f1ede4;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .tab.active {
            background-color: #ff7e00;
            color: white;
        }
        .tab:hover:not(.active) {
            background-color: #e0d8c7;
            transform: translateY(-3px);
        }
        .tab-content {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            margin-bottom: 50px;
            border-left: 6px solid #ffb800;
        }
        .section-highlight {
            background-color: #fff8e0;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            margin: 60px 0;
            border: 2px solid #ffb800;
        }
        .section-highlight p {
            font-size: 19px;
            line-height: 2.0;
            text-align: center;
        }
        .section-highlight strong {
            color: #ff7e00;
            font-size: 21px;
        }
        .game-types {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            margin: 70px 0;
        }
        .game-types h3 {
            margin-top: 0;
            margin-bottom: 30px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 30px;
        }
        .type-link {
            text-decoration: none;
            color: #1a237e;
            font-weight: 700;
            padding: 12px 25px;
            border: 3px solid #ffb800;
            border-radius: 10px;
            transition: all 0.3s ease;
            font-size: 18px;
        }
        .type-link:hover {
            background-color: #ffb800;
            color: #1a237e;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(255, 184, 0, 0.3);
        }
        .tags {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            margin: 60px 0;
        }
        .tags h3 {
            margin-top: 0;
            margin-bottom: 30px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        .tag-link {
            text-decoration: none;
            color: #1a237e;
            font-weight: 700;
            padding: 10px 22px;
            border: 2px solid #ff7e00;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: 17px;
        }
        .tag-link:hover {
            background-color: #ff7e00;
            color: white;
            border-color: #ff7e00;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(255, 126, 0, 0.3);
        }
        footer {
            background-color: #1a237e;
            color: white;
            padding: 70px 0 40px;
            margin-top: 100px;
        }
        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .footer-section {
            margin-bottom: 20px;
        }
        .footer-section h3 {
            color: #ffb800;
            border-left: 5px solid #ff7e00;
            margin-bottom: 30px;
            padding-left: 18px;
        }
        .footer-recommendation {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            font-size: 19px;
            line-height: 2.0;
        }
        .footer-recommendation strong {
            color: #ffb800;
            font-size: 21px;
        }
        .copyright {
            text-align: center;
            font-size: 18px;
            opacity: 0.9;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 34px;
                margin: 45px 0 30px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 28px;
                margin: 60px 0 30px;
                padding-left: 15px;
            }
            h3 {
                font-size: 24px;
                margin: 40px 0 25px;
                padding-left: 15px;
            }
            h4 {
                font-size: 22px;
                margin: 30px 0 18px;
            }
            p, ul, ol {
                font-size: 17px;
                line-height: 1.8;
            }
            .btn {
                padding: 18px 35px;
                font-size: 20px;
                width: 100%;
                min-width: auto;
            }
            .card-container {
                gap: 30px;
            }
            .card {
                padding: 30px;
            }
            ul, ol {
                margin: 25px 0 35px 45px;
            }
            li {
                margin-bottom: 18px;
            }
            .img-container {
                margin: 40px 0;
            }
            .img-grid {
                gap: 25px;
                margin: 40px 0;
            }
            .img-grid-item img {
                height: 200px;
            }
            .btn-container {
                gap: 25px;
                margin: 50px 0;
            }
            .tabs {
                gap: 15px;
                margin: 40px 0;
            }
            .tab {
                padding: 12px 25px;
                font-size: 17px;
            }
            .tab-content {
                padding: 30px;
            }
            .section-highlight {
                padding: 30px;
                margin: 50px 0;
            }
            .game-types, .tags {
                padding: 30px;
                margin: 60px 0;
            }
            .type-links, .tag-links {
                gap: 15px;
                margin-top: 25px;
            }
            .type-link {
                padding: 10px 20px;
                font-size: 17px;
            }
            .tag-link {
                padding: 8px 18px;
                font-size: 16px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 30px;
                margin: 40px 0 25px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 26px;
                margin: 50px 0 25px;
            }
            .img-grid-item img {
                height: 180px;
            }
            .footer-container {
                gap: 30px;
            }
            .footer-recommendation {
                padding: 25px;
                font-size: 18px;
            }
        }
