.page-hero {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--third-color) 100%);
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.category-card {
    background-color: var(--secondary-color);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(56, 55, 137, 0.3);
}

.category-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--secondary-color) 100%);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.category-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    margin-bottom: 20px;
}

.features-list li {
    color: var(--text-secondary);
    padding: 5px 0;
    font-size: 0.95rem;
}

.popular-games {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.popular-games h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.popular-games span {
    display: inline-block;
    background: var(--accent-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 3px;
}

.providers {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

.providers h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.providers > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.provider-item {
    background: var(--third-color);
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.provider-item:hover {
    background: var(--accent-primary);
}

.game-table-section,
.bonus-table-section,
.milestones-section,
.support-table-section {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
}

.game-table-section h2,
.bonus-table-section h2,
.milestones-section h2,
.support-table-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--third-color);
    border-radius: 10px;
    overflow: hidden;
}

.info-table thead {
    background: var(--accent-primary);
}

.info-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.info-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
}

.info-table tbody tr:hover {
    background: rgba(56, 55, 137, 0.2);
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .category-card.featured {
        grid-column: span 1;
    }
    
    .game-categories {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 40px 20px;
    }
    
    .page-hero h1 {
        font-size: 1.6rem;
    }
}

