/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0E131B;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #181F2B;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.header .container {
    max-width: unset;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #da394f;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #da394f;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 44px;
    justify-content: center;
}

.btn-primary {
    background-color: #da394f;
    color: #fff;
}

.btn-primary:hover {
    background-color: #c73247;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 57, 79, 0.4);
}

.btn-secondary {
    background-color: #1678ff;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #0d5bb8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 120, 255, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #0E131B;
    transform: translateY(-2px);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

section {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Slider Styles */
.slider-section {
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 2rem;
    margin-bottom: 2rem;   
    padding: 0;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-btn:hover {
    background-color: rgba(218, 57, 79, 0.8);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #da394f;
    transform: scale(1.2);
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #0E131B 0%, #1a2332 100%);
    border-radius: 15px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.hero p a:hover {
    text-decoration: underline;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 60px 0;
    text-align: center;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.features p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.features p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.features p a:hover {
    text-decoration: underline;
}

.feature-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Games Overview */
.games-overview {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
}

.games-overview h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.games-overview p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.games-overview p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.games-overview p a:hover {
    text-decoration: underline;
}

.games-table h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background-color: #da394f;
    color: #fff;
    font-weight: 600;
}

td {
    color: #ccc;
}

tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.games-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Mobile App Section */
.mobile-app {
    padding: 60px 0;
    text-align: center;
}

.mobile-app h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.mobile-app p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-app p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.mobile-app p a:hover {
    text-decoration: underline;
}

.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: #da394f;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-item p {
    color: #ccc;
    font-size: 0.9rem;
}

.mobile-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Reviews Section */
.reviews {
    padding: 60px 15px;
    background: linear-gradient(135deg, #0E131B 0%, #1a2332 100%);
    border-radius: 15px;
    margin: 40px 0;
}

.reviews h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
}

.review-item p {
    font-style: italic;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1.1rem;
}

.review-author {
    color: #da394f;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
}

.faq h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    background-color: #da394f;
    color: #fff;
    padding: 20px;
    margin: 0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item h3:hover {
    background-color: #c73247;
}

.faq-item p {
    padding: 20px;
    color: #ccc;
    margin: 0;
}

.faq-item p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.faq-item p a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #da394f 0%, #c73247 100%);
    border-radius: 15px;
    margin: 40px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta p a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta .btn {
    background-color: #fff;
    color: #da394f;
}

.cta .btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: #181F2B;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #da394f;
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 2rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: #da394f;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .features h2,
    .games-overview h2,
    .mobile-app h2,
    .reviews h2,
    .faq h2 {
        font-size: 2rem;
    }
    
    .slider-container {
        height: 350px;
    }
}

@media (max-width: 1380px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        width: 100%;
        left: 0;
        right: 0;
        background-color: #181F2B;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-link {
        padding: 10px 0;
    }

    .nav-link.active::after {
        bottom: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
    }
}

@media (max-width: 768px) {
    .payment-methods {
        justify-content: center;
    }

    
    .header-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons,
    .feature-buttons,
    .games-buttons,
    .mobile-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
 
    
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .features h2,
    .games-overview h2,
    .mobile-app h2,
    .reviews h2,
    .faq h2 {
        font-size: 1.8rem;
    }
    
    .mobile-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 576px) {
    header .btn-outline {
        display: none;
    }
}

@media (max-width: 480px) {

    .header-content {
        flex-wrap: wrap;
    }

    .header-buttons .btn {
        font-size: 13px;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }

    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
    
    .slider-container {
        height: 200px;
    }
    
    .features h2,
    .games-overview h2,
    .mobile-app h2,
    .reviews h2,
    .faq h2 {
        font-size: 1.5rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .table-responsive {
        font-size: 0.8rem;
    }
    
    th, td {
        padding: 10px 8px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #da394f;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.slider-btn:focus,
.dot:focus {
    outline: 2px solid #da394f;
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Casino Images Section Styles */
.casino-images {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
}

.casino-images h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.casino-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.casino-image {
    position: relative;
    transition: transform 0.3s ease;
}

.casino-image:hover {
    
}

.casino-image img {
    border-radius: 15px;
    width: 100%;
    transition: transform 0.3s ease;
}

.casino-image:hover img {
    transform: scale(1.05);
}

.casino-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 20px 20px;
    color: #fff;
    text-align: center;
}

.casino-image .image-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

/* Registration Images Section Styles */
.registration-images {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
}

.registration-images h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.registration-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.registration-image {
    position: relative;
    transition: transform 0.3s ease;
}

.registration-image:hover {
    
}

.registration-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.registration-image:hover img {
    transform: scale(1.05);
}

.registration-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 20px 20px;
    color: #fff;
    text-align: center;
}

.registration-image .image-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

/* Login Info Section Styles */
.login-info {
    padding: 60px 0;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.login-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.login-info p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.login-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.login-features .feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.login-features .feature-item:hover {
    transform: translateY(-5px);
}

.login-features .feature-item i {
    font-size: 2.5rem;
    color: #da394f;
    margin-bottom: 15px;
}

.login-features .feature-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.login-features .feature-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.login-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Auth Section Styles */
.auth-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
}

.auth-container {
    max-width: 600px;
    margin: 0 auto;
}

.auth-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-header p {
    color: #ccc;
    font-size: 1rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #da394f;
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #da394f;
    pointer-events: none;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    padding: 5px;
    z-index: 2;
}

.password-toggle:hover {
    color: #da394f;
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #da394f;
    border-color: #da394f;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.forgot-link {
    color: #da394f;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #c73247;
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-footer p {
    color: #ccc;
    margin: 0;
}

.switch-form {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.switch-form:hover {
    color: #c73247;
    text-decoration: underline;
}

/* Process Steps */
.login-process {
    padding: 60px 0;
    text-align: center;
}

.login-process h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.login-process p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #da394f 0%, #c73247 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-align: center;
}

.step-content p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

.process-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Mobile Login Section */
.mobile-login {
    padding: 60px 0;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.mobile-login h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.mobile-login p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-login p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.mobile-login p a:hover {
    text-decoration: underline;
}

.mobile-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Troubleshooting Section */
.troubleshooting {
    padding: 60px 0;
    text-align: center;
}

.troubleshooting h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.troubleshooting p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.troubleshooting-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
}

.troubleshooting-list li {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.troubleshooting-list strong {
    color: #da394f;
}

.troubleshooting-table h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

/* Login Benefits Section */
.login-benefits {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.login-benefits h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.login-benefits p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.login-benefits p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.login-benefits p a:hover {
    text-decoration: underline;
}

.benefits-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsive Design for Forms */
@media (max-width: 768px) {
    .auth-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .process-buttons,
    .mobile-buttons,
    .benefits-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .troubleshooting-list {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .auth-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 40px 12px 12px;
        font-size: 14px;
    }
    
    .btn-full {
        padding: 12px;
        font-size: 14px;
    }
    
    .step {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* App Page Styles */
.app-images {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
}

.app-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.app-image {
    position: relative;
    transition: transform 0.3s ease;
}

.app-image:hover {
    
}

.app-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.app-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: #fff;
}

.image-overlay h3 {
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
}

.download-process {
    padding: 60px 0;
    text-align: center;
}

.download-process h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.download-process p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.app-features {
    padding: 60px 15px ;
    background: linear-gradient(135deg, #0E131B 0%, #1a2332 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.app-features h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.app-features p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.app-features p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.app-features p a:hover {
    text-decoration: underline;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #da394f;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.app-bonuses {
    padding: 60px 0;
    text-align: center;
}

.app-bonuses h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.app-bonuses p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonuses-table h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.bonus-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.why-play {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.why-play h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.why-play p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-play p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.why-play p a:hover {
    text-decoration: underline;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.why-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-item i {
    font-size: 2.5rem;
    color: #da394f;
    margin-bottom: 15px;
}

.why-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.why-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.why-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsive Design for App Page */
@media (max-width: 768px) {
    .app-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .app-image img {
        height: 200px;
    }
    
    .download-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .why-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .download-buttons,
    .bonus-buttons,
    .why-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .app-image img {
        height: 150px;
    }
    
    .image-overlay {
        padding: 20px 15px 15px;
    }
    
    .image-overlay h3 {
        font-size: 1rem;
    }
    
    .feature-card,
    .why-item {
        padding: 20px 15px;
    }
    
    .feature-card i,
    .why-item i {
        font-size: 2rem;
    }
}

/* Games Page Styles */
.games-images {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
}

.games-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-image {
    position: relative;
    transition: transform 0.3s ease;
}

.game-image:hover {
    
}

.game-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.game-image:hover img {
    transform: scale(1.05);
}

.game-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 20px 20px;
    color: #fff;
    text-align: center;
}

.game-image .image-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.games-collection {
    padding: 60px 0;
    text-align: center;
}

.games-collection h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.games-collection p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.games-collection p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.games-collection p a:hover {
    text-decoration: underline;
}

.collection-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.collection-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.popular-games {
    padding: 60px 0;
    background: linear-gradient(135deg, #0E131B 0%, #1a2332 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.popular-games h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.popular-games p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.popular-games p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.popular-games p a:hover {
    text-decoration: underline;
}

.games-table h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.mobile-games {
    padding: 60px 0;
    text-align: center;
}

.mobile-games h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.mobile-games p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-games p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.mobile-games p a:hover {
    text-decoration: underline;
}

.mobile-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.why-choose {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.why-choose h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.why-choose p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.why-choose p a:hover {
    text-decoration: underline;
}

.choose-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.choose-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.choose-item:hover {
    transform: translateY(-5px);
}

.choose-item i {
    font-size: 2.5rem;
    color: #da394f;
    margin-bottom: 15px;
}

.choose-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.choose-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.choose-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsive Design for Games Page */
@media (max-width: 768px) {
    .games-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    
    .collection-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .choose-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .collection-buttons,
    .mobile-buttons,
    .choose-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .game-image img {
        height: 200px;
    }
    
    .game-image .image-overlay {
        padding: 30px 15px 15px;
    }
    
    .game-image .image-overlay h3 {
        font-size: 1.1rem;
    }
    
    .choose-item {
        padding: 20px 15px;
    }
    
    .choose-item i {
        font-size: 2rem;
    }
}

/* Slots Page Styles */
.slots-images {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
}

.slots-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.slot-image {
    position: relative;
    transition: transform 0.3s ease;
}

.slot-image:hover {
    
}

.slot-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.slot-image:hover img {
    transform: scale(1.05);
}

.slot-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 20px 20px;
    color: #fff;
    text-align: center;
}

.slot-image .image-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.discover-slots {
    padding: 60px 0;
    text-align: center;
}

.discover-slots h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.discover-slots p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.discover-slots p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.discover-slots p a:hover {
    text-decoration: underline;
}

.slots-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.category-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item i {
    font-size: 3rem;
    color: #da394f;
    margin-bottom: 15px;
}

.category-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.category-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.discover-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.top-providers {
    padding: 60px 0;
    background: linear-gradient(135deg, #0E131B 0%, #1a2332 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.top-providers h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.top-providers p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.top-providers p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.top-providers p a:hover {
    text-decoration: underline;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.provider-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.provider-item:hover {
    transform: translateY(-5px);
}

.provider-item h3 {
    color: #da394f;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.provider-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.how-to-win {
    padding: 60px 0;
    text-align: center;
}

.how-to-win h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.how-to-win p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.winning-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.tip-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
}

.tip-item i {
    font-size: 2.5rem;
    color: #da394f;
    margin-bottom: 15px;
}

.tip-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tip-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.top-slots-table {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.top-slots-table h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.table-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.mobile-play {
    padding: 60px 0;
    text-align: center;
}

.mobile-play h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.mobile-play p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-play p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.mobile-play p a:hover {
    text-decoration: underline;
}

.mobile-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsive Design for Slots Page */
@media (max-width: 768px) {
    .slots-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .slots-categories {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .winning-tips {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .discover-buttons,
    .table-buttons,
    .mobile-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .slot-image img {
        height: 200px;
    }
    
    .slot-image .image-overlay {
        padding: 30px 15px 15px;
    }
    
    .slot-image .image-overlay h3 {
        font-size: 1.1rem;
    }
    
    .category-item,
    .provider-item,
    .tip-item {
        padding: 20px 15px;
    }
    
    .category-item i,
    .tip-item i {
        font-size: 2rem;
    }
}

/* Bonuses Page Styles */
.bonus-images {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
}

.bonus-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-image {
    position: relative;
    transition: transform 0.3s ease;
}

.bonus-image:hover {
    
}

.bonus-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.bonus-image:hover img {
    transform: scale(1.05);
}

.bonus-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 20px 20px;
    color: #fff;
    text-align: center;
}

.bonus-image .image-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.bonus-types {
    padding: 60px 0;
    text-align: center;
}

.bonus-types h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.bonus-types p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.bonus-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.bonus-category:hover {
    transform: translateY(-5px);
}

.bonus-category i {
    font-size: 3rem;
    color: #da394f;
    margin-bottom: 15px;
}

.bonus-category h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.bonus-category p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.bonus-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.how-to-claim {
    padding: 60px 0;
    background: linear-gradient(135deg, #0E131B 0%, #1a2332 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.how-to-claim h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.how-to-claim p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.how-to-claim p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.how-to-claim p a:hover {
    text-decoration: underline;
}

.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.bonus-terms {
    padding: 60px 0;
    text-align: center;
}

.bonus-terms h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.bonus-terms p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.terms-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.tip-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
}

.tip-item i {
    font-size: 2.5rem;
    color: #da394f;
    margin-bottom: 15px;
}

.tip-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tip-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.top-bonuses {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.top-bonuses h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.table-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.why-use-bonus {
    padding: 60px 0;
    text-align: center;
}

.why-use-bonus h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.why-use-bonus p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-use-bonus p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.why-use-bonus p a:hover {
    text-decoration: underline;
}

.bonus-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #da394f;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.benefit-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsive Design for Bonuses Page */
@media (max-width: 768px) {
    .bonus-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    
    .bonus-categories {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .claim-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .terms-tips {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .bonus-benefits {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .bonus-buttons,
    .table-buttons,
    .benefit-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .bonus-image img {
        height: 200px;
    }
    
    .bonus-image .image-overlay {
        padding: 30px 15px 15px;
    }
    
    .bonus-image .image-overlay h3 {
        font-size: 1.1rem;
    }
    
    .bonus-category,
    .tip-item,
    .benefit-item {
        padding: 20px 15px;
    }
    
    .bonus-category i,
    .tip-item i,
    .benefit-item i {
        font-size: 2rem;
    }
}

/* Betting Page Styles */
.betting-images {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
}

.betting-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.betting-image {
    position: relative;
    transition: transform 0.3s ease;
}

.betting-image:hover {
    
}

.betting-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.betting-image:hover img {
    transform: scale(1.05);
}

.betting-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 20px 20px;
    color: #fff;
    text-align: center;
}

.betting-image .image-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.how-to-start {
    padding: 60px 0;
    text-align: center;
}

.how-to-start h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.how-to-start p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.start-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.start-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cricket-betting {
    padding: 60px 0;
    background: linear-gradient(135deg, #0E131B 0%, #1a2332 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.cricket-betting h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.cricket-betting p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cricket-betting p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.cricket-betting p a:hover {
    text-decoration: underline;
}

.cricket-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.betting-strategies {
    padding: 60px 0;
    text-align: center;
}

.betting-strategies h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.betting-strategies p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.strategy-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.betting-markets {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.betting-markets h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.markets-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.why-bet {
    padding: 60px 0;
    text-align: center;
}

.why-bet h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.why-bet p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-bet p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.why-bet p a:hover {
    text-decoration: underline;
}

.bet-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #da394f;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.bet-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsive Design for Betting Page */
@media (max-width: 768px) {
    .betting-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    
    .start-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cricket-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .strategy-tips {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .bet-benefits {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .start-buttons,
    .markets-buttons,
    .bet-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .betting-image img {
        height: 200px;
    }
    
    .betting-image .image-overlay {
        padding: 30px 15px 15px;
    }
    
    .betting-image .image-overlay h3 {
        font-size: 1.1rem;
    }
    
    .cricket-features,
    .strategy-tips,
    .bet-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 20px 15px;
    }
    
    .benefit-item i {
        font-size: 2rem;
    }
}

/* Aviator Page Styles */
.aviator-images {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
}

.aviator-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.aviator-image {
    position: relative;
    transition: transform 0.3s ease;
}

.aviator-image:hover {
    
}

.aviator-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.aviator-image:hover img {
    transform: scale(1.05);
}

.aviator-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 20px 20px;
    color: #fff;
    text-align: center;
}

.aviator-image .image-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.how-to-play {
    padding: 60px 0;
    text-align: center;
}

.how-to-play h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.how-to-play p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.play-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.play-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.aviator-features {
    padding: 60px 0;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.aviator-features h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.aviator-features p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.aviator-features p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.aviator-features p a:hover {
    text-decoration: underline;
}

.aviator-strategies {
    padding: 60px 0;
    text-align: center;
}

.aviator-strategies h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.aviator-strategies p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.strategies-table {
    margin: 40px 0;
}

.strategies-table h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.strategy-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.why-choose-aviator {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.why-choose-aviator h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.why-choose-aviator p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-aviator p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.why-choose-aviator p a:hover {
    text-decoration: underline;
}

.choose-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.choose-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.choose-item:hover {
    transform: translateY(-5px);
}

.choose-item i {
    font-size: 2.5rem;
    color: #da394f;
    margin-bottom: 15px;
}

.choose-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.choose-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.choose-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsive Design for Aviator Page */
@media (max-width: 768px) {
    .aviator-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
  
    
    .play-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .choose-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .play-buttons,
    .strategy-buttons,
    .choose-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .aviator-image img {
        height: 200px;
    }
    
    .aviator-image .image-overlay {
        padding: 30px 15px 15px;
    }
    
    .aviator-image .image-overlay h3 {
        font-size: 1.1rem;
    }
    
    .choose-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .choose-item {
        padding: 20px 15px;
    }
    
    .choose-item i {
        font-size: 2rem;
    }
}

/* Live Casino Page Styles */
.live-casino-images {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
}

.live-casino-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.live-casino-image {
    position: relative;
    transition: transform 0.3s ease;
}

.live-casino-image:hover {
    
}

.live-casino-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.live-casino-image:hover img {
    transform: scale(1.05);
}

.live-casino-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 20px 20px;
    color: #fff;
    text-align: center;
}

.live-casino-image .image-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.how-live-casino-works {
    padding: 60px 0;
    text-align: center;
}

.how-live-casino-works h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.how-live-casino-works p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.live-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.popular-live-games {
    padding: 60px 0;
    background: linear-gradient(135deg, #0E131B 0%, #1a2332 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.popular-live-games h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.popular-live-games p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.popular-live-games p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.popular-live-games p a:hover {
    text-decoration: underline;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.game-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.game-item:hover {
    transform: translateY(-5px);
}

.game-item i {
    font-size: 3rem;
    color: #da394f;
    margin-bottom: 15px;
}

.game-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.game-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.live-casino-bonuses {
    padding: 60px 0;
    text-align: center;
}

.live-casino-bonuses h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.live-casino-bonuses p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonuses-table h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.bonus-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.why-choose-live-casino {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0E131B 100%);
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.why-choose-live-casino h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.why-choose-live-casino p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-live-casino p a {
    color: #da394f;
    text-decoration: none;
    font-weight: 600;
}

.why-choose-live-casino p a:hover {
    text-decoration: underline;
}

.choose-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.choose-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.choose-item:hover {
    transform: translateY(-5px);
}

.choose-item i {
    font-size: 2.5rem;
    color: #da394f;
    margin-bottom: 15px;
}

.choose-item h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.choose-item p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.choose-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Responsive Design for Live Casino Page */
@media (max-width: 768px) {
    .live-casino-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
 
    
    .live-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .choose-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .live-buttons,
    .bonus-buttons,
    .choose-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .live-casino-image img {
        height: 200px;
    }
    
    .live-casino-image .image-overlay {
        padding: 30px 15px 15px;
    }
    
    .live-casino-image .image-overlay h3 {
        font-size: 1.1rem;
    }
    
    .live-features,
    .games-grid,
    .choose-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .game-item,
    .choose-item {
        padding: 20px 15px;
    }
    
    .game-item i,
    .choose-item i {
        font-size: 2rem;
    }
}

/* Responsive Design for Casino and Registration Images */
@media (max-width: 768px) {
    .casino-gallery,
    .registration-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    
    .login-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .login-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .casino-image img,
    .registration-image img {
        height: 200px;
    }
    
    .casino-image .image-overlay,
    .registration-image .image-overlay {
        padding: 30px 15px 15px;
    }
    
    .casino-image .image-overlay h3,
    .registration-image .image-overlay h3 {
        font-size: 1.1rem;
    }
    
    .login-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .login-features .feature-item {
        padding: 20px 15px;
    }
    
    .login-features .feature-item i {
        font-size: 2rem;
    }
}