/* Slots Page Specific Styles */

/* Hero Section Enhancements */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%2349FFEC" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: #49FFEC;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #0a5a5a 0%, #064147 100%);
}

/* Featured Slots Section */
.featured-slots {
    background: linear-gradient(135deg, #064147 0%, #0a5a5a 100%);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.slot-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(73, 255, 236, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.slot-card:hover {
    transform: translateY(-5px);
    border-color: #49FFEC;
    box-shadow: 0 8px 25px rgba(73, 255, 236, 0.2);
}

.slot-icon {
    font-size: 3rem;
    color: #49FFEC;
    margin-bottom: 1rem;
}

.slot-card h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.slot-card p {
    color: #49FFEC;
}

.connection-note {
    text-align: center;
    color: #49FFEC;
    margin: 2rem 0;
    font-style: italic;
}

/* Mobile Slots Section */
.mobile-slots {
    background: linear-gradient(135deg, #0a5a5a 0%, #064147 100%);
}

.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mobile-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(73, 255, 236, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mobile-feature:hover {
    transform: translateY(-5px);
    border-color: #49FFEC;
    box-shadow: 0 8px 25px rgba(73, 255, 236, 0.2);
}

.mobile-feature i {
    font-size: 3rem;
    color: #49FFEC;
    margin-bottom: 1rem;
}

.mobile-feature h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Top Slots Section */
.top-slots {
    background: linear-gradient(135deg, #064147 0%, #0a5a5a 100%);
}

.top-slots-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.top-slots-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.top-slots-table th,
.top-slots-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(73, 255, 236, 0.2);
}

.top-slots-table th {
    background: rgba(73, 255, 236, 0.2);
    color: #fff;
    font-weight: 600;
}

.top-slots-table td {
    color: #49FFEC;
}

.top-slots-table tr:hover {
    background: rgba(73, 255, 236, 0.1);
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #0a5a5a 0%, #064147 100%);
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #064147 0%, #0a5a5a 100%);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #0a5a5a 0%, #064147 100%);
    text-align: center;
    padding: 6rem 0;
}

.final-cta p {
    font-size: 1.2rem;
    color: #49FFEC;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.8;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .slots-grid,
    .mobile-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .top-slots-table {
        font-size: 0.9rem;
    }
    
    .final-cta {
        padding: 4rem 0;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .slot-card,
    .mobile-feature {
        padding: 1.25rem;
    }
    
    .top-slots-table th,
    .top-slots-table td {
        padding: 0.75rem;
    }
}

/* Animation Delays for Staggered Effects */
.slot-card:nth-child(1) { animation-delay: 0.1s; }
.slot-card:nth-child(2) { animation-delay: 0.2s; }
.slot-card:nth-child(3) { animation-delay: 0.3s; }
.slot-card:nth-child(4) { animation-delay: 0.4s; }
.slot-card:nth-child(5) { animation-delay: 0.5s; }

.mobile-feature:nth-child(1) { animation-delay: 0.1s; }
.mobile-feature:nth-child(2) { animation-delay: 0.2s; }
.mobile-feature:nth-child(3) { animation-delay: 0.3s; }
.mobile-feature:nth-child(4) { animation-delay: 0.4s; }
