      body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #111;
            color: #fff;
        }
        /* Basic Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #000000;
    color: #fff;
}

.logo h1 {
    font-size: 22px;
    color: #f1c40f;
}

/* Navigation Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #1a1a1a;
        width: 200px;
        padding: 15px;
        border-radius: 8px;
        display: none;
        flex-direction: column;
        gap: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
    }

    .nav-menu a {
        padding: 8px 0;
        border-bottom: 1px solid #333;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }
}
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

        .hero {
            text-align: center;
            padding: 50px 20px;
            background: url('hero-background.jpg') no-repeat center center/cover;
        }
        .hero h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }
        .hero img {
            width: 150px;
            height: auto;
            margin: 20px 0;
        }
        .badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        .badge {
            background-color: #222;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 14px;
        }
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 50px 20px;
            gap: 20px;
        }
        .feature {
            background-color: #1e1e2f;
            padding: 20px;
            border-radius: 10px;
            flex: 1;
            min-width: 250px;
            text-align: center;
        }
        .feature img {
            width: 80px;
            height: auto;
            margin-bottom: 15px;
        }
        .feature h3 {
            color: #ffcc00;
            margin-bottom: 10px;
        }
        .feature p {
            color: #ddd;
        }
        footer {
            background-color: #000;
            text-align: center;
            padding: 20px;
            font-size: 0.9em;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2em;
            }
            .feature {
                min-width: 100%;
            }
        }
        .hero {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 20px;
    gap: 20px;
}

.left, .right {
    flex: 1;
    min-width: 300px;
}

.left {
    text-align: center;
}

.left img {
    width: 150px;
    height: auto;
    margin: 20px 0;
}

.right {
    position: relative;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    height: auto;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.badge {
    background-color: #222;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
}
.faq-section {
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 10px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #f0f0f0;
}

.faq-item {
    border-bottom: 1px solid #333;
}

.faq-question {
    width: 100%;
    padding: 15px;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    outline: none;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '×';
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
}

.faq-answer p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}
/*  artical*/
.custom-related-articles {
    padding: 80px 20px;
    background-color: #540e0e;
    color: #fff;
    position: relative;
}

.custom-related-articles h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.custom-articles-wrapper {
    overflow: hidden;
    position: relative;
}

.custom-articles-container {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.custom-article-card {
    background-color: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    width: calc(100% / 3 - 15px);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.custom-article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid #333;
}

.custom-article-content {
    padding: 15px;
}

.custom-article-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.custom-article-content p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.custom-article-content a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.custom-article-content a:hover {
    color: #ff9900;
}

.custom-scroll-buttons {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.custom-scroll-btn {
    width: 40px;
    height: 40px;
    background-color: #ffcc00;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    transition: background-color 0.3s ease;
}

.custom-scroll-btn:hover {
    background-color: #ff9900;
}


/*artical end*/
/* review form*/
.review-section {
    padding: 50px 20px;
    background-color: #121212;
    color: #fff;
    text-align: center;
}

.review-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.review-form-container {
    max-width: 900px;
    margin: auto;
    padding: 30px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.review-header {
    margin-bottom: 20px;
}

.review-logo {
    width: 150px;
    margin-bottom: 10px;
}

.review-header p {
    color: #ccc;
    font-size: 16px;
}

.review-header p span {
    color: #ffcc00;
    font-weight: bold;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-input,
.review-textarea {
    width: 100%;
    padding: 15px;
    background: #1f1f1f;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.review-input:focus,
.review-textarea:focus {
    outline: none;
    border-color: #ffcc00;
}

.review-textarea {
    min-height: 120px;
    resize: vertical;
}

.review-submit-btn {
    padding: 15px;
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    border: none;
    border-radius: 8px;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.review-submit-btn:hover {
    background: linear-gradient(90deg, #ff9900, #ffcc00);
    transform: translateY(-3px);
}

.review-submit-btn:active {
    transform: translateY(0);
}


/* review form*/

/* footer */
.footer-section {
    background-color: #2b0b0b;
    color: #f0f0f0;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.app-link img {
    width: 150px;
    transition: transform 0.3s ease;
}

.app-link img:hover {
    transform: scale(1.05);
}

.footer-certifications h4,
.footer-payments h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ffcc00;
}

.certification-logos,
.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.certification-logos img,
.payment-logos img {
    width: 80px;
}

.footer-company-info {
    margin: 30px 0;
    line-height: 1.6;
}

.footer-company-info p strong {
    font-weight: bold;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-disclaimer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

.footer-disclaimer a:hover {
    text-decoration: underline;
}

.footer-payments {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .certification-logos img,
    .payment-logos img {
        width: 60px;
    }
}
/*  footer end */

/* responsible game*/

.info-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: #f0f0f0;
    flex-wrap: wrap;
}

.info-card {
    width: 30%;
    text-align: center;
    padding: 20px;
    background-color: #2b2b2b;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 12px rgba(255, 255, 255, 0.1);
}

.icon img {
    width: 60px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.info-card p {
    font-size: 14px;
    line-height: 1.5;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.payment-logos img {
    width: 60px;
    transition: transform 0.3s ease;
}

.payment-logos img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .info-card {
        width: 100%;
        margin-bottom: 20px;
    }
}


/* responsible end*/

/* about us */
.rummy-info-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    padding: 40px 20px;
    color: #f0f0f0;
    border-radius: 12px;
    gap: 20px;
}

.content {
    max-width: 70%;
}

.content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.content p {
    font-size: 16px;
    line-height: 1.6;
    color: #b3b3b3;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #ffcc00;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ffd633;
}

.icon img {
    width: 80px;
    height: 80px;
    padding: 10px;
    background-color: #2b2b2b;
    border-radius: 50%;
    border: 2px solid #ffcc00;
}

@media (max-width: 768px) {
    .rummy-info-section {
        flex-direction: column;
        text-align: center;
    }

    .content {
        max-width: 100%;
    }

    .icon {
        margin-top: 20px;
    }
}

/* about us end */
/* testimonials */

.player-reviews {
    padding: 40px 20px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.player-reviews h2 {
    font-size: 26px;
    margin-bottom: 30px;
}

.reviews-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-card {
    position: relative;
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    max-height: 300px;
    overflow-y: auto;
    color: #b3b3b3;
    border: 1px solid #333;
}

.review-card h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 14px;
    line-height: 1.6;
}

.corner-icon {
    position: absolute;
    font-size: 18px;
    color: #d63031;
}

.review-card .corner-icon:first-child {
    top: 8px;
    left: 8px;
}

.review-card .corner-icon:last-child {
    bottom: 8px;
    right: 8px;
}

.review-card::-webkit-scrollbar {
    width: 6px;
}

.review-card::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 6px;
}

.review-card::-webkit-scrollbar-track {
    background-color: #333;
}

@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }
}

/* testimonials */