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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #24033D;
    overflow-x: hidden;
}

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

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

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

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

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

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

a:hover {
    color: #31ffcf;
}

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

.btn-primary {
    background: linear-gradient(180deg, #31ffcf, #3cc4ff);
    border: 2px solid hsla(0, 0%, 100%, 0.5);
    color: #fa3cff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    color: #fa3cff;
    box-shadow: 0 8px 25px rgba(49, 255, 207, 0.3);
}

.btn-secondary {
    color: #b06bbe;
    background: linear-gradient(180deg, #500586, #360b6d);
    border: 2px solid #9515de;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(149, 21, 222, 0.3);
    color: #ffffff;
}

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

/* Header */
.header {
    background: linear-gradient(180deg, #500586, #360b6d);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

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

.nav-list a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: #37f1ff;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #37f1ff;
}

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

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

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

/* Hero Slider */
.hero-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.swiper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #37f1ff !important;
}

.notice-marquee-container {
    width: 100%;
    background: rgba(0, 0, 0, .25);
    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;
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: #37f1ff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .2) !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #37f1ff !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2) !important;
}

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

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #24033D 0%, #360b6d 100%);
}

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

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

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

/* Sections */
.why-choose,
.advantages,
.app-section,
.conclusion,
.faq {
    padding: 4rem 0;
}

.why-choose {
    background: #24033D;
}

.advantages {
    background: linear-gradient(135deg, #360b6d 0%, #24033D 100%);
}

.app-section {
    background: #24033D;
}

.conclusion {
    background: linear-gradient(135deg, #24033D 0%, #360b6d 100%);
}

.faq {
    background: #24033D;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
}

.features-list i {
    color: #37f1ff;
    font-size: 1.5rem;
    min-width: 30px;
    margin-right: 10px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.final-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Advantages Table */
.advantages-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid rgba(55, 241, 255, 0.2);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: rgba(55, 241, 255, 0.1);
    padding: 1.5rem;
    font-weight: 600;
    color: #37f1ff;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #37f1ff;
}

.table-row .feature i {
    font-size: 1.5rem;
}

/* App Section */
.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Casino Images */
.casino-image {
    margin: 2rem 0;
    text-align: center;
}

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

/* Login Images */
.login-image {
    margin: 2rem 0;
    text-align: center;
}

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

/* App Images */
.app-image {
    margin: 2rem 0;
    text-align: center;
}

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

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

.app-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

/* Login Page Specific Styles */
.how-to-use,
.mobile-app-section,
.troubleshooting,
.why-login-matters {
    padding: 4rem 0;
}

.how-to-use {
    background: #24033D;
}

.mobile-app-section {
    background: linear-gradient(135deg, #360b6d 0%, #24033D 100%);
}

.troubleshooting {
    background: #24033D;
}

.why-login-matters {
    background: linear-gradient(135deg, #24033D 0%, #360b6d 100%);
}

/* Steps Container */
.steps-container {
    margin: 3rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.2);
}

.step-number {
    background: linear-gradient(180deg, #31ffcf, #3cc4ff);
    color: #24033D;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #37f1ff;
    margin-bottom: 1rem;
}

.step-content p {
    margin: 0;
    color: #ffffff;
}

/* Mobile App Section */
.mobile-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.mobile-app-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

/* Troubleshooting Table */
.troubleshooting-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid rgba(55, 241, 255, 0.2);
}

.troubleshooting-table .table-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: rgba(55, 241, 255, 0.1);
    padding: 1.5rem;
    font-weight: 600;
    color: #37f1ff;
}

.troubleshooting-table .table-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.troubleshooting-table .table-row:last-child {
    border-bottom: none;
}

.troubleshooting-table .issue {
    font-weight: 600;
    color: #37f1ff;
}

.troubleshooting-table .solution {
    color: #ffffff;
}

/* App Page Specific Styles */
.how-to-download,
.features-section,
.bonuses-section,
.why-play-section,
.reviews-section,
.final-cta-section {
    padding: 4rem 0;
}

.how-to-download {
    background: #24033D;
}

.features-section {
    background: linear-gradient(135deg, #360b6d 0%, #24033D 100%);
}

.bonuses-section {
    background: #24033D;
}

.why-play-section {
    background: linear-gradient(135deg, #24033D 0%, #360b6d 100%);
}

.reviews-section {
    background: #24033D;
}

.final-cta-section {
    background: linear-gradient(135deg, #360b6d 0%, #24033D 100%);
}

/* Download Steps */
.download-steps {
    margin: 3rem 0;
}

.download-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.2);
}

.step-icon {
    background: linear-gradient(180deg, #31ffcf, #3cc4ff);
    color: #24033D;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.download-step .step-content h3 {
    color: #37f1ff;
    margin-bottom: 1rem;
}

.download-step .step-content p {
    margin: 0;
    color: #ffffff;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    background: linear-gradient(180deg, #31ffcf, #3cc4ff);
    color: #24033D;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    color: #37f1ff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ffffff;
    margin: 0;
}

/* Bonuses Table */
.bonuses-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid rgba(55, 241, 255, 0.2);
}

.bonuses-table .table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(55, 241, 255, 0.1);
    padding: 1.5rem;
    font-weight: 600;
    color: #37f1ff;
}

.bonuses-table .table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonuses-table .table-row:last-child {
    border-bottom: none;
}

.bonuses-table .bonus-name {
    font-weight: 600;
    color: #37f1ff;
}

.bonuses-table .condition,
.bonuses-table .duration {
    color: #ffffff;
}

/* Why Play Section */
.why-play-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-play-text h2 {
    margin-bottom: 2rem;
}

.why-play-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.2);
    text-align: center;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: #ffffff;
    margin: 0;
    font-style: italic;
}

/* Final CTA Section */
.final-cta-content {
    text-align: center;
}

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

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

.final-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

header .container {
    max-width: unset;
}

/* FAQ */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.2);
}

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

/* Disclaimer */
.disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 2rem 0;
    text-align: center;
}

.disclaimer p {
    margin: 0;
    color: #ffc107;
}

.disclaimer i {
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #360b6d, #500586);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    gap: 2rem;
    align-items: center;
}

.footer-section h4 {
    color: #37f1ff;
    margin-bottom: 1rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-methods i {
    font-size: 2rem;
    color: #37f1ff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mobile-app-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .advantages-table {
        overflow-x: auto;
    }
    
    .table-header,
    .table-row {
        min-width: 600px;
    }
    
    .troubleshooting-table {
        overflow-x: auto;
    }
    
    .troubleshooting-table .table-header,
    .troubleshooting-table .table-row {
        min-width: 600px;
    }
}

@media (max-width: 1080px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, #500586, #360b6d);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {

    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons,
    .cta-buttons,
    .final-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-list li {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .advantages-table {
        margin: 1rem 0;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        min-width: auto;
        text-align: center;
    }
    
    .table-row .feature {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .troubleshooting-table .table-header,
    .troubleshooting-table .table-row {
        grid-template-columns: 1fr;
        min-width: auto;
        text-align: center;
    }
    
    .troubleshooting-table .issue {
        margin-bottom: 1rem;
    }
    
    .download-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-icon {
        align-self: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonuses-table {
        overflow-x: auto;
    }
    
    .bonuses-table .table-header,
    .bonuses-table .table-row {
        grid-template-columns: 1fr;
        min-width: auto;
        text-align: center;
    }
    
    .bonuses-table .bonus-name {
        margin-bottom: 1rem;
    }
    
    .why-play-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .casino-image,
    .login-image,
    .app-image {
        margin: 1rem 0;
    }
    
    .casino-image img,
    .login-image img,
    .app-image img {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Games Page Specific Styles */
.games-collection,
.popular-games,
.mobile-gaming,
.why-choose-games {
    padding: 4rem 0;
}

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

.game-category {
    text-align: center;
    padding: 2rem;
    background: rgba(55, 241, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.3);
}

.game-icon {
    font-size: 3rem;
    color: #37f1ff;
    margin-bottom: 1rem;
}

.games-table {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.games-image {
    margin: 2rem 0;
    text-align: center;
}

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

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

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

/* Slots Page Specific Styles */
.discover-slots,
.top-providers,
.how-to-win,
.top-slots,
.mobile-slots {
    padding: 4rem 0;
}

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

.slot-category {
    text-align: center;
    padding: 2rem;
    background: rgba(55, 241, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.3);
}

.category-icon {
    font-size: 3rem;
    color: #37f1ff;
    margin-bottom: 1rem;
}

.slots-table {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slots-image {
    margin: 2rem 0;
    text-align: center;
}

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

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

.tip {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(55, 241, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.3);
}

.tip-icon {
    font-size: 2rem;
    color: #37f1ff;
    flex-shrink: 0;
}

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

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

/* Bonus Page Specific Styles */
.bonus-types,
.how-to-claim,
.bonus-terms,
.top-bonuses,
.why-use-bonus {
    padding: 4rem 0;
}

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

.bonus-category {
    text-align: center;
    padding: 2rem;
    background: rgba(55, 241, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.3);
}

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

.claim-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(55, 241, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.3);
}

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

.term-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(55, 241, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.3);
}

.term-icon {
    font-size: 2rem;
    color: #37f1ff;
    flex-shrink: 0;
}

.bonuses-table {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bonus-image {
    margin: 2rem 0;
    text-align: center;
}

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

.why-use-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

/* Betting Page Specific Styles */
.how-to-start,
.cricket-betting,
.betting-strategies,
.betting-markets,
.why-bet-okww {
    padding: 4rem 0;
}

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

.start-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(55, 241, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.3);
}

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

.strategy-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(55, 241, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.3);
}

.strategy-icon {
    font-size: 2rem;
    color: #37f1ff;
    flex-shrink: 0;
}

.markets-table {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.betting-image {
    margin: 2rem 0;
    text-align: center;
}

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

.why-bet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

/* Aviator Page Specific Styles */
.how-to-play,
.aviator-features,
.aviator-strategies,
.strategies-table-section,
.why-choose-aviator {
    padding: 4rem 0;
}

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

.play-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(55, 241, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.3);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(55, 241, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(55, 241, 255, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: #37f1ff;
    margin-bottom: 1rem;
}

.strategies-table {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.aviator-image {
    margin: 2rem 0;
    text-align: center;
}

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

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

/* Live Casino Page Specific Styles */
.how-it-works,
.popular-games,
.live-casino-bonuses,
.why-choose-live {
    padding: 4rem 0;
}

.live-casino-image {
    margin: 2rem 0;
    text-align: center;
}

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

.why-choose-buttons {
    margin-top: 2rem;
}

.why-choose-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .games-grid,
    .slots-categories,
    .bonus-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mobile-gaming-content,
    .mobile-slots-content,
    .why-use-content,
    .why-bet-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .games-image,
    .slots-image,
    .bonus-image,
    .betting-image,
    .aviator-image,
    .live-casino-image {
        margin: 1rem 0;
    }
    
    .games-image img,
    .slots-image img,
    .bonus-image img,
    .betting-image img,
    .aviator-image img,
    .live-casino-image img {
        max-width: 100%;
    }
    
    .winning-tips,
    .strategies-list,
    .terms-list,
    .start-steps,
    .play-steps,
    .claim-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tip,
    .strategy-item,
    .term-item,
    .start-step,
    .play-step,
    .claim-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .tip-icon,
    .strategy-icon,
    .term-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

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

    .header-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        order: 3;
    }
}

/* Mobile Menu Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 7px);
}

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

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-list a:focus {
    outline: 2px solid #37f1ff;
    outline-offset: 2px;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}
