/* Index Page Specific Styles */

/* Hero Slider Section */
.hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0;
}

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

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Swiper Navigation Buttons */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #F7D26C;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(247, 210, 108, 0.9);
    color: #333;
    transform: scale(1.1);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination */
.hero-slider .swiper-pagination {
    bottom: 20px;
}

.hero-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #F7D26C;
}

/* Responsive Design for Slider */
@media (max-width: 768px) {
    
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        width: 40px;
        height: 40px;
        display: none; /* Hide arrows on mobile for cleaner look */
    }
    
    .hero-slider .swiper-pagination {
        bottom: 15px;
    }
    
    .hero-slider .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .hero-slider .swiper {
        min-height: 200px;
    }
    
    .hero-slider .swiper-pagination {
        bottom: 10px;
    }
    
    .hero-slider .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1C1C1C 0%, #2a2a2a 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Section */
.trust-section {
    background: #2a2a2a;
    padding: 5rem 0;
}

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

.trust-feature {
    text-align: center;
    padding: 2rem;
    background: #333;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 210, 108, 0.2);
}

.trust-feature i {
    font-size: 3rem;
    color: #F7D26C;
    margin-bottom: 1rem;
    display: block;
}

.trust-feature h3 {
    color: #ffffff;
    font-size: 1.2rem;
}

.comparison-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.comparison-table table {
    min-width: 600px;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #F7D26C;
}

.comparison-table .fa-check {
    color: #4CAF50;
}

.comparison-table .fa-times {
    color: #f44336;
}

/* Games Section */
.games-section {
    background: #1C1C1C;
    padding: 5rem 0;
}

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

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

.games-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(247, 210, 108, 0.2);
}

.games-categories {
    margin: 2rem 0;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #444;
    font-size: 1.1rem;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: #F7D26C;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #ffffff;
}

.games-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.games-table table {
    min-width: 500px;
}

/* Bonuses Section */
.bonuses-section {
    background: #2a2a2a;
    padding: 5rem 0;
}

.offers-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.offers-list li {
    padding: 1rem;
    background: #333;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 4px solid #F7D26C;
    font-size: 1.1rem;
}

.bonus-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.bonus-table table {
    min-width: 500px;
}

.bonus-note {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.bonus-note a {
    color: #F7D26C;
    font-weight: 600;
}

/* App Section */
.app-section {
    background: #1C1C1C;
    padding: 5rem 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.features-list li {
    padding: 1rem;
    background: #333;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    position: relative;
    padding-left: 3rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #F7D26C;
    font-weight: bold;
    font-size: 1.2rem;
}

.app-note {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.app-note a {
    color: #F7D26C;
    font-weight: 600;
}

/* Sports Section */
.sports-section {
    background: #2a2a2a;
    padding: 5rem 0;
}

.sports-image {
    margin: 3rem 0;
    text-align: center;
}

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

.sports-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(247, 210, 108, 0.2);
}

.sports-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.sports-table table {
    min-width: 500px;
}

.sports-note {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.sports-note a {
    color: #F7D26C;
    font-weight: 600;
}

/* Why Choose Section */
.why-choose-section {
    background: #1C1C1C;
    padding: 5rem 0;
}

.why-choose-image {
    margin: 3rem 0;
    text-align: center;
}

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

.why-choose-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(247, 210, 108, 0.2);
}

.advantages-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.advantages-table table {
    min-width: 400px;
}

/* Reviews Section */
.reviews-section {
    background: #2a2a2a;
    padding: 5rem 0;
}

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

.review {
    background: #333;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #F7D26C;
    position: relative;
}

.review::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #F7D26C;
    line-height: 1;
}

.expert-view {
    background: #333;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
    font-style: italic;
}

.expert-view a {
    color: #F7D26C;
    font-weight: 600;
}

.conclusion {
    text-align: center;
    font-size: 1.2rem;
    margin: 3rem 0;
    color: #e0e0e0;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background: #1C1C1C;
    padding: 5rem 0;
}

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

.faq-item {
    background: #333;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item h3 {
    background: #F7D26C;
    color: #333333;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item h3:hover {
    background: #e6c05a;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    background: #2a2a2a;
}

.faq-item a {
    color: #F7D26C;
    font-weight: 600;
}

/* Responsive Design for Index Page */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-feature {
        padding: 1.5rem;
    }
    
    .trust-feature i {
        font-size: 2rem;
    }
    
    .reviews {
        grid-template-columns: 1fr;
    }
    
    .review {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-item p {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .trust-feature {
        padding: 1rem;
    }
    
    .review {
        padding: 1rem;
    }
    
    .expert-view {
        padding: 1rem;
    }
}

/* Animation for sections */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for interactive elements */
.btn:hover {
    transform: translateY(-2px);
}

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

.review:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 210, 108, 0.2);
}
