/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #040404;
}

.container {
    max-width: 1400px;
    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;
    font-size: 1rem;
}

a {
    color: #24ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a8a4a;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    line-height: 1.2;
}

.btn-primary {
    background-color: #24ae60;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1a8a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(36, 174, 96, 0.3);
}

.btn-secondary {
    background-color: #EDC87F;
    color: #000;
}

.btn-secondary:hover {
    background-color: #d4b56a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(237, 200, 127, 0.3);
}

/* Header */
.header {
    background-color: #1E1E1E;
    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: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    background-color: #24ae60;
    color: #fff;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Slider Section */
.slider-section {
    margin-bottom: 2rem;
    padding-left: 20px;
    padding-right: 20px;
    
}

header .container {
    max-width: unset;
}

/* Swiper Slider */
.slider-swiper {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
}

/* Custom Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(36, 174, 96, 0.8);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold !important;
    color: #fff !important;
}

/* Custom Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #24ae60 !important;
    transform: scale(1.2) !important;
}

/* Content Wrapper */
.content-wrapper {
    margin-bottom: 3rem;
}

.content-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

.main-content {
    background: rgba(30, 30, 30, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(36, 174, 96, 0.1);
    border-radius: 8px;
    border-left: 4px solid #24ae60;
}

.feature-list i {
    margin-right: 1rem;
    color: #24ae60;
    font-size: 1.2rem;
}

/* Tables */
.games-table,
.bonus-table {
    margin: 2rem 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

th {
    background: #24ae60;
    color: #fff;
    font-weight: bold;
}

tr:hover {
    background: rgba(36, 174, 96, 0.1);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* FAQ */
.faq {
    margin: 2rem 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 4px solid #24ae60;
}

.faq-item h3 {
    color: #24ae60;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    margin: 2rem 0;
}

.testimonial-item {
    background: rgba(36, 174, 96, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(36, 174, 96, 0.3);
}

.testimonial-item .stars {
    color: #EDC87F;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-item p {
    margin: 0;
    font-style: italic;
}

/* Page Images */
.casino-images,
.games-images,
.slots-images,
.app-images,
.bonus-images,
.betting-images,
.aviator-images,
.live-casino-images,
.login-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 1rem 0;
}

.casino-image,
.game-image,
.slot-image,
.app-image,
.bonus-image,
.betting-image,
.aviator-image,
.live-casino-image,
.login-image {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.casino-image:hover,
.game-image:hover,
.slot-image:hover,
.app-image:hover,
.bonus-image:hover,
.betting-image:hover,
.aviator-image:hover,
.live-casino-image:hover,
.login-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(36, 174, 96, 0.4);
    border-color: rgba(36, 174, 96, 0.3);
}

.casino-image::before,
.game-image::before,
.slot-image::before,
.app-image::before,
.bonus-image::before,
.betting-image::before,
.aviator-image::before,
.live-casino-image::before,
.login-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 174, 96, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.casino-image:hover::before,
.game-image:hover::before,
.slot-image:hover::before,
.app-image:hover::before,
.bonus-image:hover::before,
.betting-image:hover::before,
.aviator-image:hover::before,
.live-casino-image:hover::before,
.login-image:hover::before {
    opacity: 1;
}

.casino-image img,
.game-image img,
.slot-image img,
.app-image img,
.bonus-image img,
.betting-image img,
.aviator-image img,
.live-casino-image img,
.login-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Single image styling for better page distribution */
.game-image:not(.games-images .game-image),
.slot-image:not(.slots-images .slot-image),
.app-image:not(.app-images .app-image),
.bonus-image:not(.bonus-images .bonus-image),
.betting-image:not(.betting-images .betting-image),
.aviator-image:not(.aviator-images .aviator-image),
.live-casino-image:not(.live-casino-images .live-casino-image),
.login-image:not(.login-images .login-image),
.casino-image:not(.casino-images .casino-image) {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.game-image:not(.games-images .game-image) img,
.slot-image:not(.slots-images .slot-image) img,
.app-image:not(.app-images .app-image) img,
.bonus-image:not(.bonus-images .bonus-image) img,
.betting-image:not(.betting-images .betting-image) img,
.aviator-image:not(.aviator-images .aviator-image) img,
.live-casino-image:not(.live-casino-images .live-casino-image) img,
.login-image:not(.login-images .login-image) img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.casino-image:hover img,
.game-image:hover img,
.slot-image:hover img,
.app-image:hover img,
.bonus-image:hover img,
.betting-image:hover img,
.aviator-image:hover img,
.live-casino-image:hover img,
.login-image:hover img {
    transform: scale(1.05);
}

/* Feature List with Numbers */
.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(36, 174, 96, 0.1);
    border-radius: 8px;
    border-left: 4px solid #24ae60;
}

.feature-list i {
    margin-right: 1rem;
    color: #24ae60;
    font-size: 1.2rem;
    min-width: 20px;
    text-align: center;
}

/* Ordered List Styles */
.feature-list ol {
    counter-reset: item;
    list-style: none;
}

.feature-list ol li {
    counter-increment: item;
}

.feature-list ol li::before {
    content: counter(item);
    margin-right: 1rem;
    color: #24ae60;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
    text-align: center;
}

/* Responsible Gaming */
.responsible-gaming {
    background: rgba(255, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ff0000;
    text-align: center;
    margin-top: 2rem;
}

/* Sidebar */
.sidebar {
    position: static;
}

.stats-panel {
    background: linear-gradient(135deg, #1E1E1E 0%, #2a2a2a 100%);
    padding: 2rem;
    position: sticky;
    top: 100px;
    border-radius: 10px;
    border: 1px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateX(5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #24ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #24ae60;
}

/* Footer */
.footer {
    background-color: #1E1E1E;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #24ae60;
    margin-bottom: 1rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #24ae60;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1a8a4a;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-sidebar {
        display: flex;
        flex-direction: column;
        margin-top: 2rem;
    }
    
    .sidebar {
        position: static;
        order: -1;
    }
    
    .stats-panel {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Tablet image grid adjustments */
    .casino-images,
    .games-images,
    .slots-images,
    .app-images,
    .bonus-images,
    .betting-images,
    .aviator-images,
    .live-casino-images,
    .login-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
        margin: 2.5rem 0;
    }
}

@media (max-width: 1440px) {
    .nav {
        display: none;
    }

    .nav-list a {
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
 
    
    .slider-swiper {
        height: 250px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .stats-panel {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-methods,
    .social-links {
        justify-content: center;
    }
    
    /* Mobile image grid adjustments */
    .casino-images,
    .games-images,
    .slots-images,
    .app-images,
    .bonus-images,
    .betting-images,
    .aviator-images,
    .live-casino-images,
    .login-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
}

@media (max-width: 480px) {
    .slider-swiper {
        height: 200px;
    }
    
    header .header-content {
        flex-wrap: wrap;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 10px;
        order: 3;
        margin-top: 15px;
    }

    .header-buttons .btn {
        width: 100%;
    }

    .main-content {
        padding: 1rem;
    }
    
    .stats-panel {
        padding: 1rem;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* Small mobile image adjustments */
    .casino-images,
    .games-images,
    .slots-images,
    .app-images,
    .bonus-images,
    .betting-images,
    .aviator-images,
    .live-casino-images,
    .login-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Animation for counter */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-value {
    animation: countUp 1s ease-out;
}

/* Mobile menu styles */
.nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1E1E1E;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav.active .nav-list {
    flex-direction: column;
    gap: 0;
}

.nav.active .nav-list a {
    display: block;
    padding: 1rem;
    border-radius: 0;
}

.nav.active .nav-list a:hover {
    background: #24ae60;
}

/* Table responsive */
@media (max-width: 768px) {
    .games-table,
    .bonus-table {
        overflow-x: auto;
    }
    
    table {
        min-width: 600px;
    }
}
