:root {
    --primary-bg: #000000;
    --text-gold: #d4af37;
    --text-white: #ffffff;
    --btn-red: #ff0000;
    --accent-green: #25d366;
    /* WhatsApp green */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
}

/* ================= HEADER ================= */
header {
    background-color: var(--primary-bg);
    padding: 20px 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    
    gap: 40px;
   
    border-bottom: 1px solid #333;
}

.logo img {
    height: 90px;
   
    display: block;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #ff9900;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 10px;
    vertical-align: middle;
}

/* Desktop Actions (Social + Login) */
.desktop-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.social.whatsapp {
    background-color: #12d459;
}

.social.instagram {
    background-color: #333333;
}

.social.telegram {
    background-color: #0088cc;
}

.btn-login {
    background-color: var(--btn-red);
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
}

/* Mobile Actions (Hidden on Desktop) */
.mobile-actions {
    display: none;
}

/* ================= SCROLLING SECTIONS ================= */
.scrolling-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: black;
    border-top: 1px solid #333;
    padding: 10px 0;
    position: relative;
}

/* Scroll 1: Icons */
.scroll-icons {
    display: inline-block;
    animation: scrollLeft 20s linear infinite;
}

.scroll-item {
    display: inline-flex;
    align-items: center;
    margin-right: 40px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.icon-placeholder {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Use emoji or simple shapes if no images */
.icon-tennis::before {
    content: '🎾';
    font-size: 20px;
}

.icon-sport::before {
    content: '🛡️';
    font-size: 20px;
    color: gold;
}

.icon-card::before {
    content: '🃏';
    font-size: 20px;
}

.icon-slot::before {
    content: '🎰';
    font-size: 20px;
}

.icon-cricket::before {
    content: '🏏';
    font-size: 20px;
    color: red;
}

.icon-soccer::before {
    content: '⚽';
    font-size: 20px;
}

/* Scroll 2: Text */
.scroll-text-container {
    border-top: 1px solid #222;
    padding: 8px 0;
}

.scroll-text {
    display: inline-block;
    animation: scrollLeft 25s linear infinite;
    color: var(--text-gold);
    font-style: italic;
    font-weight: bold;
    font-size: 14px;
}

.text-item {
    margin-right: 50px;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

    
}


/* ================= BANNER ================= */
.banner-container {
    width: 100%;
    margin-top: 0;
}

.banner-img {
    width: 100%;
    display: block;
    height: auto;
}



.loyalty-bonus-card {
    /* Container for the single large image */
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


/* ================= CONTENT SECTION ================= */
.content-section {
    padding: 20px 50px;
    background-color: var(--primary-bg);
    /* keeping main bg black */
}

.content-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    margin-bottom: -25px;
    /* Overlap effect */
    position: relative;
    z-index: 2;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.content-header h2 {
    font-size: 24px;
    margin: 0;
    text-transform: capitalize;
}

.content-box {
    background: linear-gradient(180deg, #400000 0%, #200000 100%);
    border-radius: 15px;
    padding: 40px 30px 30px 30px;
    /* Top padding for overlap */
    color: var(--text-white);
    line-height: 1.6;
    font-size: 15px;
}

.content-box p {
    margin-bottom: 15px;
}

.content-box b {
    color: white;
    font-weight: bold;
}

.content-subhead {
    color: #ff9900;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

.content-flex {
    display: flex;
    gap: 30px;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-image {
    flex: 1;
    /* Equal width for text and image */
    max-width: 100%;
}

/* ================= FEATURES TABLE ================= */
.table-box {
    padding: 30px 0 0 0;
    /* Remove side padding for table to fit */
    overflow-x: auto;
    /* Scroll table on small screens */
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.features-table th,
.features-table td {
    padding: 15px 20px;
    border: 1px solid #444;
    text-align: left;
    color: var(--text-white);
}

.features-table th {
    background-color: #111;
    font-weight: bold;
}

.features-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
    /* Slight zebra striping */
}

/* ================= CTA BUTTON ================= */
.cta-container {
    text-align: center;
    padding: 40px 20px 60px 20px;
}

.cta-button {
    background-color: red;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* ================= BONUS SECTION ================= */
.bonus-content-wrapper {
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.bonus-description {
    margin-bottom: 50px;
    line-height: 1.6;
    font-size: 16px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.bonus-card {
    background: linear-gradient(135deg, #400000 0%, #1a0000 100%);
    border-radius: 30px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
    border-color: var(--text-gold);
}

.bonus-icon {
    margin-bottom: 20px;
    color: var(--text-gold);
    font-size: 40px;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.bonus-card h3 {
    font-size: 18px;
    color: white;
    margin: 0;
    font-weight: bold;
    line-height: 1.4;
    max-width: 180px;
}


.instagram-btn {
    font-size: 36px;
    padding: 10px 60px;
}


/* ================= MISSION SECTION ================= */
.mission-section {
    padding: 20px 50px;
    background: linear-gradient(60deg, #360505 0%, #7b0202 100%);
}

.mission-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    margin-bottom: -25px;
    position: relative;
    z-index: 2;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.mission-header h2 {
    font-size: 24px;
    margin: 0;
    text-transform: capitalize;
}

.mission-box {
    background: linear-gradient(180deg, #400000 0%, #200000 100%);
    border-radius: 15px;
    padding: 40px 30px 30px 30px;
    color: var(--text-white);
    line-height: 1.6;
    font-size: 15px;
}

.mission-flex {
    display: flex;
    gap: 30px;
    align-items: center;
}

.mission-image-col {
    flex: 1;
    max-width: 100%;
}

.mission-text-col {
    flex: 1;
}

/* ================= VARIETY OF BETS SECTION ================= */
.variety-section {
    padding: 20px 50px;
    background: linear-gradient(60deg, #360505 0%, #7b0202 100%);
}

.variety-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    margin-bottom: -25px;
    position: relative;
    z-index: 2;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.variety-header h2 {
    font-size: 24px;
    margin: 0;
    text-transform: capitalize;
}

.variety-box {
    background: linear-gradient(180deg, #400000 0%, #200000 100%);
    border-radius: 15px;
    padding: 40px 30px 30px 30px;
    color: var(--text-white);
    line-height: 1.6;
    font-size: 15px;
}

.variety-flex {
    display: flex;
    gap: 30px;
    align-items: center;
}

.variety-text-col {
    flex: 1;
}

.variety-image-col {
    flex: 1;
    max-width: 100%;
}

.variety-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.variety-list li {
    margin-bottom: 10px;
}


/* ================= BETTING STEPS SECTION ================= */
.betting-steps-section {
    padding: 20px 50px 50px 50px;
    background: linear-gradient(60deg, #360505 0%, #7b0202 100%);
}

.betting-steps-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.betting-steps-header h2 {
    font-size: 24px;
    margin: 0;
    text-transform: capitalize;
}

.betting-steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.betting-step-item {
    flex: 0 1 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.betting-step-icon {
    font-size: 50px;
    color: var(--text-gold);
    margin-bottom: 20px;
}

.betting-step-title {
    color: var(--text-gold);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
}

.betting-step-desc {
    color: white;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .betting-steps-section {
        padding: 20px;
    }

    .betting-steps-header {
        width: 100%;
        margin-bottom: 30px;
        padding: 10px;
    }

    .betting-steps-header h2 {
        font-size: 18px;
    }

    .betting-step-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ================= DEPOSIT SECTION ================= */
.deposit-section {
    padding: 20px 50px 50px 50px;
    background: linear-gradient(60deg, #360505 0%, #7b0202 100%);
}

.deposit-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.deposit-header h2 {
    font-size: 24px;
    margin: 0;
    text-transform: capitalize;
}

.deposit-content-box {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    font-size: 16px;
    line-height: 1.6;
}

.deposit-step {
    margin-bottom: 25px;
}

.deposit-step-title {
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.deposit-step-desc {
    color: white;
    margin: 0;
}


/* ================= WITHDRAWAL SECTION ================= */
.withdrawal-section {
    padding: 20px 50px 50px 50px;
    background: linear-gradient(60deg, #360505 0%, #7b0202 100%);
    /* Ending with black */
}

.withdrawal-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.withdrawal-header h2 {
    font-size: 24px;
    margin: 0;
    text-transform: capitalize;
}

.withdrawal-content-box {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    font-size: 16px;
    line-height: 1.6;
}

.withdrawal-step {
    margin-bottom: 25px;
}

.withdrawal-step-title {
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.withdrawal-step-desc {
    color: white;
    margin: 0;
}


/* ================= NEWS SECTION ================= */
.news-section {
    padding: 20px 50px 50px 50px;
    background: linear-gradient(60deg, #360505 0%, #7b0202 100%);
}

.news-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.news-header h2 {
    font-size: 24px;
    margin: 0;
    text-transform: capitalize;
}

.news-content-box {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    font-size: 16px;
    line-height: 1.6;
}

.news-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.news-list li {
    margin-bottom: 10px;
}

/* ================= MOBILE BETTING SECTION ================= */
.mobile-betting-section {
    padding: 20px 50px 50px 50px;
    background: linear-gradient(60deg, #360505 0%, #7b0202 100%);
}

.mobile-betting-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.mobile-betting-header h2 {
    font-size: 24px;
    margin: 0;
    text-transform: capitalize;
}

.mobile-betting-content-box {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    font-size: 16px;
    line-height: 1.6;
}


/* ================= ACHIEVEMENTS SECTION ================= */
.achievements-section {
    padding: 40px 50px;
    background: linear-gradient(60deg, #1a0000 0%, #710303 100%);
}

.achievements-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px 30px;
    border-radius: 50px;
    margin: 0 auto 40px auto;
    max-width: 500px;
}

.achievements-header h2 {
    font-size: 28px;
    margin: 0;
    text-transform: capitalize;
    font-weight: bold;
    letter-spacing: 1px;
}

.achievements-content {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.achievements-left {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
}

.achievement-icon {
    margin-bottom: 10px;
}

.achievement-btn {
    background: linear-gradient(180deg, #3f0000 0%, #1a0000 100%);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 180px;
    display: inline-block;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.achievement-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(180deg, #500000 0%, #2a0000 100%);
    border-color: var(--text-gold);
}

.achievements-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================= CELEBS LOVE US SECTION ================= */
.celebs-section {
    padding: 20px 50px 50px 50px;
    background: linear-gradient(60deg, #1a0000 0%, #000000 100%);
    /* Matching Achievements background style */
}

.celebs-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    width: 60%;
    /* Smaller width as per image */
    margin-left: auto;
    margin-right: auto;
}

.celebs-header h2 {
    font-size: 24px;
    margin: 0;
    text-transform: capitalize;
    font-weight: bold;
}

.celebs-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.celeb-item {
    flex: 0 1 300px;
    /* Approx width for 3 items */
    display: flex;
    justify-content: center;
    align-items: center;
}

.celeb-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 5px solid transparent;
    /* Invisible border initially */
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.celeb-item img:hover {
    transform: scale(1.1);
    /* Zoom effect */
    border-color: #ff9900;
    /* Yellow/Orange border on hover */
}


/* ================= WHATSAPP US SECTION ================= */
.whatsapp-us-section {
    padding: 0;
    /* Padding handling inside container or if full width background needed */
    background: linear-gradient(60deg, #360505 0%, #200000 100%);
}

.whatsapp-us-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.whatsapp-us-left {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.whatsapp-us-left h2 {
    font-size: 60px;
    color: #ffcc00;
    /* Gold/Orange text */
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.whatsapp-us-btn {
    background-color: #ff0000;
    /* Bright Red */
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-us-btn:hover {
    transform: scale(1.05);
    background-color: #cc0000;
}

.whatsapp-us-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-us-right img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
}


/* ================= LIVE BETTING SECTION ================= */
.live-betting-section {
    padding: 40px 50px;
    background: linear-gradient(60deg, #4a0000 0%, #1a0000 100%);
}

.live-betting-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    margin-bottom: 40px;
}

.live-betting-header h2 {
    font-size: 28px;
    margin: 0;
    text-transform: capitalize;
    font-weight: bold;
}

.live-betting-content-box {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}


/* ================= INSTAGRAM SECTION ================= */
.instagram-section {
    padding: 40px 50px;
    background: linear-gradient(60deg, #381616 0%, #770808 100%);
    overflow: hidden;
}

.instagram-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-header h2 {
    font-size: 28px;
    margin: 0;
    text-transform: capitalize;
    font-weight: bold;
}

.instagram-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.instagram-carousel {
    display: flex;
    gap: 20px;
    animation: slide 15s linear infinite;
}

.instagram-card {
    flex: 0 0 auto;
    width: 300px;
}

.instagram-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ================= PROMOTIONS SECTION ================= */
.promotions-section {
    padding: 40px 50px;
    background: linear-gradient(60deg, #1a0000 0%, #5c0707 100%);
    overflow: hidden;
}

.promotions-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.promotions-header h2 {
    font-size: 28px;
    margin: 0;
    text-transform: capitalize;
    font-weight: bold;
}

.promotions-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.promotions-carousel {
    display: flex;
    gap: 5px;
    animation: promotionsSlide 15s linear infinite;
}

.promotions-card {
    flex: 0 0 auto;
    width: 100%;
    /* 1 full-size card visible at once */
}

.promotions-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

@keyframes promotionsSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 30px));
    }
}

/* ================= CUSTOMER REVIEW SECTION ================= */
.customer-review-section {
    padding: 40px 50px 60px 50px;
    background: linear-gradient(60deg, #360505 0%, #7b0202 100%);
}

.customer-review-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px 30px;
    border-radius: 50px;
    margin: 0 auto 40px auto;
    max-width: 500px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.customer-review-header h2 {
    font-size: 28px;
    margin: 0;
    text-transform: capitalize;
    font-weight: bold;
    letter-spacing: 1px;
}

.customer-review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(180deg, #400000 0%, #200000 100%);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
    border-color: var(--text-gold);
}

.review-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--text-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-name {
    font-size: 20px;
    color: white;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.review-text {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}


/* ================= FAQs SECTION ================= */
.faqs-section {
    padding: 40px 50px 60px 50px;
    background-color: #000000;
}

.faqs-header {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
}

.faqs-header h2 {
    font-size: 48px;
    color: white;
    margin: 0;
    font-weight: bold;
    letter-spacing: 1px;
}

.faqs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #000000;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--text-gold);
}

.faq-item.active {
    border-color: var(--text-gold);
}

.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.faq-icon {
    color: var(--text-gold);
    font-size: 24px;
    font-weight: bold;
    min-width: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-text {
    flex: 1;
    color: var(--text-gold);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
}

.faq-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    min-width: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: rgba(0, 0, 0, 0.5);
}

.faq-answer p {
    padding: 0 25px 20px 64px;
    margin: 0;
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.6;
}


/* ================= OUR WINNERS SECTION ================= */
.our-winners-section {
    padding: 40px 50px 60px 50px;
    background-color: #000000;
}

.our-winners-header {
    background: linear-gradient(60deg, #8b0000 0%, #500000 100%);
    color: var(--text-gold);
    text-align: center;
    padding: 15px 30px;
    border-radius: 50px;
    margin: 0 auto 40px auto;
    max-width: 500px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.our-winners-header h2 {
    font-size: 28px;
    margin: 0;
    text-transform: capitalize;
    font-weight: bold;
    letter-spacing: 1px;
}

.our-winners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.winner-card {
    background-color: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.winner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.winner-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}


/* ================= FOOTER SECTION ================= */
.main-footer {
    position: relative;
    padding: 60px 50px;
    background: url('https://images.unsplash.com/photo-1606167668584-78701c474721?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    color: white;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(50, 0, 0, 0.8) 100%);
    z-index: 1;
}

.footer-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.brand-column {
    flex: 1.5;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.brand-name {
    color: var(--text-gold);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.brand-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    max-width: 300px;
}

.footer-column h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.footer-column ul li a::before {
    content: "•";
    color: white;
    margin-right: 10px;
    font-size: 12px;
}

.footer-column ul li a:hover {
    color: var(--text-gold);
    padding-left: 5px;
}

.info-column h3:nth-of-type(2) {
    margin-top: 30px;
}

.contact-number {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-number i {
    font-size: 24px;
    color: white;
}

.contact-number span {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

.social-icon.inst {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.wash {
    background-color: #25d366;
}

.social-icon.tele {
    background-color: #0088cc;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}


/* ================= DISCLAIMER SECTION ================= */
.disclaimer-section {
    background-color: #000;
    padding: 40px 50px;
    border-top: 1px solid #333;
    color: #888;
}

.disclaimer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.disclaimer-logo {
    max-width: 150px;
    border-radius: 20px;

}

.disclaimer-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.disclaimer-content {
    flex: 1;
}

.disclaimer-content h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.6;
}

.gamble-aware {
    display: flex;
    align-items: center;
    gap: 20px;
}

.eighteen-plus {
    height: 30px;
}

.gamble-logo {
    height: 30px;
}

/* ================= BOTTOM BAR ================= */
.bottom-bar {
    background-color: #000;
    padding: 20px 50px;
    border-top: 1px solid #222;
    color: #fff;
}

.bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 16px;
    font-weight: bold;
}

.age-warning {
    font-size: 16px;
    font-weight: bold;
}

.payment-methods {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.payment-methods img {
    max-height: 45px;
    width: auto;
    max-width: 100%;
    opacity: 0.9;
    transition: 0.3s;
}

.payment-methods img:hover {
    opacity: 1;
}


/* ================= FLOATING SIDE BUTTONS ================= */
.floating-side-buttons {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.float-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.service-btn img {
    width: 65px;
    height: auto;
    background-color: #000;
    border-radius: 50%;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 35px;
}

/* Pulsing animation for WhatsApp */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    animation: pulse 2s infinite;
}


/* ================= RESPONSIVE STYLES (CONSOLIDATED) ================= */

/* Medium-Large Devices (Laptops, Tablets in Landscape) */
@media (max-width: 1200px) {
    .achievements-content {
        gap: 20px;
    }

    .customer-review-grid,
    .our-winners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .footer-column {
        min-width: 45%;
    }
}

/* Medium Devices (Tablets, Large Phones) */
@media (max-width: 992px) {
    .bonus-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {

    .disclaimer-container,
    .bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .payment-methods {
        justify-content: center;
    }

    .payment-methods img {
        max-height: 35px;
    }
}

@media (max-width: 900px) {
    .achievements-content {
        flex-direction: column;
    }

    .achievements-left,
    .achievements-right {
        width: 100%;
    }

    .achievements-right {
        margin-top: 30px;
    }
}

/* Small Devices (Mobile Phones) - MAIN RESPONSIVE BLOCK */
@media (max-width: 768px) {

    /* Header */
    header {
        flex-wrap: nowrap;
        padding: 10px 15px;
        justify-content: space-between;
        gap: 0;
    }

    .logo img {
        height: 50px;
    }

    .desktop-nav,
    .desktop-actions {
        display: none;
    }

    .mobile-actions {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .btn-mobile {
        background-color: var(--btn-red);
        color: white;
        border: none;
        padding: 6px 12px;
        font-weight: bold;
        border-radius: 4px;
        font-size: 10px;
        cursor: pointer;
    }

    /* General Section Padding */
    .content-section,
    .mission-section,
    .variety-section,
    .betting-steps-section,
    .deposit-section,
    .withdrawal-section,
    .news-section,
    .mobile-betting-section,
    .celebs-section,
    .live-betting-section,
    .customer-review-section,
    .faqs-section,
    .our-winners-section {
        padding: 30px 20px 40px 20px !important;
    }

    /* Content & Layout Boxes */
    .content-header,
    .mission-header,
    .variety-header,
    .betting-steps-header,
    .deposit-header,
    .withdrawal-header,
    .news-header,
    .mobile-betting-header,
    .customer-review-header,
    .our-winners-header {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 25px !important;
        padding: 12px 20px !important;
    }

    .content-header h2,
    .mission-header h2,
    .variety-header h2,
    .betting-steps-header h2,
    .deposit-header h2,
    .withdrawal-header h2,
    .news-header h2,
    .mobile-betting-header h2,
    .customer-review-header h2,
    .our-winners-header h2 {
        font-size: 20px !important;
    }

    .content-box,
    .mission-box,
    .variety-box {
        padding: 30px 20px 20px 20px;
    }

    .content-flex,
    .mission-flex,
    .variety-flex {
        flex-direction: column;
    }

    .content-image,
    .mission-image-col,
    .variety-image-col {
        width: 100%;
        margin-top: 20px;
    }

    /* Grids & Lists */
    .betting-step-item,
    .customer-review-grid,
    .our-winners-grid {
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    .celebs-grid {
        gap: 20px;
    }

    .celebs-header {
        width: 90%;
    }

    /* WhatsApp Section */
    .whatsapp-us-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .whatsapp-us-left h2 {
        font-size: 40px;
    }

    .whatsapp-us-right img {
        width: 80%;
    }

    /* Instagram Refined Mobile Logic */
    .instagram-carousel {
        gap: 0 !important;
        animation: none !important;
    }

    .instagram-card {
        width: 100% !important;
    }

    /* FAQs */
    .faqs-header {
        padding-left: 0;
        margin-bottom: 25px;
    }

    .faqs-header h2 {
        font-size: 32px;
    }

    .faq-question {
        padding: 15px 20px;
        gap: 12px;
    }

    .faq-icon {
        font-size: 20px;
    }

    .faq-text {
        font-size: 14px;
    }

    .faq-answer p {
        padding: 0 20px 15px 52px;
        font-size: 14px;
    }

    /* Reviews */
    .review-avatar {
        width: 80px;
        height: 80px;
    }

    .review-name {
        font-size: 18px;
    }

    .review-text {
        font-size: 13px;
    }

    /* Floating Buttons */
    .floating-side-buttons {
        right: 15px;
        bottom: 30px;
        gap: 10px;
    }

    .service-btn img {
        width: 55px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    /* Global Mobile Fixes (Overflow, Wrapping) */
    div,
    section,
    article,
    aside,
    main {
        max-width: 100vw;
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    a,
    li,
    td,
    th {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .table-box {
        overflow-x: auto;
        max-width: 100%;
    }

    .features-table {
        min-width: auto;
    }
}

/* Very Small Devices */
@media (max-width: 600px) {
    .main-footer {
        padding: 40px 20px;
    }

    .footer-column {
        min-width: 100%;
        text-align: center;
    }

    .footer-column ul li a,
    .contact-number,
    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .bonus-cards-grid {
        gap: 15px;
    }

    .bonus-card {
        padding: 30px 15px;
        min-height: 180px;
    }

    .bonus-icon {
        height: 50px;
        width: 50px;
        font-size: 32px;
    }

    .bonus-card h3 {
        font-size: 16px;
    }
}