
.footer-section ul li a,
.nav-links li a {
    display: block;
    padding: 14px 24px;
    background: rgba(30, 41, 59, 0.8);
    color: #EAB308 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 6px;
    border-left: 4px solid;
    border-right: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    text-align: left;
    position: relative;
}


.footer-section ul li:nth-child(1) a {
    border-left-color: #10B981;
    background: linear-gradient(to right, 
        rgba(16, 185, 129, 0.1), 
        rgba(30, 41, 59, 0.8));
}

.footer-section ul li:nth-child(2) a {
    border-left-color: #3B82F6;
    background: linear-gradient(to right, 
        rgba(59, 130, 246, 0.1), 
        rgba(30, 41, 59, 0.8));
}

.footer-section ul li:nth-child(3) a {
    border-left-color: #F59E0B;
    background: linear-gradient(to right, 
        rgba(245, 158, 11, 0.1), 
        rgba(30, 41, 59, 0.8));
}

.footer-section ul li:nth-child(4) a {
    border-left-color: #8B5CF6;
    background: linear-gradient(to right, 
        rgba(139, 92, 246, 0.1), 
        rgba(30, 41, 59, 0.8));
}

.footer-section ul li:nth-child(5) a {
    border-left-color: #EF4444;
    background: linear-gradient(to right, 
        rgba(239, 68, 68, 0.1), 
        rgba(30, 41, 59, 0.8));
    border-left-width: 4px;
    animation: vipBorderPulse 2s infinite;
}

@keyframes vipBorderPulse {
    0%, 100% { border-left-color: #EF4444; }
    50% { border-left-color: #FBBF24; }
}


.footer-section ul li a::after,
.nav-links li a::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700;
    opacity: 0.5;
    transition: all 0.3s ease;
}


.footer-section ul li a:hover,
.nav-links li a:hover {
    transform: translateX(5px);
    background: rgba(30, 41, 59, 0.95);
    border-left-width: 8px;
    color: white !important;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 215, 0, 0.1);
}

.footer-section ul li a:hover::after,
.nav-links li a:hover::after {
    opacity: 1;
    right: 15px;
    color: #FFD700;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-section ul li a,
    .nav-links li a {
        padding: 12px 16px;
        font-size: 0.95rem;
        border-left-width: 3px;
    }
    
    .footer-section ul li a:hover {
        border-left-width: 6px;
        transform: translateX(3px);
    }
}


.btn-cta {
    display: inline-block;
    padding: 18px 42px;
    background: linear-gradient(135deg, 
        #FF0000 0%, 
        #FF6B00 25%, 
        #FF8F00 50%, 
        #FFAA00 75%, 
        #FFD700 100%);
    color: white !important;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    
    
    box-shadow: 
        0 0 20px rgba(255, 107, 0, 0.5),
        0 0 40px rgba(255, 107, 0, 0.3),
        0 0 60px rgba(255, 107, 0, 0.1),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}


.btn-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-cta:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}
@font-face {
    font-family: 'icomoon';
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-casino:before { content: "\E01B"; }
.icon-slots:before { content: "\E025"; }
.icon-live_casino:before { content: "\E01F"; }
.icon-table:before { content: "\E026"; }
.icon-sport:before { content: "\E08B"; }
.icon-bonus:before { content: "\E014"; }
.icon-gift:before { content: "\E049"; }
.icon-cashback:before { content: "\E01A"; }
.icon-wallet:before { content: "\E09D"; }
.icon-chevron-down:before { content: "\E011"; }
.icon-menu:before { content: "\E060"; }
.icon-close:before { content: "\E02F"; }

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #1e293b;
    background-color: #fff5e6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

header {
    background-color: #ff7700;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .logo {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo-icon {
    font-size: 1.5rem;
}

header nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin: 0;
}

.nav-links li a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    display: block;
    font-size: 0.95rem;
    border: none;
    border-left: none;
    margin: 0;
}

.nav-links li a::after {
    display: none;
}

.nav-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.desktop-auth {
    display: flex;
    gap: 10px;
    align-items: center;
}

.desktop-auth .btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-login {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-login:hover {
    background-color: #ffffff;
    color: #ff7700;
}

.btn-register {
    background-color: #ffffff;
    color: #ff7700;
    border: 2px solid #ffffff;
}

.btn-register:hover {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-auth {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #ff7700;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
        box-sizing: border-box;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-links li a {
        width: 100%;
        padding: 14px 20px;
        font-size: 1.05rem;
        background: rgba(255, 255, 255, 0.1);
        border-left: 4px solid rgba(255, 255, 255, 0.5) !important;
        box-sizing: border-box;
    }

    .nav-links li a:hover {
        background: rgba(255, 255, 255, 0.2);
        border-left-width: 8px !important;
        transform: translateX(5px);
    }
    
    .nav-links li a::after {
        display: none !important;
    }
}

.hero {
    background-color: #ff7700;
    padding: 100px 0 50px;
    text-align: center;
    margin-top: 60px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero .cta-btn {
    background-color: #ffffff;
    color: #ff7700;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.games-list, .promo-list, .faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.game, .promo, .faq-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.game-icon, .promo-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ff7700;
}

h2 {
    color: #ff7700;
    margin-bottom: 20px;
}

section {
    padding: 40px 0;
}

section h3 {
    color: #1e293b;
    margin-bottom: 10px;
}

section p {
    color: #64748b;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
    color: #64748b;
}

footer {
    background-color: #ffffff;
    color: #1e293b;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

footer nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 10px 0 0;
    padding: 0;
    flex-wrap: wrap;
}

footer nav ul li a {
    color: #64748b;
    text-decoration: none;
    font-weight: bold;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #ff7700;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.faq-question {
    cursor: pointer;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    color: #64748b;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px;
}

.faq-icon i {
    transition: transform 0.3s ease;
    color: #ff7700;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

table th {
    background-color: #ff7700;
    color: #ffffff;
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

table tr:hover {
    background-color: #f8fafc;
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ff7700;
    padding: 10px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-bar .auth-buttons {
    display: flex;
    gap: 10px;
}

.mobile-bottom-bar .btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn-login {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-register {
    background-color: #ffffff;
    color: #ff7700;
}

.stats-section {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 119, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 119, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 119, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: #ff7700;
    background: rgba(255, 119, 0, 0.1);
    box-shadow: 0 10px 30px rgba(255, 119, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 119, 0, 0.5));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff7700;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 119, 0, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
}

.testimonials-section {
    background-color: #0a0e27;
    padding: 80px 0;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f45 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 119, 0, 0.3);
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff7700;
    text-shadow: 0 0 10px rgba(255, 119, 0, 0.5);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7700 0%, #ff5500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 119, 0, 0.5);
}

.author-name {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.1rem;
}

.author-location {
    color: #ff7700;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-btn {
    background: rgba(255, 119, 0, 0.2);
    border: 2px solid #ff7700;
    color: #ff7700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: #ff7700;
    color: #ffffff;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 119, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff7700;
    box-shadow: 0 0 10px rgba(255, 119, 0, 0.8);
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .desktop-auth {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }

.bonus-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
    border-radius: 15px;
    border: 2px solid #ff7700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 119, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7700, #ff5500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 0.5rem 0;
    color: #ff7700;
    font-size: 1.3rem;
}

.promotion-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 10px;
    border-left: 4px solid #0ea5e9;
}
.games-showcase {
    margin: 3rem 0;
}

.game-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.game-category:nth-child(even) {
    direction: rtl;
}

.game-category:nth-child(even) > * {
    direction: ltr;
}

.game-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
}

.game-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-image-container:hover .game-category-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-image-container:hover .image-overlay {
    opacity: 1;
}

.category-content h3 {
    color: #ff7700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.sportsbook-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sport-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    border: 2px solid #ff7700;
    transition: all 0.3s ease;
}

.sport-feature:hover {
    background: #ff7700;
    color: white;
    transform: translateY(-5px);
}

.sport-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sport-feature h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}
.banking-features {
    margin: 3rem 0;
}

.banking-feature {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.banking-image-container {
    overflow: hidden;
    border-radius: 10px;
    height: 200px;
}

.banking-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banking-icon {
    font-size: 3rem;
    color: #ff7700;
    text-align: center;
    margin-bottom: 1rem;
}

.banking-content h3 {
    color: #ff7700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.mobile-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.mobile-image-container {
    overflow: hidden;
    border-radius: 15px;
    height: 400px;
}

.mobile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
    border-radius: 10px;
}

.mobile-icon {
    font-size: 2rem;
    color: #ff7700;
    flex-shrink: 0;
}

.mobile-feature h3 {
    margin: 0 0 0.25rem 0;
    color: #ff7700;
}
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.support-option {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 15px;
    border: 2px solid #ff7700;
    transition: all 0.3s ease;
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 119, 0, 0.2);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-option h3 {
    color: #ff7700;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}
.final-cta {
    background: linear-gradient(135deg, #ff7700, #ff5500);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
}

.final-cta .section-title {
    color: white;
}

.final-cta .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.final-cta .tagline {
    font-size: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

.btn-secondary {
    background: transparent;
    color: #ff7700;
    border: 2px solid #ff7700;
}

.btn-secondary:hover {
    background: #ff7700;
    color: white;
}
@media (max-width: 768px) {
    .game-category {
        grid-template-columns: 1fr;
    }
    
    .game-category:nth-child(even) {
        direction: ltr;
    }
    
    .mobile-showcase {
        grid-template-columns: 1fr;
    }
    
    .banking-feature {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bonus-package-grid {
        grid-template-columns: 1fr;
    }
    
    .sportsbook-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sportsbook-features {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}
.banner-carousel {
    background-color: #fff;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-slide {
    display: none;
    width: 100%;
}

.banner-slide.active {
    display: block;
}

.banner-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner-prev, .banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 119, 0, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    z-index: 10;
    transition: background-color 0.3s;
}

.banner-prev:hover, .banner-next:hover {
    background-color: rgba(255, 119, 0, 1);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active, .dot:hover {
    background-color: #ff7700;
}
.featured-games {
    margin-top: 3rem;
}

.subsection-title {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.games-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.game-showcase-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.game-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.game-showcase-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.game-info {
    padding: 1rem;
    text-align: center;
}

.game-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #1e293b;
}

.btn-play {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #ff7700;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-play:hover {
    background-color: #e66900;
}
.payment-icon {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
}

.payment-icons-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.payment-icons-grid img {
    height: 50px;
    width: auto;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.payment-icons-grid img:hover {
    filter: grayscale(0%);
}
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.provider-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.provider-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.footer-payment-icon {
    height: 35px;
    width: auto;
    margin: 5px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .banner-prev, .banner-next {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
    
    .games-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .game-showcase-card img {
        height: 150px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }
    
    .provider-logo img {
        max-height: 40px;
    }
    
    .payment-icons-grid {
        gap: 1rem;
    }
    
    .payment-icons-grid img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .games-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.banner-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 10px;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 400px;
}

.banner-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.banner-slide.active {
    display: block;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.banner-prev, .banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 119, 0, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    z-index: 10;
    transition: background-color 0.3s;
}

.banner-prev:hover, .banner-next:hover {
    background-color: rgba(255, 119, 0, 1);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-dots {
    text-align: center;
    padding: 20px 0;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active, .dot:hover {
    background-color: #ff7700;
}

.featured-games {
    margin-top: 3rem;
}

.subsection-title {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.games-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.game-showcase-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.game-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.game-showcase-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.game-info h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #1e293b;
}

.btn-play {
    display: inline-block;
    padding: 8px 20px;
    background-color: #ff7700;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-play:hover {
    background-color: #e66900;
}

.payment-icon {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
}

.payment-icons-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.payment-icons-grid img {
    height: 50px;
    width: auto;
    filter: grayscale(20%);
    transition: filter 0.3s, transform 0.3s;
}

.payment-icons-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    padding: 2rem 0;
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.provider-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.provider-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-payment-icon {
    height: 35px;
    width: auto;
    margin: 5px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .banner-slider {
        height: 250px;
    }
    
    .banner-prev, .banner-next {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .games-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .game-showcase-card img {
        height: 150px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .provider-logo img {
        max-height: 40px;
    }
    
    .payment-icons-grid img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 180px;
    }
    
    .games-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
