* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f39c12;
    --secondary-color: #e67e22;
    --dark-bg: #0f0f1e;
    --darker-bg: #0a0a14;
    --card-bg: #1a1a2e;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --accent-blue: #3498db;
    --accent-red: #e74c3c;
    --accent-green: #2ecc71;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
}

.top-submenu {
    background-color: #0f0f1e;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.submenu-content {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: flex-start;
}

.submenu-content a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 12px;
    padding: 5px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.submenu-content a:last-child {
    border-right: none;
}

.submenu-content a:hover {
    color: var(--primary-color);
}

.main-header {
    background-color: #1a1d3a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header .navbar {
    padding: 8px 0px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 24px;
    color: white;
    text-decoration: none;
}

.navbar-toggler {
    background-color: white;
    border: none;
    padding: 6px 10px;
}

/* Hide mobile Join button on desktop and tablet, show only on mobile */
.navbar-brand + .btn-join-skyexch {
    display: none;
}

@media (max-width: 768px) {
    .navbar-brand + .btn-join-skyexch {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 6px 12px;
        font-size: 12px;
        margin-right: 10px;
    }
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/200/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
        background-color: aliceblue;
        border-radius: 4px;
}

.navbar-brand i {
    color: var(--primary-color);
    font-size: 28px;
}

.logo-img {
    width: 140px;
    height: 40px;
    object-fit: contain;
    margin-right: 3px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    font-size: 13px;
    padding: 5px 10px !important;
    margin: 0 3px !important;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link i {
    margin-right: 5px;
}

.whatsapp-menu {
    color: #25d366 !important;
}

.whatsapp-menu:hover {
    color: #1fa855 !important;
}

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 15px;
}

.btn-login {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-register {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--darker-bg);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-register:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-join-skyexch {
    background-color: #2ecc71;
    border: 1px solid #2ecc71;
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-join-skyexch:hover {
    background-color: #27ae60;
    border-color: #27ae60;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s;
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content-custom {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@media (max-width: 576px) {
    .modal-content-custom {
        max-width: 100%;
        width: 85%;
        padding: 25px 20px;
        max-height: 85vh;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-title {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}

.modal-subtitle {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 30px;
}

.join-form .form-group {
    margin-bottom: 20px;
}

.join-form input {
    width: 100%;
    padding: 15px;
    background-color: var(--darker-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s;
}

.join-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--dark-bg);
}

.join-form input::placeholder {
    color: var(--text-gray);
}

.btn-submit-form {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

.hero-slider-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.heroSwiper {
    width: 100%;
    height: auto;
}

.slider-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination-bullet {
    background-color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}

.marquee-banner {
    background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 10s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    color: #1a1d3a;
    font-weight: 600;
    font-size: 14px;
    padding: 0 50px;
    display: inline-block;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--card-bg);
    padding: 15px 25px;
    border-radius: 50px;
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 24px;
}

.hero-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
    color: white;
}

.cta-button-animated {
    background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
    border: none;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    animation: pulse-yellow 2s infinite;
}

.cta-button-animated:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
    animation: none;
}

@keyframes pulse-yellow {
    0% {
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4), 0 0 0 0 rgba(243, 156, 18, 0.7);
    }
    50% {
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4), 0 0 0 10px rgba(243, 156, 18, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4), 0 0 0 0 rgba(243, 156, 18, 0);
    }
}

.section-with-shadow {
    box-shadow: 0 0 30px rgba(243, 156, 18, 0.3);
    border-radius: 12px;
    padding: 40px;
}

.section-with-shadow-light {
    box-shadow: inset 0 0 20px rgba(243, 156, 18, 0.1);
}

.section-with-shadow-dark {
    box-shadow: 0 0 30px rgba(243, 156, 18, 0.5);
    border-radius: 12px;
    padding: 40px;
}

.section-with-shadow-dark-blue {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 40px;
}

.new-card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.new-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
}

.new-card-image {
    width: 100%;
    height: 150px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.new-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-card-info {
    padding: 20px;
}

.new-card-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.new-card-info p {
    font-size: 14px;
    color: var(--text-gray);
}

.why-choose-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    margin-bottom: 15px;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
}

.why-choose-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
}

.why-choose-card h3 {
    color: #1a1a2e;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-choose-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.sport-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
}

.sport-card .sport-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sport-card h3 {
    color: #1a1a2e;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sport-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.casino-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.casino-game-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.casino-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
}

.casino-game-card .game-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.casino-game-card h3 {
    color: #1a1a2e;
}

.responsible-gaming-tools ul li {
    padding: 10px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.responsible-gaming-tools ul li:last-child {
    border-bottom: none;
}

.reviews-section {
    padding: 60px 0;
    background-color: var(--darker-bg);
}

.review-card {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
}

.review-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.stats-section {
    padding: 60px 0;
    background-color: var(--darker-bg);
}

.stat-card {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(243, 156, 18, 0.3);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.2) 0%, rgba(230, 126, 34, 0.2) 100%);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 15px 0;
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    font-size: 52px;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-card:hover .stat-number {
        font-size: 44px;
    }
}

@media (max-width: 576px) {
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-card:hover .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

.why-trust-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.trust-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 30, 0.8) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
    border-color: var(--secondary-color);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
}

.trust-card h3 {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.trust-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

section {
    padding: 30px 0;
}

.section-heading {
    margin-bottom: 20px;
    font-size: 32px;
}

.text-center.mt-5 {
    margin-top: 25px !important;
}

.text-center.mt-4 {
    margin-top: 20px !important;
}

.mb-5 {
    margin-bottom: 20px !important;
}

.mb-4 {
    margin-bottom: 15px !important;
}

.deposit-section,
.withdraw-section,
.app-section,
.why-choose-section,
.sports-betting-section,
.casino-games-section {
    padding: 35px 0;
}

.support-section-new {
    background-color: #1a1a2e;
    padding: 50px 0;
}

.support-section-new h2 {
    color: var(--primary-color);
}

.support-section-new p,
.support-section-new li {
    color: #e0e0e0;
}

.popular-games {
    padding: 20px 0;
    background-color: var(--dark-bg);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.game-card-new {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.game-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.game-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 65%;
    overflow: hidden;
}

.game-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-info-bar {
      background-color: var(--card-bg);
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3px;
}

.game-info-bar h3 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.btn-play-new {
background: linear-gradient(90deg, #f39c12 0%, #e67e22 100%);
    border: none;
    color: black;
    padding: 5px 23px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: -0.5px;
    white-space: nowrap;
  }

.btn-play-new:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.section-heading {
    text-align: center;
    font-size: 40px;
    margin-bottom: 0px;
    position: relative;
    padding-bottom: 20px;
}

.section-heading::after {
    /* content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); */
}

.section-heading {
    color: var(--primary-color);
}

.info-section h2,
.signup-section h2,
.bet-section h2,
.vip-section h2,
.deposit-section h2,
.withdraw-section h2,
.app-section h2,
.support-section h2,
.legal-section h2,
.responsible-gaming h2,
.faq-section h2,
.recent-blogs-section h2,
.support-channels-section h2 {
    color: var(--primary-color);
}

.info-section h3,
.signup-section h3,
.bet-section h3,
.vip-section h3,
.deposit-section h3,
.withdraw-section h3,
.app-section h3,
.support-section h3,
.legal-section h3,
.responsible-gaming h3 {
    color: var(--text-light);
}

.info-section h4,
.signup-section h4,
.bet-section h4,
.vip-section h4,
.deposit-section h4,
.withdraw-section h4,
.app-section h4,
.support-section h4 {
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
}

.game-thumb {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover .game-thumb img {
    transform: scale(1.1);
}

.badge-live,
.badge-hot,
.badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.badge-live {
    background-color: var(--accent-red);
}

.badge-hot {
    background-color: #ff6b6b;
}

.badge-new {
    background-color: var(--accent-green);
}

.game-info {
    padding: 20px;
    text-align: center;
}

.game-info h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.btn-play {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-play:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.bonuses-section {
    padding: 30px 0;
    background-color: var(--darker-bg);
}

.bonus-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
}

.bonus-icon {
    margin-bottom: 20px;
}

.bonus-icon img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.bonus-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.bonus-desc {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-section,
.signup-section,
.bet-section,
.vip-section,
.deposit-section,
.withdraw-section,
.app-section,
.support-section,
.legal-section,
.responsible-gaming,
.recent-blogs-section,
.support-channels-section {
    padding: 40px 0;
}

.info-section {
    background-color: var(--dark-bg);
}

.signup-section {
    background-color: var(--darker-bg);
}

.bet-section {
    background-color: var(--dark-bg);
}

.vip-section {
    background-color: var(--darker-bg);
}

.deposit-section {
    background-color: var(--dark-bg);
}

.withdraw-section {
    background-color: var(--darker-bg);
}

.app-section {
    background-color: var(--dark-bg);
}

.support-section {
    background-color: var(--darker-bg);
}

.legal-section {
    background-color: var(--dark-bg);
}

.responsible-gaming {
    background-color: var(--darker-bg);
}

.info-section p,
.signup-section p,
.bet-section p,
.vip-section p,
.deposit-section p,
.withdraw-section p,
.app-section p,
.support-section p,
.legal-section p,
.responsible-gaming p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 15px;
}

.steps-list {
    list-style: none;
    padding: 0;
}

.steps-list li {
    padding: 6px 0;
    color: var(--text-gray);
    line-height: 1.8;
}

.steps-list li strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 1px;
}

.recent-blogs-section {
    background-color: var(--dark-bg);
}

.blog-card-recent {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.blog-card-recent:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
}

.blog-image-recent {
    overflow: hidden;
    height: 250px;
}

.blog-image-recent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card-recent:hover .blog-image-recent img {
    transform: scale(1.1);
}

.blog-content-recent {
    padding: 25px;
}

.blog-content-recent h3 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-light);
    min-height: 50px;
}

.blog-date-recent {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.read-more-btn {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more-btn:hover {
    color: var(--primary-color);
}

.blogSwiper {
    padding: 20px 0 60px;
}

.blog-pagination {
    bottom: 20px !important;
}

.blog-next,
.blog-prev {
    color: var(--primary-color);
}

.faq-section {
    padding: 60px 0;
    background-color: var(--darker-bg);
}

.accordion-item {
    background-color: var(--card-bg);
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--card-bg);
    color: var(--text-light);
    font-weight: 600;
    padding: 20px 30px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(243, 156, 18, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background-color: var(--card-bg);
    color: var(--text-gray);
    padding: 20px 30px;
    line-height: 1.8;
}

.support-channels-section {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.support-channels-section .section-heading {
    color: var(--darker-bg);
}

.support-channels-section .section-heading::after {
    background: var(--darker-bg);
}

.support-channel-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s;
    height: 100%;
}

.support-channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.support-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.whatsapp-icon {
    background-color: #25d366;
    color: white;
}

.chat-icon {
    background-color: #3498db;
    color: white;
}

.email-icon {
    background-color: #e74c3c;
    color: white;
}

.phone-icon {
    background-color: #2ecc71;
    color: white;
}

.support-content h3 {
    color: var(--text-light);
    font-size: 20px;
    margin-bottom: 10px;
}

.support-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.social-media-section {
    margin-top: 40px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    color: white;
}

.facebook-btn {
    background-color: #3b5998;
}

.twitter-btn {
    background-color: #1da1f2;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.linkedin-btn {
    background-color: #0077b5;
}

.pinterest-btn {
    background-color: #bd081c;
}

.threads-btn {
    background-color: #000000;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.site-footer {
    background-color: var(--darker-bg);
    padding: 40px 0 20px;
    border-top: 2px solid var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
}

.footer-logo i {
    color: var(--primary-color);
}

.site-footer h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links-section {
    margin-bottom: 30px;
}

.footer-links-text {
    color: var(--text-gray);
    line-height: 2;
    text-align: center;
    font-size: 14px;
}

.footer-links-text a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-text a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    /* right: 30px; */
    background-color: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float i {
    font-size: 24px;
}

.forgot-password-box {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.15);
    transition: all 0.3s;
}

.forgot-password-box:hover {
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.25);
    transform: translateY(-5px);
}

.forgot-password-box h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
}

.forgot-password-box p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 991px) {
    .header-buttons {
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
    
    .header-buttons {
        margin-top: 20px;
        flex-direction: column;
        width: 100%;
    }
    
    .header-buttons button,
    .header-buttons .btn-whatsapp {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-heading {
        font-size: 24px;
    }

    .bonus-card,
    .game-card {
        margin-bottom: 20px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Mobile Header - Keep buttons visible */
    .main-header {
        padding: 10px 0;
    }
    
    .navbar {
        padding: 0;
    }
    
    .navbar-brand {
        padding: 0;
    }
    
    .logo-img {
        height: 32px;
        width: auto;
    }
    
    /* Keep header buttons visible on mobile */
    .header-buttons {
        display: flex !important;
        flex-direction: row;
        gap: 8px;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .header-buttons .btn {
        padding: 6px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .header-buttons .btn i {
        display: none;
    }
    
    .navbar-toggler {
        padding: 6px 10px;
        margin-left: 0;
    }
    
    .navbar-collapse {
        background-color: var(--card-bg);
        border-radius: 8px;
        padding: 20px;
        margin-top: 15px;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Hide duplicate buttons in collapsed menu */
    .navbar-collapse .header-buttons {
        display: none !important;
    }
    
    .marquee-content span {
        font-size: 12px;
        padding: 0 30px;
    }
    
    .submenu-content {
        flex-direction: column;
    }
    
    .submenu-content a {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 15px;
    }
    
    .submenu-content a:last-child {
        border-bottom: none;
    }
    
    .section-with-shadow {
        padding: 20px;
    }
    
    .row.align-items-center {
        flex-direction: column-reverse;
    }
    
    .row.align-items-center .col-lg-6:first-child {
        order: 2;
    }
    
    .row.align-items-center .col-lg-6:last-child {
        order: 1;
        margin-bottom: 30px;
    }
    
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .casino-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .responsible-gaming-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .responsible-gaming-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .forgot-password-box {
        padding: 20px;
    }
    
    .forgot-password-box h2 {
        font-size: 24px;
    }
    25px 20px;
        width: 95%;
        max-width: 10%;
        border-radius: 12;
    }
    
    .modal-title {
        font-size:
        margin-bottom: 10px;
    .modal-content-custom {
        padding: 30px 20px;
    }sub {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .join-form .form-group {
       margin-bottom: 15px;
    }
    
    .join-form input 
        padding: 12px;
    : 14px;
    }
    
    .btn-submit-form {
        padding1px;
        font-size: 16px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 4
    .modal-title {
        font-size: 22px;
    }
    
    .support-channel-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .blog-content-recent h3 {
        font-size: 16px;
        min-height: auto;
    }
    
    .info-section,
    .signup-section,
    .bet-section,
    .vip-section,
    .deposit-section,
    .withdraw-section,
    .app-section,
    .support-section,
    .legal-section,
    .responsible-gaming,
    .recent-blogs-section,
    .support-channels-section {
        padding: 40px 0;
    }
    
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    text-align: center;
}

.blog-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.blog-hero p {
    font-size: 18px;
    color: var(--text-gray);
}

.blog-posts-section {
    background-color: var(--dark-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
}

.blog-image {
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-date {
    color: var(--text-gray);
    font-size: 14px;
}

.blog-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h2 a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h2 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--secondary-color);
}

.blog-info-section {
    padding: 40px 0;
    background-color: var(--darker-bg);
}

.blog-info-content {
    text-align: center;
}

.blog-info-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

/* Blog Single Page */
.blog-single {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.container-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-single-header {
    margin-bottom: 40px;
}

.breadcrumb {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.blog-single-header h1 {
    font-size: 36px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-single-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-single-meta span {
    color: var(--text-gray);
    font-size: 14px;
}

.blog-single-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.featured-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
}

.content-wrapper h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-wrapper h3 {
    color: var(--text-light);
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-wrapper p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-wrapper ul {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-wrapper ul li {
    margin-bottom: 10px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-box p {
    color: white;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.share-section {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 15px;
}

.share-section h4 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn.telegram {
    background-color: #0088cc;
}

.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h4 {
    padding: 15px;
    margin: 0;
}

.related-card h4 a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
}

.related-card h4 a:hover {
    color: var(--primary-color);
}

.related-date {
    padding: 0 15px 15px;
    color: var(--text-gray);
    font-size: 13px;
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-hero h1 {
        font-size: 32px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-single-header h1 {
        font-size: 28px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    body {
        overflow-x: hidden;
    }
    
    .container,
    .container-fluid {
        padding-left: 5px;
        padding-right: 5px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .section-heading {
        font-size: 30px;
        padding: 0px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    .navbar-nav .nav-link {
        font-size: 12px;
        padding: 5px 8px !important;
    }
    
    .game-info-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px;
        gap: 3px;
    }
    
    .game-info-bar h3 {
        width: 100%;
        margin-bottom: 5px;
        font-size: 13px;
                text-align: center;

    }
    
    .btn-play-new {
        width: 100%;
        text-align: center;
        padding: 5px 15px;
        font-size: 11px;
      
    }
    
    .sports-betting-section,
    .casino-games-section {
        display: block;
        width: 100%;
        padding: 20px 5px;
    }
    
    .sports-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
    }
    
    .casino-games-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
    }
    
    .sports-betting-section .section-heading,
    .casino-games-section .section-heading {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .sport-card,
    .casino-game-card {
        padding: 15px;
    }
    
    .sport-icon,
    .game-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .responsible-gaming-content {
        flex-direction: column;
    }
    
    .responsible-gaming-image {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .cta-button-animated {
        padding: 12px 25px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
        text-decoration: none;
    }
    
    .section-with-shadow {
        padding: 15px;
    }
    
    .accordion-button {
        padding: 15px 20px;
        font-size: 14px; text-decoration: none;
    }
    
    .accordion-body {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .footer-links-text {
        font-size: 12px;
        line-height: 1.8;
    }
    
    .social-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
