/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #211839;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #a2fd62;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a5568;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, rgba(255, 240, 100, 1) 0%, rgba(255, 250, 203, 1) 100%);
    color: #211839;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 240, 100, 0.3);
}

.btn-secondary {
    background: linear-gradient(45deg, rgba(162, 253, 98, 1) 0%, rgba(216, 252, 173, 1) 100%);
    color: #211839;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(162, 253, 98, 0.3);
}

.btn-large {
    padding: 16px 32px;
}

/* Header */
.header {
    background-color: #211839;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #a2fd62;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background-color: #211839;
    border-top: 1px solid #333;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    color: #fff;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: #333;
    color: #a2fd62;
}


/* Hero Slider */
.hero-slider {
    width: 100%;
    position: relative;
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: auto;
}

.hero-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1333;
}

.hero-slider .swiper-slide picture {
    width: 100%;
    display: block;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    display: block;
}

/* Swiper Navigation Buttons */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #a2fd62;
    background: rgba(33, 24, 57, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(162, 253, 98, 0.9);
    color: #1a1333;
    transform: scale(1.1);
}

/* Swiper Pagination */
.hero-slider .swiper-pagination {
    bottom: 20px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #a2fd62;
    border-radius: 6px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #211839 0%, #4a5568 100%);
    color: #fff;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.hero-description a {
    color: #a2fd62;
    text-decoration: underline;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Intro Text Section */
.intro-text-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #4a5568 0%, #1a1333 100%);
}

.intro-text-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(53, 43, 77, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(162, 253, 98, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.intro-text-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #a2fd62, transparent);
    border-radius: 16px 16px 0 0;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #eee;
    text-align: center;
    margin: 0;
}

.intro-text a {
    color: #a2fd62;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.intro-text a:hover {
    color: #c3ff89;
    border-bottom-color: #c3ff89;
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #a2fd62;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #eee;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-description a {
    color: #a2fd62;
    font-weight: 500;
    text-decoration: underline;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: #352b4d;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: #a2fd62;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #a2fd62;
    margin-bottom: 0.5rem;
}

.trust-buttons {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Games Section */
.games-casino-section {
    padding: 4rem 0;
    background-color: #231a3a;
}

.top-slots {
    margin-bottom: 3rem;
}

.top-slots h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #a2fd62;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.slots-table,
.bonus-table,
.comparison-table,
.categories-table,
.top-games-table,
.markets-table,
.benefits-table,
.features-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #352b4d;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slots-table th,
.bonus-table th,
.comparison-table th,
.categories-table th,
.top-games-table th,
.markets-table th,
.benefits-table th,
.features-table th,
.slots-table td,
.bonus-table td,
.comparison-table td,
.categories-table td,
.top-games-table td,
.markets-table td,
.benefits-table td,
.features-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #4a3766;
    color: #fff;
}

.slots-table th,
.bonus-table th,
.comparison-table th,
.categories-table th,
.top-games-table th,
.markets-table th,
.benefits-table th,
.features-table th {
    background-color: #211839;
    color: #a2fd62;
    font-weight: 600;
}

.games-buttons {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bonus Section */
.bonus-section {
    padding: 4rem 0;
    
}

.bonus-list {
    list-style: none;
    margin-bottom: 3rem;
}

.bonus-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.bonus-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #a2fd62;
}

.bonus-comparison {
    margin-bottom: 3rem;
}

.bonus-buttons {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* App Section */
.app-section {
    padding: 4rem 0;
    background-color: #231a3a;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.app-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.app-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-features i {
    color: #a2fd62;
    font-size: 1.2rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.app-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Betting Section */
.betting-section {
    padding: 4rem 0;
    
}

.betting-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.betting-buttons {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 0;
    background-color: #231a3a;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-item {
    background-color: #352b4d;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.review-content {
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author strong {
    color: #a2fd62;
    display: block;
}

.review-author span {
    color: #eee;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #211839 0%, #4a5568 100%);
    color: #fff;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #231a3a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background-color: #352b4d;
    color: #fff;
    cursor: pointer;
    margin: 0;
    transition: background-color 0.3s ease;
}

.faq-answer {
    padding: 1.5rem;
    margin: 0;
    color: #eee;
    display: none;
    background-color: #211839;
}

/* Footer */
.footer {
    background-color: #211839;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #a2fd62;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e2e8f0;
    transition: color 0.3s ease;
}

header .container {
    max-width: unset;
}

.footer-section ul li a:hover {
    color: #a2fd62;
}

.footer-bottom {
    border-top: 1px solid #352b4d;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright,
.footer-disclaimer {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 1280px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    
    /* Slider Adaptations */
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .hero-slider .swiper-button-next:after,
    .hero-slider .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .hero-slider .swiper-pagination {
        bottom: 10px;
    }
    
    .hero-slider .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    .hero-slider .swiper-pagination-bullet-active {
        width: 20px;
    }
    
    .hero-slider .swiper-slide img {
        min-height: 150px;
    }
    
    .hero {
        padding: 2rem 0;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .intro-text-section {
        padding: 2rem 0;
    }
    
    .intro-text-box {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
    }
    
    .betting-features {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .slots-table th,
    .bonus-table th,
    .comparison-table th,
    .categories-table th,
    .top-games-table th,
    .markets-table th,
    .benefits-table th,
    .features-table th,
    .slots-table td,
    .bonus-table td,
    .comparison-table td,
    .categories-table td,
    .top-games-table td,
    .markets-table td,
    .benefits-table td,
    .features-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .bonus-banner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .bonus-banner-close {
        top: 15px !important;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }

    .header-content {
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Section Styles */
.why-play-section,
.casino-games-casino-section,
.categories-section,
.top-games-casino-section,
.live-casino-section,
.why-betting-section,
.markets-section,
.cricket-betting-section,
.live-betting-section,
.betting-bonuses-section,
.why-bonus-section,
.bonus-types-section,
.bonus-overview-section,
.claim-section,
.why-live-section,
.live-games-casino-section,
.mobile-live-section,
.what-aviator-section,
.how-to-play-section,
.why-aviator-section,
.aviator-features-section,
.app-features-section,
.download-section,
.desktop-vs-app-section,
.why-slots-section,
.top-slots-section,
.slots-table-section,
.mobile-slots-section,
.bonus-access-section,
.security-section,
.mobile-login-section {
    padding: 4rem 0;
}

/* Alternating backgrounds for sections */
.casino-games-casino-section,
.top-games-casino-section,
.markets-section,
.live-betting-section,
.bonus-types-section,
.claim-section,
.live-games-casino-section,
.mobile-live-section,
.how-to-play-section,
.aviator-features-section,
.download-section,
.desktop-vs-app-section,
.top-slots-section,
.mobile-slots-section,
.bonus-access-section,
.mobile-login-section {
    background-color: #231a3a;
}

/* Visual Images Containers */
.games-visual,
.bonus-visual,
.security-visual,
.app-games-visual,
.reviews-visual,
.games-selection-visual,
.poker-visual,
.sweet-bonanza-visual,
.vip-bonus-visual,
.princess-bonus-visual,
.cricket-promo-visual,
.multi-sport-visual,
.aviator-mobile-visual,
.classic-plane-visual,
.football-betting-visual,
.mobile-cricket-visual {
    max-width: 800px;
    margin: 2rem auto;
}

.games-visual img,
.bonus-visual img,
.security-visual img,
.app-games-visual img,
.reviews-visual img,
.games-selection-visual img,
.poker-visual img,
.sweet-bonanza-visual img,
.vip-bonus-visual img,
.princess-bonus-visual img,
.cricket-promo-visual img,
.multi-sport-visual img,
.aviator-mobile-visual img,
.classic-plane-visual img,
.football-betting-visual img,
.mobile-cricket-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Game Category */
.game-category {
    text-align: center;
    padding: 2rem;
    background-color: #352b4d;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
}

.game-category i {
    font-size: 3rem;
    color: #a2fd62;
    margin-bottom: 1rem;
}

.game-category h3 {
    color: #a2fd62;
    margin-bottom: 0.5rem;
}

.game-category p {
    color: #eee;
    margin: 0;
}

/* Note styles */
.games-note,
.live-note,
.cricket-note,
.bonus-note,
.claim-note,
.slots-note,
.mobile-note,
.aviator-note,
.play-note {
    background-color: #352b4d;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    border-left: 4px solid #a2fd62;
    color: #eee;
}

/* Button Containers */
.top-games-buttons,
.live-buttons,
.cricket-buttons,
.claim-buttons,
.login-buttons,
.benefits-buttons,
.slots-buttons,
.aviator-buttons,
.play-buttons,
.download-buttons,
.comparison-buttons,
.mobile-buttons {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.mobile-nav-link:focus {
    outline: 2px solid #a2fd62;
    outline-offset: 2px;
}

/* Additional Styles for New Sections */

/* Login Steps */
.login-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background-color: #352b4d;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.step-number {
    background: linear-gradient(45deg, rgba(255, 240, 100, 1) 0%, rgba(255, 250, 203, 1) 100%);
    color: #211839;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #a2fd62;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #eee;
    margin: 0;
}

/* Mini Guide */
.mini-guide {
    background-color: #352b4d;
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    border-left: 4px solid #a2fd62;
}

.mini-guide p {
    margin-bottom: 0;
}

/* Login Benefits */
.login-benefits {
    margin: 3rem 0;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #a2fd62;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.security-item {
    text-align: center;
    padding: 2rem;
    background-color: #231a3a;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
}

.security-item i {
    font-size: 3rem;
    color: #a2fd62;
    margin-bottom: 1rem;
}

/* App Features Grid */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Download Steps */
.download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.download-platform {
    background-color: #231a3a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-platform h3 {
    color: #a2fd62;
    margin-bottom: 1rem;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background: linear-gradient(45deg, rgba(255, 240, 100, 1) 0%, rgba(255, 250, 203, 1) 100%);
    color: #211839;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* App Specs */
.app-specs {
    background-color: #352b4d;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #a2fd62;
}

.app-specs p {
    margin: 0.5rem 0;
}

/* Games Features */
.games-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .games-features {
        grid-template-columns: 1fr;
    }
}

.game-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #352b4d;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.game-feature h3 {
    margin-bottom: 0;
}

.game-feature:hover {
    transform: translateY(-5px);
}

.game-feature i {
    font-size: 2rem;
    color: #a2fd62;
    flex-shrink: 0;
}

/* Games List */
.games-list {
    margin: 3rem 0;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #352b4d;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.game-item h3 {
    margin-bottom: 0;
}

.game-item:hover {
    transform: translateY(-3px);
}

.game-item i {
    font-size: 2rem;
    color: #a2fd62;
    flex-shrink: 0;
}

/* Slots Features */
.slots-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Top Slots List */
.top-slots-list {
    margin: 3rem 0;
}

.slot-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #352b4d;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.slot-item:hover {
    transform: translateY(-3px);
}

.slot-item i {
    font-size: 2rem;
    color: #a2fd62;
    flex-shrink: 0;
}

/* Mobile Slots Content */
.mobile-slots-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.mobile-features {
    list-style: none;
    margin: 2rem 0;
}

.mobile-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-features i {
    color: #a2fd62;
    font-size: 1.2rem;
}

/* Bonus Features */
.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-feature {
    text-align: center;
    padding: 2rem;
    background-color: #352b4d;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.bonus-feature:hover {
    transform: translateY(-5px);
}

.bonus-feature i {
    font-size: 3rem;
    color: #a2fd62;
    margin-bottom: 1rem;
}

/* Bonus Types */
.bonus-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.subsection-title {
    margin-bottom: 1rem;
    color: #a2fd62;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.bonus-type {
    text-align: center;
    padding: 2rem;
    background-color: #352b4d;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.bonus-type:hover {
    transform: translateY(-5px);
}

.bonus-type i {
    font-size: 3rem;
    color: #a2fd62;
    margin-bottom: 1rem;
}

/* Claim Steps */
.claim-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.claim-step {
    text-align: center;
    padding: 2rem;
    background-color: #352b4d;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.claim-step:hover {
    transform: translateY(-5px);
}

.claim-step .step-number {
    background: linear-gradient(45deg, rgba(255, 240, 100, 1) 0%, rgba(255, 250, 203, 1) 100%);
    color: #211839;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* Betting Features */
.betting-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Cricket Features */
.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-color: #352b4d;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.cricket-feature:hover {
    transform: translateY(-5px);
}

.cricket-feature i {
    font-size: 3rem;
    color: #a2fd62;
    margin-bottom: 1rem;
}

/* Live Features */
.live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.live-feature {
    text-align: center;
    padding: 2rem;
    background-color: #352b4d;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.live-feature:hover {
    transform: translateY(-5px);
}

.live-feature i {
    font-size: 3rem;
    color: #a2fd62;
    margin-bottom: 1rem;
}

/* Live Games */
.live-games {
    margin: 3rem 0;
}

/* Aviator Steps */
.aviator-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Play Steps */
.play-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}



.play-step {
    text-align: center;
    padding: 2rem;
    background-color: #352b4d;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.play-step:hover {
    transform: translateY(-5px);
}

.play-step .step-number {
    background: linear-gradient(45deg, rgba(255, 240, 100, 1) 0%, rgba(255, 250, 203, 1) 100%);
    color: #211839;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* Aviator Features */
.aviator-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Live Games */
.live-games {
    margin: 3rem 0;
}

/* Live Bonuses */
.live-bonuses-section {
    margin: 4rem 0;
}

.bonus-list {
    margin: 3rem 0;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #352b4d;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-3px);
}

.bonus-item i {
    font-size: 2rem;
    color: #a2fd62;
    flex-shrink: 0;
}

/* Mobile Live Content */
.mobile-live-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.mobile-live-image img,
.mobile-slots-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .claim-steps,
    .play-steps {
        grid-template-columns: 1fr;
    }

    .mobile-slots-content,
    .mobile-live-content {
        grid-template-columns: 1fr;
    }
    
    .step-item,
    .game-item,
    .slot-item,
    .bonus-item {
        flex-direction: column;
        text-align: center;
    }
    
    .claim-steps,
    .play-steps {
        grid-template-columns: 1fr;
    }
    
    /* Responsive visual images */
    .games-visual,
    .bonus-visual,
    .security-visual,
    .app-games-visual,
    .reviews-visual,
    .games-selection-visual,
    .poker-visual,
    .sweet-bonanza-visual,
    .vip-bonus-visual,
    .princess-bonus-visual,
    .cricket-promo-visual,
    .multi-sport-visual,
    .aviator-mobile-visual,
    .classic-plane-visual,
    .football-betting-visual,
    .mobile-cricket-visual {
        max-width: 100%;
        margin: 1.5rem 0;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    .main {
        margin-top: 0;
    }
}
