/* Priority Visa Te Charcha Season 4 - Cinematic Redesign */

.priority-charcha-page {
    font-family: inherit;
    background-color: #f7f8fa; /* Light grey for the main content area */
}

.priority-charcha-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.priority-charcha-hero {
    background-color: #ffffff;
    background-image: radial-gradient(circle at 75% 50%, rgba(229, 9, 20, 0.05) 0%, transparent 60%);
    color: #111111;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px; /* Transition divider adds space below */
}

.priority-charcha-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 500px;
}

.priority-charcha-hero-content {
    flex: 1;
    padding-right: 40px;
}

.priority-charcha-hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.priority-charcha-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #e50914;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.priority-charcha-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: #111111;
}

.priority-charcha-season {
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
    line-height: 1;
    margin-bottom: 2rem;
    background: linear-gradient(180deg, #111111 0%, rgba(17,17,17,0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.priority-charcha-coming-soon {
    display: inline-flex;
    align-items: center;
    background: rgba(229, 9, 20, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111111;
    margin-bottom: 2rem;
}

.pulse-dot {
    height: 10px;
    width: 10px;
    background-color: #e50914;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(229, 9, 20, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

.priority-charcha-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 0.5rem;
}

.priority-charcha-description {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 2.5rem;
}

/* Visual Waveform */
.abstract-waveform {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.abstract-waveform span {
    display: block;
    width: 15px;
    background-color: #e50914;
    border-radius: 20px;
    animation: waveform-bounce 1.5s infinite ease-in-out alternate;
}

.abstract-waveform span:nth-child(1) { height: 40px; animation-delay: 0.1s; }
.abstract-waveform span:nth-child(2) { height: 120px; animation-delay: 0.4s; }
.abstract-waveform span:nth-child(3) { height: 200px; animation-delay: 0.2s; }
.abstract-waveform span:nth-child(4) { height: 90px; animation-delay: 0.5s; }
.abstract-waveform span:nth-child(5) { height: 50px; animation-delay: 0.3s; }

@keyframes waveform-bounce {
    0% { transform: scaleY(0.5); opacity: 0.5; }
    100% { transform: scaleY(1); opacity: 1; }
}

.hero-glow-red {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #e50914;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Hero Divider */
.priority-charcha-divider {
    position: absolute;
    bottom: -1px; /* Prevents 1px gaps */
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
}

.priority-charcha-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Primary Button */
.priority-charcha-btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: #e50914;
    color: #ffffff;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 1.1rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.priority-charcha-btn-primary:hover {
    background-color: #ff0f1a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

.priority-charcha-btn-primary i {
    margin-right: 12px;
    font-size: 1.3rem;
}

.priority-charcha-btn-secondary {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #050a15;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.priority-charcha-btn-secondary:hover {
    background-color: #f0f0f0;
    color: #050a15;
}

/* ----------------------------------------------------
   VIDEOS SECTION
---------------------------------------------------- */
.priority-charcha-videos-section {
    padding: 80px 0 120px 0;
}

.priority-charcha-section-header {
    margin-bottom: 3rem;
}

.priority-charcha-badge {
    color: #e50914;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.priority-charcha-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px 0;
}

.priority-charcha-section-header p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

/* Featured Video */
.priority-charcha-featured-video {
    margin-bottom: 60px;
}

.priority-charcha-card.featured {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border: 1px solid #eaeaea;
    transition: all 0.35s ease;
}

.priority-charcha-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    border-bottom: 3px solid #e50914;
}

.priority-charcha-card.featured .priority-charcha-video-link {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.priority-charcha-card.featured .priority-charcha-thumbnail-wrapper {
    flex: 0 0 60%;
    padding-top: 33.75%; /* 16:9 ratio for the 60% width */
}

.priority-charcha-card.featured .priority-charcha-video-info {
    flex: 0 0 40%;
    padding: 40px;
    justify-content: center;
}

.priority-charcha-card.featured .priority-charcha-video-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    -webkit-line-clamp: 4;
}

.priority-charcha-card.featured .priority-charcha-date {
    font-size: 1rem;
    margin-bottom: 30px;
}

.priority-charcha-card.featured .priority-charcha-watch-label {
    display: inline-flex;
    align-items: center;
    background: #f0f2f5;
    color: #111;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.priority-charcha-card.featured:hover .priority-charcha-watch-label {
    background: #e50914;
    color: #fff;
}

/* Standard Video Grid */
.priority-charcha-grid-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.priority-charcha-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Standard Card */
.priority-charcha-card:not(.featured) {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    border: 1px solid #eaeaea;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.priority-charcha-card:not(.featured):hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-bottom: 3px solid #e50914;
}

.priority-charcha-video-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.priority-charcha-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #e9ecef;
}

.priority-charcha-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.priority-charcha-card:hover .priority-charcha-thumbnail {
    transform: scale(1.08);
}

.priority-charcha-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(10, 17, 40, 0.5);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0.9;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.priority-charcha-card:hover .priority-charcha-play-overlay {
    background: #e50914;
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.priority-charcha-video-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.priority-charcha-video-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.priority-charcha-card:hover .priority-charcha-video-title {
    color: #e50914;
}

.priority-charcha-video-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.priority-charcha-date {
    color: #777;
    font-weight: 500;
}

.priority-charcha-watch-label {
    color: #111;
    font-weight: 700;
    transition: color 0.3s;
}

.priority-charcha-card:hover .priority-charcha-watch-label {
    color: #e50914;
}

/* Skeletons */
.skeleton .skeleton-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e2e5e7;
}

.skeleton .skeleton-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.skeleton .skeleton-text {
    background-color: #e2e5e7;
    border-radius: 4px;
}

.skeleton-title {
    height: 24px;
    margin-bottom: 15px;
    width: 90%;
}

.skeleton-date {
    height: 16px;
    margin-top: auto;
    width: 40%;
}

.skeleton-thumbnail, .skeleton-text {
    animation: skeleton-loading 1.5s infinite linear;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
}

/* Error State */
.priority-charcha-video-error {
    text-align: center;
    padding: 60px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.priority-charcha-video-error p {
    color: #e50914;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 500;
}

/* ----------------------------------------------------
   FINAL CTA SECTION
---------------------------------------------------- */
.priority-charcha-cta-section {
    position: relative;
    text-align: center;
    padding: 100px 0;
    background-color: #ffffff;
    color: #111111;
    overflow: hidden;
}

.priority-charcha-cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: #e50914;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.priority-charcha-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.priority-charcha-cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #111111;
}

.priority-charcha-cta-section p {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.priority-charcha-cta-season {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */
@media (max-width: 1200px) {
    .priority-charcha-title { font-size: 3.5rem; }
    .priority-charcha-season { font-size: 4rem; }
    .priority-charcha-card.featured .priority-charcha-thumbnail-wrapper { flex: 0 0 55%; padding-top: 30.93%; }
    .priority-charcha-card.featured .priority-charcha-video-info { flex: 0 0 45%; }
}

@media (max-width: 991px) {
    .priority-charcha-hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .priority-charcha-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .priority-charcha-hero-visual {
        height: 250px;
        width: 100%;
    }
    .hero-glow-red { width: 200px; height: 200px; }
    
    /* Grid drops to 2 columns */
    .priority-charcha-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Featured collapses to stacked */
    .priority-charcha-card.featured {
        flex-direction: column;
    }
    .priority-charcha-card.featured .priority-charcha-video-link {
        flex-direction: column;
    }
    .priority-charcha-card.featured .priority-charcha-thumbnail-wrapper {
        flex: auto;
        padding-top: 56.25%;
    }
    .priority-charcha-card.featured .priority-charcha-video-info {
        flex: auto;
        padding: 30px;
    }
    .priority-charcha-card.featured .priority-charcha-video-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .priority-charcha-title { font-size: 2.8rem; }
    .priority-charcha-season { font-size: 3.5rem; }
    .priority-charcha-subtitle { font-size: 1.2rem; }
    .priority-charcha-section-header h2 { font-size: 2rem; }
    .priority-charcha-cta-section h2 { font-size: 2.2rem; }
}

@media (max-width: 576px) {
    /* Grid drops to 1 column */
    .priority-charcha-video-grid {
        grid-template-columns: 1fr;
    }
    .priority-charcha-title { font-size: 2.2rem; }
    .priority-charcha-season { font-size: 2.8rem; }
    .priority-charcha-card.featured .priority-charcha-video-title { font-size: 1.4rem; }
    .priority-charcha-btn-primary { width: 100%; justify-content: center; }
}
