        * {
            margin: 0;
            padding: 0;
        }

        body {
            background: #0a0a0a;
            color: #fff;
            font-family: Arial;
        }

        h1,
        h2,
        h3,
        h4 {
            color: goldenrod;
            font-weight: bold;
            font-size: 30px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            text-align: center;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .post {
            width: 100%;
        }

        /* Wrapper */
        .slider-wrapper {
            overflow: hidden;
            width: 100%;
        }

        /* Container - smooth infinite scroll */
        .slide-icon-container {
            display: flex;
            gap: 10px;
            width: max-content;
            animation: smooth-slide 10s linear infinite;
        }

        /* Each Icon + Text */
        .slide-icon {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            color: white;
            padding: 5px 10px;
            border-radius: 50px;
            flex-shrink: 0;
            background: transparent;
            transition: transform 0.3s ease;
        }

        .slide-icon img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            display: block;
        }

        .slide-icon:hover {
            transform: scale(1.1);
        }

        /* Smooth continuous sliding animation */
        @keyframes smooth-slide {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }

            /* move only half width (because we duplicated items) */
        }

        /* ✅ Responsive */
        @media (max-width: 768px) {
            .slide-icon-container {
                gap: 6px;
                animation-duration: 25s;
                /* slower for tablets */
            }

            .slide-icon {
                font-size: 14px;
                padding: 4px 6px;
            }

            .slide-icon img {
                width: 24px;
                height: 24px;
            }
        }

        @media (max-width: 480px) {
            .slide-icon-container {
                gap: 4px;
                animation-duration: 30s;
                /* slower for small screens */
            }

            .slide-icon {
                font-size: 12px;
                padding: 3px 5px;
            }

            .slide-icon img {
                width: 20px;
                height: 20px;
            }
        }

        /* Header */
        .track {
            background-color: #000;
            padding-top: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #fff;
        }

        .logo {
            width: 150px;
            height: 50px;
        }

        .demo {
            background-color: #000;
            border: none;
            color: #fff;
            padding: 6px 15px;
            border: 1px solid gray;
            border-radius: 50px;
        }

        .register {
            position: relative;
            overflow: hidden;
            padding: 10px 20px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            background: linear-gradient(135deg, #d4af37, #000000, #ffd700);
            background-size: 300% 300%;
            animation: gradientMove 4s ease infinite;
            box-shadow: 0 0 15px rgba(188, 187, 187, 0.5);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Shine Effect Always Running */
        .register::before {
            content: "";
            position: absolute;
            top: 0;
            left: -80%;
            width: 40%;
            height: 100%;
            background: rgba(255, 255, 255, 0.35);
            transform: skewX(-25deg);
            animation: shine 2s linear infinite;
        }

        /* Glow Pulse */
        .register::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50px;
            box-shadow: 0 0 20px rgba(255, 80, 0, 0.6);
            animation: pulse 1.8s ease-in-out infinite;
        }

        @keyframes gradientMove {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes shine {
            0% {
                left: -80%;
            }

            100% {
                left: 140%;
            }
        }

        @keyframes pulse {
            0% {
                opacity: 0.4;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.05);
            }

            100% {
                opacity: 0.4;
                transform: scale(1);
            }
        }

        .content {
            padding: 30px;
        }

        .box {
            background: linear-gradient(145deg, #111, #1a1a1a);
            padding: 10px;
            border-radius: 18px;
            border: 1px solid rgba(255, 215, 0, 0.25);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.08);
            transition: 0.4s ease;
        }

        .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.30);
            border-color: #ffd700;
        }

        .box h1,
        h2 {
            color: #ffd700;
            font-size: 28px;
            margin-bottom: 18px;
            position: relative;
        }


        /* footer */
        .footer {
            background-color: #000;
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
            margin-top: 20px;
            padding: 30px;

        }

        .footer-logo img {
            width: 150px;
            height: 50px;
        }

        .footer-logo p {
            color: #fff;
        }

        .important-link .fol {
            color: goldenrod;
            font-size: 22px;
            font-weight: 700;
            text-align: start;
        }

        .important-link a {
            color: #FFF;
            text-decoration: none;
        }

        .important-link h4 {
            text-align: start;
            font-size: 25px;
        }

        .social-icon a i {
            font-size: 25px;
            margin: 10px;
        }


        .i-game img {
            width: 200px;
        }

        .igame-contant p {
            color: #fff;
        }

        .footer-section {
            border-top: 1px dotted #fff;
        }

        /*whatsaap*/
        .whatsapp-image {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            z-index: 999;
            animation: zoomPulse 3s infinite ease-in-out;
        }

        /* Image animation */
        @keyframes zoomPulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.2);
            }

            100% {
                transform: scale(1);
            }
        }

        .whatsapp-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media only screen and (max-width: 476px) {
            .logo {
                width: 150px;
                height: 50px;
            }

            .footer {
                padding: 10px;
            }
        }

        .choose-section {
            background: linear-gradient(135deg, #000, #111, #000);
            padding: 70px 8%;
            overflow: hidden;
        }

        /* Image Box */
        .img-box {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.20);
            animation: slideLeft 1.5s ease;
        }

        .post {
            width: 100%;
            border-radius: 20px;
            transition: 0.5s;
        }

        .img-box:hover .post {
            transform: scale(1.08);
        }

        /* Content */
        .content-box {
            color: #fff;
            animation: slideRight 1.5s ease;
        }

        .tagline {
            color: #ffd700;
            font-size: 14px;
            letter-spacing: 3px;
            font-weight: bold;
        }

        .content-box h1,
        h2,
        h3 {
            font-size: 30px;
            color: #ffd700;
            margin: 15px 0;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
        }

        .content-box p {
            font-size: 17px;
            color: #ddd;
            line-height: 1.9;
            margin-bottom: 30px;
        }

        /* Button */
        .gold-btn {
            display: inline-block;
            padding: 14px 35px;
            background: linear-gradient(135deg, #ffd700, #c9a000);
            color: #000;
            text-decoration: none;
            font-weight: bold;
            border-radius: 40px;
            transition: 0.4s;
        }

        .gold-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.35);
        }

        /* Animations */
        @keyframes slideLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Mobile */
        @media(max-width:768px) {
            .content-box {
                text-align: center;
                margin-top: 20px;
            }

            .content-box h1,
            h2,
            h3 {
                font-size: 25px;
            }

            .content-box p {
                font-size: 15px;
            }
        }

        .faq-section {
            background: linear-gradient(135deg, #000, #111, #000);
            /* padding:80px 20px; */
        }

        .faq-heading {
            text-align: center;
            margin-bottom: 45px;
            animation: fadeDown 1.2s ease;
        }

        .faq-heading h2 {
            color: #ffd700;
            font-size: 42px;
            margin: 12px 0;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
            padding-top: 30px;
        }

        .faq-heading p {
            color: #ddd;
            font-size: 16px;
        }

        .faq-box {
            max-width: 900px;
            margin: auto;
        }

        .faq-box details {
            background: linear-gradient(145deg, #111, #1b1b1b);
            margin-bottom: 18px;
            border-radius: 14px;
            border: 1px solid rgba(255, 215, 0, 0.20);
            overflow: hidden;
            transition: 0.4s;
            animation: fadeUp 1s ease;
        }

        .faq-box details:hover {
            border-color: #ffd700;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.18);
            transform: translateY(-4px);
        }

        .faq-box summary {
            padding: 18px 22px;
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            position: relative;
        }

        .faq-box summary::-webkit-details-marker {
            display: none;
        }

        .faq-box summary::after {
            content: "+";
            position: absolute;
            right: 22px;
            top: 15px;
            font-size: 28px;
            color: #ffd700;
            transition: 0.3s;
        }

        .faq-box details[open] summary::after {
            content: "−";
            transform: rotate(180deg);
        }

        .faq-box details p {
            padding: 0 22px 20px;
            color: #ccc;
            line-height: 1.8;
            font-size: 15px;
        }

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media(max-width:768px) {
            .faq-heading h2 {
                font-size: 30px;
            }

            .faq-box summary {
                font-size: 16px;
                padding: 16px;
            }

            .faq-box details p {
                padding: 0 16px 18px;
            }
        }