/* Slots Page Styles */

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

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero-description {
    font-size: 1.25rem;
    color: #E0E0E0;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

/* Why Play Slots Section */
.why-play-slots {
    padding: 80px 0;
    background: #1C1C1C;
}

.section-title {
    font-size: 2.5rem;
    color: #F7D26C;
    text-align: center;
    margin-bottom: 3rem;
}

.section-description {
    font-size: 1.1rem;
    color: #E0E0E0;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

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

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

.slots-features .feature i {
    font-size: 3rem;
    color: #F7D26C;
    margin-bottom: 1rem;
}

.slots-features .feature h3 {
    font-size: 1.2rem;
    color: #F7D26C;
    margin-bottom: 1rem;
}

.expert-quote {
    background: #2A2A2A;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border-left: 4px solid #F7D26C;
}

.expert-quote p {
    color: #E0E0E0;
    line-height: 1.6;
    margin: 0;
}

.slots-categories {
    background: #2A2A2A;
    border-radius: 12px;
    overflow: hidden;
    margin: 3rem 0;
}

.slots-categories table {
    width: 100%;
    border-collapse: collapse;
}

.slots-categories th,
.slots-categories td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.slots-categories th {
    background: #F7D26C;
    color: #333;
    font-weight: 600;
}

.slots-categories td {
    color: #E0E0E0;
}

.slots-categories tr:hover {
    background: #333;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

/* Top Slots Section */
.top-slots {
    padding: 80px 0;
    background: #2A2A2A;
}

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

.slot-card {
    background: #1C1C1C;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(247, 210, 108, 0.2);
}

.slot-image {
    width: 100%;
    
    overflow: hidden;
}

.slot-image img {
    width: 100%;
    height: auto;
    
}

.slot-content {
    padding: 1.5rem;
}

.slot-content h3 {
    font-size: 1.25rem;
    color: #F7D26C;
    margin-bottom: 0.5rem;
}

.slot-content .provider {
    color: #B0B0B0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.slot-content .rtp {
    color: #F7D26C;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.slot-content .feature {
    color: #E0E0E0;
    font-size: 0.9rem;
}

.slots-table {
    border-radius: 12px;
    overflow: hidden;
}

.slots-table table {
    width: 100%;
    border-collapse: collapse;
}

.slots-table th,
.slots-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.slots-table th {
    background: #F7D26C;
    color: #333;
    font-weight: 600;
}

.slots-table td {
    color: #E0E0E0;
}

.slots-table tr:hover {
    background: #333;
}

.slots-note {
    background: #2A2A2A;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.slots-note p {
    color: #E0E0E0;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Slots Section */
.mobile-slots {
    padding: 80px 0;
    background: #1C1C1C;
}

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

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

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

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

.mobile-feature h3 {
    font-size: 1.2rem;
    color: #F7D26C;
    margin-bottom: 1rem;
}

.mobile-description {
    background: #2A2A2A;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.mobile-description p {
    color: #E0E0E0;
    line-height: 1.6;
    margin: 0;
}

.device-comparison {
    background: #2A2A2A;
    border-radius: 12px;
    overflow: hidden;
    margin: 3rem 0;
}

.device-comparison table {
    width: 100%;
    border-collapse: collapse;
}

.device-comparison th,
.device-comparison td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.device-comparison th {
    background: #F7D26C;
    color: #333;
    font-weight: 600;
}

.device-comparison td {
    color: #E0E0E0;
}

.device-comparison tr:hover {
    background: #333;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #2A2A2A;
}

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

.review {
    background: #1C1C1C;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.review p {
    color: #E0E0E0;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.expert-insight {
    background: #1C1C1C;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #F7D26C;
    margin: 3rem 0;
}

.expert-insight p {
    color: #E0E0E0;
    line-height: 1.6;
    margin: 0;
}

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

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

.faq-item p {
    color: #E0E0E0;
    line-height: 1.6;
    margin: 0;
}

.conclusion {
    background: #2A2A2A;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.conclusion p {
    color: #E0E0E0;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slots-features,
    .slots-grid,
    .mobile-features,
    .reviews {
        grid-template-columns: 1fr;
    }
    
    .slots-categories,
    .slots-table,
    .device-comparison {
        overflow-x: auto;
    }
    
    .slots-categories table,
    .slots-table table,
    .device-comparison table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .why-play-slots,
    .top-slots,
    .mobile-slots,
    .reviews-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
