/* 
* Tiger TV - Channels Categories Section
* Modern Card Design
* Version: 1.0
*/

/* ============================================
   CHANNELS CATEGORIES SECTION
   ============================================ */

.channels-categories-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 100%);
}

.channels-categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.channels-categories-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Category Card */
.category-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6B35, #FFA500);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

/* Sports Card */
.category-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, white 100%);
}

.category-card:nth-child(1)::before {
    background: linear-gradient(90deg, #FF6B35, #FFA500);
}

.category-card:nth-child(1):hover {
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

/* Entertainment Card */
.category-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, white 100%);
}

.category-card:nth-child(2)::before {
    background: linear-gradient(90deg, #9333EA, #C026D3);
}

.category-card:nth-child(2):hover {
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.2);
}

/* News Card */
.category-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, white 100%);
}

.category-card:nth-child(3)::before {
    background: linear-gradient(90deg, #0EA5E9, #06B6D4);
}

.category-card:nth-child(3):hover {
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.2);
}

/* Kids Card */
.category-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, white 100%);
}

.category-card:nth-child(4)::before {
    background: linear-gradient(90deg, #10B981, #14B8A6);
}

.category-card:nth-child(4):hover {
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
}

/* Category Icon */
.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.category-card:hover .category-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Category Title */
.category-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

/* Category Description */
.category-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: none; /* Hide description for cleaner look */
}

/* Category List */
.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-card ul li {
    font-size: 0.95rem;
    color: #444;
    padding: 0.75rem 0;
    padding-right: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.category-card ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FF6B35, #FFA500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.category-card:nth-child(2) ul li::before {
    background: linear-gradient(135deg, #9333EA, #C026D3);
}

.category-card:nth-child(3) ul li::before {
    background: linear-gradient(135deg, #0EA5E9, #06B6D4);
}

.category-card:nth-child(4) ul li::before {
    background: linear-gradient(135deg, #10B981, #14B8A6);
}

.category-card:hover ul li {
    padding-right: 2.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .category-card {
        padding: 1.75rem;
    }

    .category-icon {
        font-size: 3.5rem;
    }

    .category-card h3 {
        font-size: 1.5rem;
    }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
    .channels-categories-section {
        padding: 3rem 0;
    }

    .channels-categories-section h2 {
        font-size: 2rem;
    }

    .channels-categories-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card {
        padding: 1.5rem;
    }

    .category-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .category-card h3 {
        font-size: 1.35rem;
    }

    .category-card ul li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-right: 2rem;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .category-card {
        padding: 1.25rem;
    }

    .category-icon {
        font-size: 2.5rem;
    }

    .category-card h3 {
        font-size: 1.25rem;
    }

    .category-card ul li {
        font-size: 0.85rem;
    }
}
