/* ==========================================
   Cell C Entertainment Page Styles
   ========================================== */

   :root {
    --purple-primary: #6B46C1;
    --purple-light: #9F7AEA;
}

/* Entertainment Hero Section */
.entertainment-hero {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    padding: 5rem 0;
    text-align: center;
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
}

.entertainment-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--purple-primary);
    line-height: 1.2;
    margin: 0;
}

/* Uplife Portals Section */
.uplife-portals-section {
    padding: 5rem 0;
    background: var(--cellc-white);
}

.portals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.portals-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple-primary);
    margin: 0;
}

.carousel-controls {
    display: flex;
    gap: 1rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(155, 122, 234, 0.2);
    border: none;
    color: var(--purple-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--purple-light);
    color: white;
    transform: scale(1.1);
}

/* Carousel Wrapper */
.portals-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.portals-carousel {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
}

.portal-card {
    min-width: calc(25% - 1.5rem);
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.portal-card:hover {
    transform: translateY(-10px);
}

.portal-card-inner {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portal-icon {
    width: 100%;
    max-width: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}


.portal-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portal-badge {
    background: var(--purple-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: absolute;
    bottom: 30px;
}

.portal-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--cellc-dark);
    margin: 0;
    margin-bottom: 10px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(107, 70, 193, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: var(--purple-primary);
    width: 30px;
    border-radius: 6px;
}

/* Help Section */
.help-section {
    padding: 5rem 0;
    background: var(--cellc-light-gray);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.help-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.help-icon {
    margin-bottom: 1.5rem;
}

.help-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cellc-dark);
    margin-bottom: 1rem;
}

.help-description {
    font-size: 1rem;
    color: var(--cellc-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.help-link {
    color: var(--cellc-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: #d04f00;
}

/* Uplife Banner Section */
.uplife-banner-section {
    position: relative;
    padding: 6rem 0;
    background: var(--cellc-dark);
    overflow: hidden;
}

.uplife-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.cellc.co.za/cellc/img/world-of-cellc/gaming/uplife-content-tiles-desktop-new.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.uplife-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.uplife-logo {
    height: 80px;
    margin-bottom: 2rem;
}

.uplife-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-browse-uplife {
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--purple-primary);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-browse-uplife:hover {
    background: var(--purple-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(107, 70, 193, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .portal-card {
        min-width: calc(33.333% - 1.34rem);
    }
}

@media (max-width: 1024px) {
    .entertainment-title {
        font-size: 2.5rem;
    }

    .portal-card {
        min-width: calc(50% - 1rem);
    }

    .help-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .entertainment-title {
        font-size: 2rem;
    }

    .portals-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .portal-card {
        min-width: 100%;
    }



    .portal-name {
        font-size: 1.5rem;
    }

    .uplife-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .entertainment-title {
        font-size: 1.75rem;
    }

    .portals-title {
        font-size: 2rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .btn-browse-uplife {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .uplife-logo {
        height: 60px;
    }
}