/* Global Typography Polish */
h1,
.h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2,
.h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.25;
}

h3,
.h3 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
}

h4,
.h4 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.35;
}

h5,
.h5 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

h6,
.h6 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

body {
    font-family: 'Inter', sans-serif;
    /* Ensure premium font */
    background-color: #0f0f0f;
    /* Deep dark background */
}

/* Text Gradient Utility */
.text-gradient {
    background: linear-gradient(to right, #e50914, #ff4d4d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* Ultimate Hero Section (For TV Shows & Movies) */
.ultimate-hero {
    position: relative;
    height: 85vh;
    width: 100%;
    margin-bottom: -100px;
    /* Overlap with content */
    z-index: 1;
}

.ultimate-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.ultimate-hero-overlay {
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0) 100%);
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 5%;
}

.ultimate-hero-content {
    max-width: 600px;
}

.ultimate-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.ultimate-hero-meta {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 15px;
    align-items: center;
}

.ultimate-hero-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ultimate-hero-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.ultimate-hero-actions .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s;
}

.ultimate-hero-actions .btn:hover {
    transform: translateY(-2px);
}

.ultimate-hero-actions .btn-primary {
    background: #e50914;
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.ultimate-hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(5px);
}

/* Section Titles */
.section__title .title {
    font-size: 2rem !important;
    /* Force larger size */
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

/* User Dashboard Polish */
.user__pannel {
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.userTab__area .nav-pills .nav-link {
    background: transparent;
    color: #cbd5e1;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 5px;
}

.userTab__area .nav-pills .nav-link.active,
.userTab__area .nav-pills .nav-link:hover {
    background: linear-gradient(135deg, #e50914, #ff4d4d);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    transform: translateY(-2px);
}

.userTab__area .tab-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
}

.user__info .title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Video Player Card Polish */
.videoCard {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}