/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #171717;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: #fff;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
}

h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

p {
    margin-bottom: 1rem;
    color: #ccc;
}

a {
    color: #ff2d2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff6b6b;
}

/* Buttons */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(180deg, #fe0000, #ae0000);
    color: #fff;
    box-shadow: 0 4px 15px rgba(254, 0, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #ff1a1a, #c40000);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 20px rgba(254, 0, 0, 0.4);
}

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

header .container {
    max-width: unset;
}

.btn-secondary:hover {
    background: #ff2d2d;
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-height: 56px;
}

/* Header */
.header {
    background: #520000;
    padding: 1rem 0;
    position: sticky;
    top: 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;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-list a:hover,
.nav-list a.active {
    color: #ff2d2d;
    background: rgba(255, 45, 45, 0.1);
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Slider */
.slider-section {
    margin-top: 2rem;

    margin-bottom: 2rem;
}

.swiper-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.main-slider {
    width: 100%;
}

.swiper-slide {
    height: auto !important;
}

.swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.swiper-pagination-bullet {
    background: #ff2d2d !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ff2d2d !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    backdrop-filter: blur(10px) !important;
    justify-content: center !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 24px !important;
}

/* Mobile Slider Adjustments */
@media (max-width: 768px) {
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important; /* Hide arrows on mobile for better UX */
    }
    
    .swiper-pagination {
        bottom: 0 !important;
    }
    
    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        margin: 0 4px !important;
    }
}

.notice-marquee-container {
    width: 100%;
    background: 0 4px 15px rgba(254, 0, 0, 0.3);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
    overflow: hidden;
}

.notice-marquee-content {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
}

.notice-main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.notice-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.speaker {
    position: relative;
    width: 24px;
    height: 20px;
    background: #fbbf24;
    border-radius: 4px 0 0 4px;
    display: inline-block;
}

.speaker::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 4px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #fbbf24;
}

.speaker::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 2px;
    width: 12px;
    height: 16px;
    border: 2px solid #fbbf24;
    border-left: none;
    border-radius: 0 50% 50% 0;
}

.marquee_box {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.custom-marquee {
    height: 100%;
    display: flex;
    align-items: center;
    animation: marquee 30s linear infinite;
}

.custom-marquee:hover {
    animation-play-state: paused;
}

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

.notice_list {
    list-style: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 20px;
}

.notice_list li {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-right: 50px;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.notice_list li:last-child {
    margin-right: 0;
}

/* VIP badge styling */
.vip-badge {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .notice-marquee-container {
        border-radius: 6px;
    }
    
    .notice-marquee-content {
        height: 50px;
    }
    
    .notice-icon {
        width: 50px;
        height: 50px;
    }
    
    .speaker {
        width: 20px;
        height: 16px;
    }
    
    .notice_list li {
        font-size: 12px;
        margin-right: 30px;
    }
    
    .vip-badge {
        font-size: 10px;
        padding: 3px 8px;
        margin-left: 15px;
    }
}


/* Main Content */
.main-content {
    padding: 2rem 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    margin-bottom: 3rem;
    border-radius: 12px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: #ff2d2d;
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: #fff;
}

/* CTA Buttons */
.cta-buttons {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-buttons .btn {
    margin: 0 0.5rem;
}

/* Games Table */
.games-table {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.games-table h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #3a3a3a;
}

th {
    background: #ff2d2d;
    color: #fff;
    font-weight: bold;
}

td {
    color: #ccc;
}

tr:hover {
    background: #3a3a3a;
}

/* App Section */
.app-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    margin: 3rem 0;
    border-radius: 12px;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-text h2 {
    margin-bottom: 1.5rem;
}

.app-text p {
    margin-bottom: 1.5rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Related Offers */
.related-offers-section {
    text-align: center;
    padding: 3rem 0;
}

.final-cta {
    margin-top: 3rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background: #2a2a2a;
    border-radius: 12px;
    margin: 3rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 8px;
    border-left: 4px solid #ff2d2d;
}

.faq-item h3 {
    color: #ff2d2d;
    margin-bottom: 1rem;
}

.responsible-gaming {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 8px;
}

.responsible-gaming p {
    color: #ff6b6b;
    margin: 0;
}

/* Footer */
.footer {
    background: #520000;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ff2d2d;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    color: #ff2d2d;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ff2d2d;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-image {
        order: -1;
    }
}

@media (max-width: 1440px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 1rem;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-list a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #3a3a3a;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-buttons {
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    
    .header-buttons .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 0.5rem auto;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .app-section {
        padding: 2rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-methods,
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .games-table {
        padding: 1rem;
    }
    
    th, td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.feature-item:hover {
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.2);
}

.btn:hover {
    box-shadow: 0 8px 25px rgba(255, 45, 45, 0.3);
}

/* Focus States for Accessibility */
.btn:focus,
.nav-list a:focus {
    outline: 2px solid #ff2d2d;
    outline-offset: 2px;
}

/* Login Page Specific Styles */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff2d2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.login-info {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
}

.mobile-login-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    margin: 3rem 0;
    border-radius: 12px;
}

.mobile-login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-login-text h2 {
    margin-bottom: 1.5rem;
}

.mobile-login-text p {
    margin-bottom: 1.5rem;
}

.mobile-login-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mobile-login-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.troubleshooting-section {
    padding: 3rem 0;
}

.troubleshooting-table {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.troubleshooting-note {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 8px;
    border-left: 4px solid #ff2d2d;
}

.why-login-section {
    padding: 3rem 0;
    background: #2a2a2a;
    border-radius: 12px;
    margin: 3rem 0;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #ff2d2d;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.traffic-insight {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 8px;
    border-left: 4px solid #ff2d2d;
}

/* Responsive adjustments for login page */
@media (max-width: 768px) {
    .mobile-login-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-login-image {
        order: -1;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .login-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mobile-login-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-login-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* APP Page Specific Styles */
.download-section {
    padding: 3rem 0;
}

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

.download-step {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.download-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #ff2d2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.download-step h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.android-note {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 8px;
    border-left: 4px solid #ff2d2d;
}

.bonuses-section {
    padding: 3rem 0;
    background: #2a2a2a;
    border-radius: 12px;
    margin: 3rem 0;
}

.bonuses-table {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.bonuses-table h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.why-play-section {
    padding: 3rem 0;
}

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

.app-benefit {
    text-align: center;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.app-benefit:hover {
    transform: translateY(-3px);
}

.app-benefit i {
    font-size: 2.5rem;
    color: #ff2d2d;
    margin-bottom: 1rem;
}

.app-benefit h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.gambling-insight,
.traffic-insight {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 8px;
    border-left: 4px solid #ff2d2d;
}

.reviews-section {
    padding: 3rem 0;
    background: #2a2a2a;
    border-radius: 12px;
    margin: 3rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-3px);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-item p {
    font-style: italic;
    color: #ccc;
}

.reviews-summary {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 8px;
}

.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    margin: 3rem 0;
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Responsive adjustments for APP page */
@media (max-width: 768px) {
    .download-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .app-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Games Page Specific Styles */
.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-category {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: #ff2d2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
}

.game-category h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.games-info {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
}

.popular-games-section {
    padding: 3rem 0;
    background: #2a2a2a;
    border-radius: 12px;
    margin: 3rem 0;
}

.games-description {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 8px;
}

.mobile-gaming-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    margin: 3rem 0;
    border-radius: 12px;
}

.mobile-gaming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-gaming-text h2 {
    margin-bottom: 1.5rem;
}

.mobile-gaming-text p {
    margin-bottom: 1.5rem;
}

.app-features {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.app-features li {
    padding: 0.5rem 0;
    color: #ccc;
    position: relative;
    padding-left: 2rem;
}

.app-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff2d2d;
    font-weight: bold;
}

.mobile-gaming-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mobile-gaming-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.why-choose-games-section {
    padding: 3rem 0;
}

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

.games-benefit {
    text-align: center;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.games-benefit:hover {
    transform: translateY(-3px);
}

.games-benefit i {
    font-size: 2.5rem;
    color: #ff2d2d;
    margin-bottom: 1rem;
}

.games-benefit h3 {
    margin-bottom: 1rem;
    color: #fff;
}

/* Responsive adjustments for Games page */
@media (max-width: 768px) {
    .games-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mobile-gaming-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-gaming-image {
        order: -1;
    }
    
    .games-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mobile-gaming-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-gaming-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* Slots Page Specific Styles */
.discover-slots-section {
    padding: 3rem 0;
}

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

.slots-feature {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.slots-feature:hover {
    transform: translateY(-5px);
}

.slots-feature i {
    font-size: 3rem;
    color: #ff2d2d;
    margin-bottom: 1rem;
}

.slots-feature h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.top-slots-list {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.top-slots-list h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.slots-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.slots-list li {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    color: #ff2d2d;
    font-weight: bold;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.slots-list li:hover {
    border-color: #ff2d2d;
    transform: translateY(-2px);
}

.providers-section {
    padding: 3rem 0;
    background: #2a2a2a;
    border-radius: 12px;
    margin: 3rem 0;
}

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

.provider-item {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.provider-item:hover {
    transform: translateY(-3px);
}

.provider-item h3 {
    margin-bottom: 1rem;
    color: #ff2d2d;
}

.how-to-win-section {
    padding: 3rem 0;
}

.slots-table {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.slots-table h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.mobile-slots-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    margin: 3rem 0;
    border-radius: 12px;
}

.mobile-slots-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-slots-text h2 {
    margin-bottom: 1.5rem;
}

.mobile-slots-text p {
    margin-bottom: 1.5rem;
}

.mobile-slots-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mobile-slots-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for Slots page */
@media (max-width: 768px) {
    .slots-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mobile-slots-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-slots-image {
        order: -1;
    }
    
    .slots-list {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mobile-slots-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-slots-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Bonus Page Specific Styles */
.bonus-types-section {
    padding: 3rem 0;
}

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

.bonus-type {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.bonus-type:hover {
    transform: translateY(-5px);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: #ff2d2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
}

.bonus-type h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.bonus-benefits {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
}

.claim-section {
    padding: 3rem 0;
    background: #2a2a2a;
    border-radius: 12px;
    margin: 3rem 0;
}

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

.claim-step {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.claim-step:hover {
    transform: translateY(-3px);
}

.claim-step .step-number {
    width: 60px;
    height: 60px;
    background: #ff2d2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.claim-step h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.expert-review {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 8px;
    border-left: 4px solid #ff2d2d;
}

.bonus-terms-section {
    padding: 3rem 0;
}

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

.term-item {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.term-item:hover {
    transform: translateY(-3px);
}

.term-item i {
    font-size: 2.5rem;
    color: #ff2d2d;
    margin-bottom: 1rem;
}

.term-item h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.bonuses-table {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.bonuses-table h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.why-bonus-section {
    padding: 3rem 0;
    background: #2a2a2a;
    border-radius: 12px;
    margin: 3rem 0;
}

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

.advantage-item {
    text-align: center;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-3px);
}

.advantage-item i {
    font-size: 2.5rem;
    color: #ff2d2d;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    margin-bottom: 1rem;
    color: #fff;
}

/* Responsive adjustments for Bonus page */
@media (max-width: 768px) {
    .bonus-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .claim-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bonus-advantages {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bonus-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* Betting Page Specific Styles */
.how-to-start-section {
    padding: 3rem 0;
}

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

.betting-step {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.betting-step:hover {
    transform: translateY(-5px);
}

.betting-step .step-icon {
    width: 80px;
    height: 80px;
    background: #ff2d2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.betting-step h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.betting-features {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 12px;
}

.cricket-betting-section {
    padding: 3rem 0;
    background: #2a2a2a;
    border-radius: 12px;
    margin: 3rem 0;
}

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

.cricket-feature {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.cricket-feature:hover {
    transform: translateY(-3px);
}

.cricket-feature i {
    font-size: 2.5rem;
    color: #ff2d2d;
    margin-bottom: 1rem;
}

.cricket-feature h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.strategies-section {
    padding: 3rem 0;
}

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

.strategy-item {
    text-align: center;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-3px);
}

.strategy-item i {
    font-size: 2.5rem;
    color: #ff2d2d;
    margin-bottom: 1rem;
}

.strategy-item h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.markets-section {
    padding: 3rem 0;
    background: #2a2a2a;
    border-radius: 12px;
    margin: 3rem 0;
}

.markets-table {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.why-bet-section {
    padding: 3rem 0;
}

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

.betting-advantages .advantage-item {
    text-align: center;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.betting-advantages .advantage-item:hover {
    transform: translateY(-3px);
}

.betting-advantages .advantage-item i {
    font-size: 2.5rem;
    color: #ff2d2d;
    margin-bottom: 1rem;
}

.betting-advantages .advantage-item h3 {
    margin-bottom: 1rem;
    color: #fff;
}

/* Responsive adjustments for Betting page */
@media (max-width: 768px) {
    .betting-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cricket-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .betting-advantages {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .betting-step .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-buttons,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .main-content {
        padding: 0;
    }
}

/* Aviator Page Specific Styles */
.how-to-play-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.05), rgba(255, 45, 45, 0.02));
}

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

.game-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 45, 45, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.game-step .step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff2d2d, #ff0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-step .step-icon i {
    font-size: 2rem;
    color: #fff;
}

.game-step h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.game-step p {
    color: #ccc;
    font-size: 0.95rem;
}

.game-description {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 4px solid #ff2d2d;
}

.game-description p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.aviator-feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 45, 45, 0.15);
    transition: all 0.3s ease;
}

.aviator-feature:hover {
    background: rgba(255, 45, 45, 0.1);
    border-color: #ff2d2d;
    transform: translateY(-3px);
}

.aviator-feature i {
    font-size: 3rem;
    color: #ff2d2d;
    margin-bottom: 1.5rem;
}

.aviator-feature h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.aviator-feature p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.strategies-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.strategies-table {
    margin: 3rem 0;
}

.strategies-table h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.strategy-note {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 45, 45, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ff2d2d;
}

.strategy-note p {
    color: #ddd;
    font-size: 1rem;
    font-style: italic;
}

.why-choose-aviator-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.03), rgba(255, 45, 45, 0.01));
}

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

.aviator-benefit {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 45, 45, 0.15);
    transition: all 0.3s ease;
}

.aviator-benefit:hover {
    background: rgba(255, 45, 45, 0.1);
    border-color: #ff2d2d;
    transform: translateY(-3px);
}

.aviator-benefit i {
    font-size: 3rem;
    color: #ff2d2d;
    margin-bottom: 1.5rem;
}

.aviator-benefit h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.aviator-benefit p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments for Aviator page */
@media (max-width: 768px) {
    .game-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .game-step {
        padding: 1.5rem;
    }
    
    .game-step .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .game-step .step-icon i {
        font-size: 1.5rem;
    }
    
    .aviator-features,
    .aviator-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .aviator-feature,
    .aviator-benefit {
        padding: 1.5rem;
    }
    
    .aviator-feature i,
    .aviator-benefit i {
        font-size: 2.5rem;
    }
    
    .strategies-table {
        margin: 2rem 0;
    }
    
    .strategy-note {
        margin: 1.5rem 0;
        padding: 1rem;
    }
}

/* Live Casino Page Specific Styles */
.live-games-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.05), rgba(255, 45, 45, 0.02));
}

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

.live-game-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 45, 45, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.live-game-item .game-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff2d2d, #ff0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-game-item .game-icon i {
    font-size: 2rem;
    color: #fff;
}

.live-game-item h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.live-game-item p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.game-features span {
    background: rgba(255, 45, 45, 0.2);
    color: #ff2d2d;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 45, 45, 0.3);
}

.live-features-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.live-feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 45, 45, 0.15);
    transition: all 0.3s ease;
}

.live-feature:hover {
    background: rgba(255, 45, 45, 0.1);
    border-color: #ff2d2d;
    transform: translateY(-3px);
}

.live-feature i {
    font-size: 3rem;
    color: #ff2d2d;
    margin-bottom: 1.5rem;
}

.live-feature h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.live-feature p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.providers-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.03), rgba(255, 45, 45, 0.01));
}

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

.provider-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 45, 45, 0.15);
    transition: all 0.3s ease;
}

.provider-item:hover {
    background: rgba(255, 45, 45, 0.1);
    border-color: #ff2d2d;
    transform: translateY(-3px);
}

.provider-item .provider-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff2d2d, #ff0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-item .provider-logo i {
    font-size: 2rem;
    color: #fff;
}

.provider-item h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.provider-item p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.provider-games {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.provider-games span {
    background: rgba(255, 45, 45, 0.2);
    color: #ff2d2d;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 45, 45, 0.3);
}

.live-experience-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.experience-text h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.experience-text p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.experience-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(255, 45, 45, 0.3);
}

.live-bonuses-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.05), rgba(255, 45, 45, 0.02));
}

.live-bonuses-table {
    margin: 3rem 0;
}

.live-bonuses-table h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.bonus-note {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 45, 45, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ff2d2d;
}

.bonus-note p {
    color: #ddd;
    font-size: 1rem;
    font-style: italic;
}

.why-live-casino-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.live-casino-advantages .advantage-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 45, 45, 0.15);
    transition: all 0.3s ease;
}

.live-casino-advantages .advantage-item:hover {
    background: rgba(255, 45, 45, 0.1);
    border-color: #ff2d2d;
    transform: translateY(-3px);
}

.live-casino-advantages .advantage-item i {
    font-size: 3rem;
    color: #ff2d2d;
    margin-bottom: 1.5rem;
}

.live-casino-advantages .advantage-item h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.live-casino-advantages .advantage-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments for Live Casino page */
@media (max-width: 768px) {
    .live-games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .live-game-item {
        padding: 1.5rem;
    }
    
    .live-game-item .game-icon {
        width: 60px;
        height: 60px;
    }
    
    .live-game-item .game-icon i {
        font-size: 1.5rem;
    }
    
    .live-features-grid,
    .providers-grid,
    .live-casino-advantages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .live-feature,
    .provider-item,
    .live-casino-advantages .advantage-item {
        padding: 1.5rem;
    }
    
    .live-feature i,
    .provider-item .provider-logo i,
    .live-casino-advantages .advantage-item i {
        font-size: 2.5rem;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .experience-image {
        order: -1;
    }
    
    .live-bonuses-table {
        margin: 2rem 0;
    }
    
    .bonus-note {
        margin: 1.5rem 0;
        padding: 1rem;
    }
}

/* Images Sections Styles */
.casino-images-section,
.login-images-section,
.app-images-section,
.games-images-section,
.slots-images-section,
.bonus-images-section,
.betting-images-section,
.aviator-images-section,
.live-casino-images-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.05), rgba(255, 45, 45, 0.02));
}

.casino-images-grid,
.login-images-grid,
.app-images-grid,
.games-images-grid,
.slots-images-grid,
.bonus-images-grid,
.betting-images-grid,
.aviator-images-grid,
.live-casino-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.casino-image-item,
.login-image-item,
.app-image-item,
.games-image-item,
.slots-image-item,
.bonus-image-item,
.betting-image-item,
.aviator-image-item,
.live-casino-image-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 45, 45, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-image-item:hover,
.login-image-item:hover,
.app-image-item:hover,
.games-image-item:hover,
.slots-image-item:hover,
.bonus-image-item:hover,
.betting-image-item:hover,
.aviator-image-item:hover,
.live-casino-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 45, 45, 0.2);
}

.casino-image-item img,
.login-image-item img,
.app-image-item img,
.games-image-item img,
.slots-image-item img,
.bonus-image-item img,
.betting-image-item img,
.aviator-image-item img,
.live-casino-image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 45, 45, 0.3);
}

.casino-image-item h3,
.login-image-item h3,
.app-image-item h3,
.games-image-item h3,
.slots-image-item h3,
.bonus-image-item h3,
.betting-image-item h3,
.aviator-image-item h3,
.live-casino-image-item h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.casino-image-item p,
.login-image-item p,
.app-image-item p,
.games-image-item p,
.slots-image-item p,
.bonus-image-item p,
.betting-image-item p,
.aviator-image-item p,
.live-casino-image-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments for Images sections */
@media (max-width: 768px) {
    .casino-images-grid,
    .login-images-grid,
    .app-images-grid,
    .games-images-grid,
    .slots-images-grid,
    .bonus-images-grid,
    .betting-images-grid,
    .aviator-images-grid,
    .live-casino-images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .casino-image-item,
    .login-image-item,
    .app-image-item,
    .games-image-item,
    .slots-image-item,
    .bonus-image-item,
    .betting-image-item,
    .aviator-image-item,
    .live-casino-image-item {
        padding: 1.5rem;
    }
}


@media (max-width: 375px) {
    .header-buttons {
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
        order: 3;
    }
    
    .header-buttons .btn {
        width: 100%;
    }

    .header-content{
        flex-wrap: wrap;
    }
}

/* Floating Button Styles */
.float-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    animation: floatPulse 2s infinite;
}

.float-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.6);
}

.float-button-icon {
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-button-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid #fff;
    animation: badgePulse 1.5s infinite;
}

@keyframes floatPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(220, 38, 38, 0.6);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Popup Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    max-width: 400px;
    width: 90%;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-content {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.popup-header h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.popup-body {
    color: #fff;
}

.popup-main-text {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fbbf24;
}

.popup-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #ea580c);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.popup-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    color: #fff;
}

.popup-terms {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.4;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .float-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .float-button-icon {
        font-size: 20px;
    }
    
    .float-button-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .popup-container {
        width: 95%;
        max-width: none;
    }
    
    .popup-content {
        padding: 1.5rem;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .popup-main-text {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .popup-cta-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 1.2rem;
    }
    
    .popup-header h2 {
        font-size: 1.3rem;
    }
    
    .popup-main-text {
        font-size: 1.1rem;
    }
    
    .popup-cta-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}