
.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;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(40, 40);
        opacity: 0;
    }
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(255, 107, 0, 0.8),
        0 0 50px rgba(255, 107, 0, 0.4),
        0 0 70px rgba(255, 107, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, 
        #FF6B00 0%, 
        #FF8F00 25%, 
        #FFAA00 50%, 
        #FFD700 75%, 
        #FFFF00 100%);
}

.btn-cta:active {
    transform: translateY(-1px);
}

.btn-large {
    padding: 22px 52px;
    font-size: 1.4rem;
    border-radius: 12px;
}


@media (max-width: 768px) {
    .btn-cta {
        padding: 16px 32px;
        font-size: 1.1rem;
        width: 90%;
        max-width: 300px;
        display: block;
        margin: 20px auto;
        text-align: center;
    }
    
    .btn-large {
        padding: 20px 40px;
        font-size: 1.25rem;
    }
    
    
    .btn-cta {
        box-shadow: 
            0 0 15px rgba(255, 107, 0, 0.5),
            0 0 25px rgba(255, 107, 0, 0.2);
    }
}
@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: #ffffff;
    background-color: #0f1419;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

header {
    background-color: #ff8c00;
    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: #ff8c00;
}

.btn-register {
    background-color: #ffffff;
    color: #ff8c00;
    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: #ff8c00;
        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: #ff8c00;
    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: #000000;
    color: #ffffff;
    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: #1a1f3a;
    padding: 20px;
    border-radius: 5px;
}

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

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

section {
    padding: 40px 0;
}

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

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

ul li {
    margin-bottom: 10px;
}

footer {
    background-color: #0a0e1a;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

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: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

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

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

.faq-question {
    cursor: pointer;
    padding: 15px;
    background-color: #1a1f3a;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #1a1f3a;
}

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

table td {
    padding: 15px;
    border-bottom: 1px solid #2a2f45;
}

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

.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: #ff8c00;
}

.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, 140, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 140, 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, 140, 0, 0.3);
    transition: all 0.3s ease;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 140, 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, 140, 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: #ff8c00;
    text-shadow: 0 0 10px rgba(255, 140, 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, #ff8c00 0%, #ff6600 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, 140, 0, 0.5);
}

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

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

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

.testimonial-btn {
    background: rgba(255, 140, 0, 0.2);
    border: 2px solid #ff8c00;
    color: #ff8c00;
    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: #ff8c00;
    color: #ffffff;
    transform: scale(1.1);
}

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

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

.dot.active {
    background: #ff8c00;
    box-shadow: 0 0 10px rgba(255, 140, 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;
    }
}


.quick-info-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card h3 {
    color: #ff8c00;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card a {
    color: #ff8c00;
    text-decoration: underline;
}

.info-card a:hover {
    color: #ffb84d;
}
.key-facts-section {
    padding: 60px 0;
    background: #0f1419;
}

.facts-table {
    margin-top: 40px;
    overflow-x: auto;
}

.facts-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    overflow: hidden;
}

.facts-table th,
.facts-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.facts-table th {
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    font-weight: 600;
}

.facts-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.facts-table tr:last-child td {
    border-bottom: none;
}
.licensing-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a1f2e 100%);
}

.licensing-content {
    margin-top: 40px;
}

.licensing-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.section-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.bonus-showcase {
    text-align: center;
    margin: 40px 0;
}

.showcase-image {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.welcome-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.bonus-tier {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 140, 0, 0.3);
    transition: transform 0.3s ease;
}

.bonus-tier:hover {
    transform: translateY(-5px);
    border-color: #ff8c00;
}

.bonus-percent {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff8c00;
    margin: 15px 0;
}

.bonus-details {
    background: rgba(255, 140, 0, 0.1);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.ongoing-promotions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff8c00;
}

.vip-programme {
    margin-top: 40px;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.vip-tier {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.vip-tier h4 {
    color: #ff8c00;
    margin-bottom: 15px;
}

.games-intro {
    margin: 40px 0;
}

.games-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.games-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.payments-content {
    margin: 40px 0;
}

.payment-methods-list {
    margin-bottom: 40px;
}

.payment-methods-list ul {
    list-style: none;
    padding: 0;
}

.payment-methods-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    border-left: 4px solid #ff8c00;
}

.payment-table {
    margin: 40px 0;
    overflow-x: auto;
}

.payment-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    overflow: hidden;
}

.payment-table th,
.payment-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.payment-table th {
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    font-weight: 600;
}

.payment-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.fee-structure {
    background: rgba(255, 140, 0, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.fee-structure ul {
    list-style: none;
    padding: 0;
}

.fee-structure li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fee-structure li:last-child {
    border-bottom: none;
}

.mobile-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
    text-align: center;
}
.support-section {
    padding: 60px 0;
    background: #0f1419;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.support-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.terms-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a1f2e 100%);
}

.terms-content {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.terms-content p {
    margin-bottom: 20px;
}

.terms-content p:last-child {
    margin-bottom: 0;
}
.features-section {
    padding: 60px 0;
    background: #0f1419;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #ff8c00;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 20px;
}

.conclusion-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
    text-align: center;
}

.conclusion-content {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.conclusion-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.responsible-gaming {
    background: rgba(255, 140, 0, 0.1);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.responsible-gaming a {
    color: #ff8c00;
    text-decoration: underline;
}

.responsible-gaming a:hover {
    color: #ffb84d;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}
.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}
.featured-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.featured-game-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-game-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

.game-card .game-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
}

.payment-icon {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.payment-icon:hover {
    filter: brightness(1) invert(0);
    transform: scale(1.1);
}
.footer-payment-icon {
    height: 40px;
    width: auto;
    margin: 5px;
    filter: brightness(0) invert(1);
}
.providers-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a1f2e 100%);
}

.providers-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.providers-section > .container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #b8c5d6;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.provider-logo {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    transition: all 0.3s ease;
}

.provider-logo:hover {
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
}

.provider-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.provider-logo:hover img {
    filter: brightness(1) invert(0);
}
@media (max-width: 768px) {
    .licensing-text,
    .games-showcase,
    .support-content {
        grid-template-columns: 1fr;
    }
    
    .welcome-bonus-grid,
    .ongoing-promotions,
    .vip-tiers,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-table {
        font-size: 0.8rem;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 8px 10px;
    }
    
    .showcase-image {
        height: 250px;
    }
    
    .facts-table {
        font-size: 0.9rem;
    }
    
    .conclusion-content {
        padding: 0 20px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .featured-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .featured-game-img {
        height: 180px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .payment-icons {
        gap: 15px;
    }
    
    .payment-icon {
        height: 40px;
    }
}