/* 
 * Tadka TV Premium Style System
 * Designed to perfectly match screenshots and feel extremely premium
 */

/* Custom CSS Variables for styling */
:root {
    --bg-black: #000000;
    --bg-header: #050505;
    --bg-card-dark: #121212;
    --bg-dropdown: #181818;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --text-dark-gray: #7a7a7a;
    --nav-red: #ff1e27;
    --rang-purple: #8b5cf6;
    --glow-purple: rgba(139, 92, 246, 0.4);
    --border-gray: #242424;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

/* Base Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header & Navigation Bar (Pixel Copy of Screenshot) */
.main-header {
    background-color: var(--bg-header);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo Design - Nav in Red, rang in Purple, OTT superscript */
.logo-container {
    display: flex;
    align-items: center;
    user-select: none;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.logo-container img {
    height: 64px;
    max-height: 68px;
    width: auto;
    object-fit: contain;
    display: block;
    border: none;
    outline: none;
    background: transparent;
    filter: drop-shadow(0 2px 12px rgba(255, 60, 0, 0.4));
    transition: var(--transition-smooth);
}

.logo-container:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 20px rgba(255, 80, 0, 0.6));
}

.logo-nav {
    color: var(--nav-red);
    text-shadow: 0 0 10px rgba(255, 30, 39, 0.2);
}

.logo-rang {
    color: var(--rang-purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.logo-ott {
    font-size: 0.65rem;
    color: var(--text-white);
    font-weight: 400;
    align-self: flex-start;
    margin-top: 4px;
    margin-left: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Search Bar (Right aligned, next to login) */
.search-container {
    width: 500px;
    margin: 0;
}

.mobile-search-trigger {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.mobile-search-trigger:hover,
.mobile-search-trigger:active {
    color: var(--nav-red);
    background-color: rgba(255, 255, 255, 0.08);
}

.mobile-search-back-btn {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    padding: 8px 14px 8px 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-search-back-btn:hover {
    color: var(--nav-red);
}

.search-container form {
    width: 100%;
}

.search-box {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 10px 15px 10px 15px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

/* .search-icon {
    position: absolute;
    left: 15px;
    color: var(--text-gray);
    font-size: 1.5rem;
    pointer-events: none;
} */

.clear-btn {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 3px;
    transition: var(--transition-smooth);
}

.clear-btn:hover {
    color: var(--text-white);
}

/* Profile Area & Dropdown Menu */
.profile-container {
    position: relative;
    display: flex;
    align-items: center;
}

.login-link-btn {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 6px 12px;
    user-select: none;
}

.login-link-btn:hover {
    color: var(--nav-red);
}

.profile-trigger {
    cursor: pointer;
    user-select: none;
    padding: 5px;
}

.profile-avatar-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-avatar {
    color: #ffffff;
    font-size: 2.1rem;
    transition: var(--transition-smooth);
    opacity: 0.85;
    display: flex;
    align-items: center;
}

.profile-trigger:hover .profile-avatar,
.profile-trigger:focus .profile-avatar {
    opacity: 1;
    transform: scale(1.03);
}

.dropdown-arrow {
    color: var(--text-dark-gray);
    font-size: 0.75rem;
    transition: var(--transition-smooth);
}

.profile-trigger:hover .dropdown-arrow {
    color: var(--text-white);
}

/* Active Dropdown Styling (Sleek pixel copy of user menu) */
.profile-dropdown {
    position: absolute;
    top: 52px;
    right: 0;
    background-color: var(--bg-dropdown);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    width: 170px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    overflow: hidden;
}

.profile-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown ul {
    list-style: none;
    padding: 6px 0;
}

.profile-dropdown ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    font-size: 0.95rem;
    color: var(--text-white);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.profile-dropdown ul li a i {
    width: 16px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.profile-dropdown ul li a:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.profile-dropdown ul li.divider {
    height: 1px;
    background-color: var(--border-gray);
    margin: 6px 0;
}

.profile-dropdown ul li a.logout-item {
    color: rgba(255, 255, 255, 0.9);
}

.profile-dropdown ul li a.logout-item:hover {
    background-color: rgba(255, 30, 39, 0.15);
    color: var(--nav-red);
}

/* Page Layout Wrapper */
.content-wrapper {
    padding-top: 65px;
    /* Offset for fixed header */
    min-height: 100vh;
}

/* Hero Carousel Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Cinematic tall proportions matching screenshot */
    overflow: hidden;
    background-color: #000;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-background-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* Cinematic overlay gradients */
.slide-overlay-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: transparent;
    pointer-events: none;
}

.slide-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.slide-content {
    position: absolute;
    bottom: 12%;
    left: 6%;
    max-width: 620px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.title-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Legend of Hell 2 Medieval Stylized Font */
.slide-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.medieval-font {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.slide-badge-lang {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.slide-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Premium Buttons */
.slide-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-play {
    background-color: var(--text-white);
    color: var(--bg-black);
}

.btn-play:hover {
    background-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}

.btn-info {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-info:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 15;
    transition: var(--transition-smooth);
}

.slider-control:hover {
    color: var(--text-white);
    transform: translateY(-50%) scale(1.15);
}

.prev-control {
    left: 2%;
}

.next-control {
    right: 2%;
}

.slider-indicators {
    position: absolute;
    bottom: 5%;
    right: 6%;
    z-index: 15;
    display: flex;
    gap: 8px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator-dot.active {
    background-color: var(--text-white);
    width: 20px;
    border-radius: 4px;
}

/* Movie Rows Layout */
.rows-container {
    padding: 0 4% 10px 4%;
    position: relative;
    z-index: 20;
    margin-top: -30px;
    /* Pull content slightly over slider overlay */
}

.movie-section {
    margin-bottom: 30px;
}

.movie-section:last-child {
    margin-bottom: 0px !important;
}

.section-heading {
    font-size: 1.45rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

/* Horizontal scroll view for Continue Watching */
.movies-row {
    position: relative;
    width: 100%;
}

.flex-row-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
    /* Hide standard Firefox scrollbar */
}

.flex-row-scroll::-webkit-scrollbar {
    display: none;
    /* Hide standard Chrome/Safari scrollbar */
}

/* Movie Card System */
.movie-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-card-dark);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    user-select: none;
}

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

/* Continue Watching specific cards (smaller and custom styled below poster) */
.continue-watching-card {
    flex: 0 0 200px;
    width: 200px;
}

.poster-card {
    flex: 1;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    /* Highly responsive, uniform aspect ratios */
    background-color: #0b0b0b;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.movie-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

/* Play button hover overlay */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 5;
}

.movie-card:hover .play-overlay {
    opacity: 1;
}

/* Exact triangle play overlay (Screenshot 2: Continue Watching) */
.play-icon-triangle {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid var(--text-white);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
    transition: var(--transition-smooth);
}

.movie-card:hover .play-icon-triangle {
    transform: scale(1.15);
}

/* Circular play overlay */
.play-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-black);
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.movie-card:hover .play-icon-circle {
    transform: scale(1.08);
    background-color: var(--text-white);
}

/* Progress bar system */
.card-progress-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.25);
    z-index: 8;
}

.card-progress-bar-fill {
    height: 100%;
    background-color: var(--nav-red);
    box-shadow: 0 0 8px rgba(255, 30, 39, 0.5);
    transition: width 0.3s ease;
}

/* Info styling under Continue Watching poster */
.card-info-bottom {
    padding: 10px 6px;
    background-color: transparent;
}

.card-title-mini {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-subtitle-mini {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-dark-gray);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Top Hits Grid Layout */
.movies-grid-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 1400px) {
    .movies-grid-layout {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1100px) {
    .movies-grid-layout {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 800px) {
    .movies-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .movies-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Diagonal New Ribbon Badge */
.card-badge-new {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #007bc4;
    /* Screenshot blue-teal NEW badge */
    color: var(--text-white);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 12px;
    letter-spacing: 0.5px;
    box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Top Hits Overlay Info */
.card-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    transform: translateY(100%);
    transition: var(--transition-smooth);
    z-index: 8;
}

.movie-card:hover .card-info-overlay {
    transform: translateY(0);
}

.card-title-overlay {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.card-meta-overlay {
    display: flex;
    gap: 8px;
}

.badge-lang,
.badge-rating {
    font-size: 0.65rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 1px 6px;
    border-radius: 2px;
    font-weight: 700;
}

/* Fullscreen HTML5 Cinematic Player */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.94);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.video-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px var(--glow-purple);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.video-modal-overlay.open .video-modal-content {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.close-modal-btn:hover {
    background-color: var(--nav-red);
    border-color: transparent;
    transform: rotate(90deg);
}

.video-player-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-info-overlay {
    position: absolute;
    bottom: 50px;
    left: 40px;
    z-index: 5;
    pointer-events: none;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.video-player-wrapper:hover .video-info-overlay {
    opacity: 1;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #1a1a1a;
    border: 1px solid #2c2c2c;
    border-left: 4px solid var(--rang-purple);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--rang-purple);
    font-size: 1.1rem;
}

/* Search Fallbacks and layouts */
.no-results-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-dark-gray);
}

.no-results-message i {
    font-size: 3rem;
    margin-bottom: 12px;
}

.no-results-message p {
    font-size: 1.1rem;
}

/* ==========================================
 * 6. Footer Section Styling (Premium Dark)
 * ========================================== */
.main-footer {
    background-color: #050505;
    border-top: 1px solid #141414;
    padding: 30px 4% 25px 4%;
    margin-top: 0px !important;
    font-family: 'Inter', sans-serif;
    color: var(--text-gray);
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
    max-width: 420px;
}

.footer-logo img {
    height: 72px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(255, 60, 0, 0.25));
}

.footer-slogan {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a1a1aa;
    margin-bottom: 16px;
}

.footer-company-info {
    margin: 16px 0;
    font-size: 0.88rem;
    color: #a1a1aa;
    line-height: 1.8;
}

.footer-company-info i {
    color: var(--nav-red);
    margin-right: 8px;
    font-size: 0.95rem;
}

.footer-address-line strong {
    color: #f4f4f5;
}

.footer-full-address {
    font-size: 0.84rem;
    color: #a1a1aa;
    margin: 5px 0;
    line-height: 1.5;
}

.footer-action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 12px;
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    user-select: none;
}

.footer-pill-btn i {
    font-size: 1rem;
    color: #ffffff;
}

.footer-pill-btn:hover {
    background: #202024;
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.footer-links-wrapper {
    display: flex;
    gap: 75px;
    flex-wrap: wrap;
}

.footer-links-col {
    min-width: 160px;
}

.footer-links-col h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    font-size: 0.88rem;
    color: #a1a1aa;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-links-col ul li a:hover {
    color: #ffffff;
    padding-left: 2px;
}

.footer-bottom {
    max-width: 1800px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #71717a;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1a1aa;
    transition: all 0.25s ease;
}

.footer-socials a:hover {
    background: var(--nav-red);
    color: #ffffff;
    border-color: var(--nav-red);
    transform: translateY(-2px);
}
}

/* ==========================================
 * 7. Plans Selection Page Styling (Matches screenshot)
 * ========================================== */
.plans-container {
    max-width: 680px;
    margin: 40px auto 80px auto;
    padding: 0 20px;
    animation: fadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.plans-headline {
    text-align: center;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    letter-spacing: -1px;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Key Features orange card box in screenshot */
.features-box {
    background-color: #e06028;
    /* exact screenshot orange */
    border-radius: 8px;
    padding: 24px 30px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(224, 96, 40, 0.15);
    margin-bottom: 40px;
}

.features-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.features-list {
    list-style-type: disc;
    padding-left: 20px;
}

.features-list li {
    font-size: 0.92rem;
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.5;
}

.pricing-options-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

/* Plan Option Row Card matching screenshot */
.pricing-row {
    background-color: #000000;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    user-select: none;
}

/* Recommended pack borders */
.pricing-row.active {
    border-color: #e06028;
    box-shadow: 0 0 20px rgba(224, 96, 40, 0.15);
}

.pricing-row:hover {
    border-color: rgba(224, 96, 40, 0.5);
    transform: translateY(-2px);
}

/* Recommended floating badge matching screenshot */
.recommended-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background-color: #e06028;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 12px;
    border: 1px solid #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.pricing-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Circular Radio Selector */
.plan-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #555555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.plan-radio.selected {
    border-color: #e06028;
}

.radio-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
}

.plan-radio.selected .radio-inner {
    background-color: #e06028;
}

.plan-duration-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.pricing-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.plan-price-wrap {
    text-align: right;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
}

.price-original {
    font-size: 0.88rem;
    color: #888888;
    text-decoration: line-through;
    margin-top: 2px;
    display: block;
}

/* Pill badge shapes for discounts */
.discount-pill {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-align: center;
    min-width: 90px;
    user-select: none;
}

.orange-pill {
    background-color: #e06028;
    color: #ffffff;
}

.gray-pill {
    background-color: #2c2c2c;
    color: #b3b3b3;
}

.pay-plan-btn {
    background-color: #e06028;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1.05rem;
    border-radius: 4px;
    margin-top: 10px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(224, 96, 40, 0.3);
}

.pay-plan-btn:hover {
    background-color: #f26f33;
    box-shadow: 0 6px 15px rgba(224, 96, 40, 0.4);
}

/* Responsive Scaling details */
@media (max-width: 768px) {
    .plans-headline {
        font-size: 2.2rem;
    }

    .features-box {
        padding: 20px;
    }

    .pricing-row {
        padding: 14px 18px;
    }

    .plan-duration-name {
        font-size: 1rem;
    }

    .price-current {
        font-size: 1.1rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .footer-links-wrapper {
        gap: 40px;
        justify-content: flex-start;
        width: 100%;
    }

    .footer-links-col {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ==========================================
 * 8. Mobile Sidebar & Hamburger Styles
 * ========================================== */
.hamburger-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.hamburger-menu-btn:hover {
    color: var(--nav-red);
    transform: scale(1.08);
}

/* Sidebar Overlay Panel */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 1900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sidebar Aside Container */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background-color: #0c0c0c;
    border-right: 1px solid #1a1a1a;
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #1a1a1a;
    height: 65px;
}

.sidebar-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.close-sidebar-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.close-sidebar-btn:hover {
    color: var(--nav-red);
    transform: rotate(90deg);
}

.sidebar-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
}

.sidebar-nav ul li {
    margin-bottom: 6px;
}

.sidebar-nav ul li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    color: #dfdfdf;
    border-radius: 4px;
    font-size: 0.98rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.sidebar-nav ul li a i {
    width: 18px;
    font-size: 1rem;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.sidebar-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
}

.sidebar-nav ul li a:hover i {
    color: var(--nav-red);
}

.sidebar-nav ul li.divider {
    height: 1px;
    background-color: #1a1a1a;
    margin: 12px 0;
}

/* Highly Optimized Mobile and Small Screen Header Queries */
@media (max-width: 768px) {
    .hamburger-menu-btn {
        display: flex;
    }
    
    .main-header {
        height: 60px;
    }
    
    .content-wrapper {
        padding-top: 60px;
    }
    
    .logo-container img {
        height: 44px;
    }
    
    .search-container {
        display: none;
    }
    
    .search-box input {
        padding: 6px 12px 6px 30px;
        font-size: 0.85rem;
    }
    
    .search-icon {
        font-size: 0.8rem;
        left: 10px;
    }
    
    .header-right-actions {
        gap: 10px;
    }
    
    .login-link-btn {
        font-size: 0.88rem;
        padding: 4px 8px;
    }
    
    .profile-avatar {
        font-size: 1.7rem;
    }

    /* Hero Carousel Mobile Adjustments (Shorter height) */
    .hero-slider {
        height: 180px !important;
        min-height: 180px !important;
    }
    
    .slide-bg {
        object-position: center 20% !important;
    }
    
    .slide-content {
        bottom: 8px !important;
        left: 10px !important;
        max-width: 90% !important;
        gap: 4px !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .slide-title {
        font-size: 1.15rem !important;
        font-weight: 800 !important;
        text-shadow: 0 2px 4px rgba(0,0,0,0.85) !important;
    }
    
    .slide-badge-lang {
        padding: 1px 6px !important;
        font-size: 0.65rem !important;
    }
    
    .slide-description {
        display: none !important; /* Clean premium mobile style hides description */
    }
    
    .slide-actions {
        display: none !important; /* Matches screen mockup (no button clutter on mobile banner) */
    }
    
    .slider-control {
        width: 32px !important;
        height: 32px !important;
        font-size: 1.1rem !important;
    }
    
    /* Horizontal Scrolling Cards Left to Right on Mobile */
    .movies-grid-layout {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        gap: 12px !important;
        padding: 5px 0 15px 0 !important;
        scrollbar-width: none !important; /* Hide scrollbar Firefox */
        width: 100% !important;
    }
    
    .movies-grid-layout::-webkit-scrollbar {
        display: none !important; /* Hide scrollbar Chrome/Safari */
    }
    
    .movies-grid-layout .movie-card {
        flex: 0 0 115px !important; /* Exactly 3 cards fit, showing swipeability */
        width: 115px !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .movies-grid-layout .movie-card:hover {
        transform: none !important;
    }
    
    .movies-grid-layout .movie-card .card-image-wrapper {
        aspect-ratio: 2 / 3 !important;
    }
    
    .movie-section {
        margin-bottom: 25px !important;
    }
    
    .section-heading {
        font-size: 1.05rem !important;
        margin-bottom: 10px !important;
        font-weight: 700 !important;
    }
    
    /* Continue Watching special mobile rules */
    .continue-watching-card {
        flex: 0 0 115px !important;
        width: 115px !important;
    }

    .play-icon-triangle {
        bottom: 8px !important;
        left: 8px !important;
        border-top: 6px solid transparent !important;
        border-bottom: 6px solid transparent !important;
        border-left: 10px solid var(--text-white) !important;
    }
}

@media (max-width: 480px) {
    .search-container {
        flex: 0 1 130px;
        width: 130px;
    }
    
    .search-box input {
        font-size: 0.8rem;
        padding: 6px 8px 6px 26px;
    }
    
    .search-icon {
        left: 8px;
    }
    
    .logo-container img {
        height: 24px;
    }
    
    .header-container {
        padding: 0 2%;
    }
}

/* ==========================================
 * 9. Movie/Web Series Details Page Styling
 * ========================================== */
.details-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    padding: 100px 4% 50px 4%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.details-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.details-poster-col {
    flex: 0 0 320px;
    max-width: 320px;
}

.details-poster-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.details-poster-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-badge-new {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #007bc4;
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.3);
}

.details-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.details-category-tag {
    color: var(--nav-red);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 30, 39, 0.15);
}

.details-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-white);
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.details-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.details-meta-badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
}

.details-meta-year {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 1rem;
}

.details-meta-duration {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1rem;
}

/* Details Action Buttons */
.details-actions-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.btn-detail-play {
    background-color: var(--text-white);
    color: var(--bg-black);
    border: none;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-detail-play:hover {
    background-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

.btn-detail-watchlist {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.btn-detail-watchlist:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.details-desc-box {
    max-width: 800px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 10px;
}

.details-desc-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.details-desc-box p {
    color: var(--text-gray);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Master body padding */
.details-body-container {
    padding: 50px 4% 60px 4%;
    max-width: 1800px;
    margin: 0 auto;
}

/* TV / Web Series Episodes List */
.episodes-section {
    margin-bottom: 50px;
}

.episodes-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.episode-row-card {
    display: flex;
    gap: 25px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.episode-row-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.episode-thumb-wrapper {
    position: relative;
    flex: 0 0 200px;
    width: 200px;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    background-color: #000;
}

.episode-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.episode-row-card:hover .episode-thumb-wrapper img {
    transform: scale(1.05);
}

.episode-thumb-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-white);
    transition: var(--transition-smooth);
    z-index: 5;
}

.episode-row-card:hover .episode-thumb-play {
    opacity: 1;
}

.episode-num-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background-color: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 6;
}

.episode-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.episode-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.episode-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
}

.episode-duration {
    font-size: 0.88rem;
    color: var(--nav-red);
    font-weight: 700;
}

.episode-desc {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
}

.movie-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Details Page responsive overrides */
@media (max-width: 992px) {
    .details-hero {
        min-height: auto;
        padding-top: 90px;
    }
    
    .details-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .details-poster-col {
        flex: 0 0 240px;
        max-width: 240px;
        margin: 0 auto;
    }
    
    .details-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .details-hero {
        padding-top: 80px;
        padding-bottom: 30px;
    }
    
    .details-poster-col {
        display: none;
    }
    
    .details-title {
        font-size: 2rem;
    }
    
    .details-actions-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }
    
    .btn-detail-play,
    .btn-detail-watchlist {
        justify-content: center;
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .episode-row-card {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }

    .episode-thumb-wrapper {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .episode-title {
        font-size: 1rem;
    }
    
    .episode-desc {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }

    /* Keep details links flexible in horizontal scrolling rows on mobile */
    .movies-grid-layout .movie-card-link {
        flex: 0 0 115px !important;
        width: 115px !important;
        display: block !important;
    }
    
    .movies-grid-layout .movie-card-link .movie-card {
        width: 100% !important;
        flex: none !important;
    }
}

/* ==========================================
 * 9. Information Pages (About, Contact, Legal)
 * ========================================== */
.info-page-container {
    max-width: 1000px;
    margin: 40px auto 80px auto;
    padding: 0 20px;
    animation: fadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.info-headline {
    text-align: center;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    letter-spacing: -1px;
    margin-bottom: 35px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-card {
    background-color: var(--bg-dropdown);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
    color: var(--text-gray);
}

.info-card h2, .info-card h3 {
    color: var(--text-white);
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.info-card h2 {
    font-size: 1.6rem;
    border-left: 4px solid var(--nav-red);
    padding-left: 15px;
}

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

.info-card p {
    margin-bottom: 18px;
    font-size: 1rem;
}

.info-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.info-card ul li {
    margin-bottom: 8px;
    font-size: 0.98rem;
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .info-card {
        padding: 24px;
    }
    .info-headline {
        font-size: 2.2rem;
    }
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-method i {
    font-size: 1.4rem;
    color: var(--nav-red);
    background: rgba(255, 30, 39, 0.1);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 30, 39, 0.2);
}

.contact-method-detail h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-form-col form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--nav-red);
    background-color: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: var(--nav-red);
    color: var(--text-white);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background-color: #ff3c43;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 30, 39, 0.3);
}

/* Custom Side-by-Side Contact Cards (Screenshot matching) */
.contact-container-custom {
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 4%;
}

.contact-title-custom {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    margin-top: 10px;
}

.contact-desc-custom {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 1000px;
}

.contact-grid-custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-card-custom {
    background-color: #0b0b0b;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-card-custom h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-card-custom h3:not(:first-child) {
    margin-top: 30px;
}

.contact-card-custom .entity-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-card-custom .support-label {
    font-size: 0.9rem;
    color: var(--text-dark-gray);
    margin-bottom: 5px;
    display: block;
}

.contact-card-custom .support-value {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card-custom .font-pink {
    color: #ff007f; /* Strong hot pink color matching user screenshot */
}

.contact-card-custom .address-value {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 0;
}

.contact-card-custom .card-divider-custom {
    height: 1px;
    background-color: #1a1a1a;
    margin-top: 60px;
    margin-bottom: 25px;
}

.contact-card-custom .partnership-text {
    font-size: 0.85rem;
    color: #555555;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-grid-custom {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-card-custom {
        padding: 24px;
    }
    .contact-title-custom {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Universal Mobile & Tablet Responsiveness System
   ========================================================================== */

@media (max-width: 992px) {
    .main-header {
        height: 70px;
    }
    .header-container {
        padding: 0 16px;
    }
    .search-container {
        width: 240px;
    }
    .logo-container img {
        height: 56px;
    }
}

@media (max-width: 768px) {
    .main-header {
        height: 65px;
    }
    .header-right-actions {
        gap: 12px;
    }
    .mobile-search-trigger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .search-container {
        display: none;
    }
    .search-container.active-mobile-search {
        display: flex !important;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 65px;
        background-color: #09090e;
        padding: 0 16px;
        z-index: 2000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        animation: slideDownMobileSearch 0.22s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .search-container.active-mobile-search .mobile-search-back-btn {
        display: flex;
        align-items: center;
    }
    .search-container.active-mobile-search form {
        flex: 1;
    }
    .search-container.active-mobile-search .search-box input {
        padding: 10px 16px;
        font-size: 0.95rem;
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.25);
    }
    .logo-container img {
        height: 48px;
    }
    
    .hero-banner {
        height: 60vh;
        min-height: 420px;
    }
    .banner-content {
        padding-left: 20px;
        padding-bottom: 30px;
        max-width: 90%;
    }
    .banner-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    .banner-description {
        font-size: 0.88rem;
        -webkit-line-clamp: 2;
    }
    .banner-actions {
        flex-direction: row;
        gap: 10px;
    }
    .banner-actions .btn {
        padding: 10px 18px;
        font-size: 0.88rem;
    }

    .movies-grid-layout {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
        gap: 12px !important;
    }

    .movie-card {
        border-radius: 8px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-links-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    .movies-grid-layout {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .banner-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Profile & Plan Pay Button Responsive Styling
   ========================================================================== */
.profile-page-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    color: #fff;
}

.profile-card-wrapper {
    background: linear-gradient(135deg, rgba(26,26,40,0.8), rgba(18,18,30,0.95));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.profile-header-flex {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 28px;
}

.profile-avatar-circle {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, #e63946, #b02a37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(230,57,70,0.4);
}

.profile-title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: #ffffff;
}

.profile-subtitle {
    color: #9494a8;
    font-size: 15px;
    margin: 0;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.profile-info-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 20px;
}

.info-label {
    color: #8888a0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: #fff;
    font-size: 17px;
    margin: 8px 0 0 0;
    font-weight: 600;
    word-break: break-all;
}

.info-value.vip-badge {
    color: #e63946;
    font-weight: 700;
}

.profile-actions-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.profile-btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.profile-btn.btn-upgrade {
    background: #e63946;
    color: #fff;
}

.profile-btn.btn-upgrade:hover {
    background: #ff3c43;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230,57,70,0.4);
}

.profile-btn.btn-watchlist {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.profile-btn.btn-watchlist:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.pay-button-container {
    text-align: center;
    margin-top: 40px;
    padding: 0 16px;
    width: 100%;
}

.pay-plan-btn-responsive {
    background: linear-gradient(135deg, #e63946, #c92a37);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Outfit', 'Inter', sans-serif;
    border-radius: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.pay-btn-text {
    white-space: nowrap;
    display: inline-block;
}

.pay-plan-btn-responsive:hover {
    background: linear-gradient(135deg, #ff3c43, #d93240);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.6);
}

@media (max-width: 768px) {
    .profile-card-wrapper {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .profile-header-flex {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .profile-avatar-circle {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 30px;
    }

    .profile-title {
        font-size: 22px;
    }

    .profile-subtitle {
        font-size: 13px;
    }

    .profile-actions-flex {
        flex-direction: column;
        width: 100%;
    }

    .profile-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .pay-plan-btn-responsive {
        width: 100%;
        max-width: 100%;
        padding: 14px 16px;
        font-size: 0.92rem;
        border-radius: 12px;
        white-space: normal;
        text-align: center;
    }

    .pay-btn-text {
        white-space: normal;
        line-height: 1.3;
    }
}

@keyframes slideDownMobileSearch {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==========================================
   Profile Dashboard WOW System
   ========================================== */
.profile-page-wrapper {
    min-height: 80vh;
    padding: 50px 20px 80px;
    background: radial-gradient(circle at top center, rgba(255, 126, 27, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
}

.profile-main-container {
    max-width: 960px;
    margin: 0 auto;
}

/* Header Banner Card */
.profile-header-banner {
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.9) 0%, rgba(15, 15, 25, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px 32px;
    margin-bottom: 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.profile-banner-flex {
    display: flex;
    align-items: center;
    gap: 28px;
}

.profile-avatar-box {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: linear-gradient(135deg, #ff7e1b, #eb1c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 126, 27, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.profile-banner-info {
    flex: 1;
}

.status-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.subscriber-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscriber-badge.active-badge {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #2ecc71;
}

.subscriber-badge.vip-badge {
    background: rgba(255, 126, 27, 0.15);
    border: 1px solid rgba(255, 126, 27, 0.4);
    color: #ff7e1b;
}

.profile-user-title {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.profile-user-subtitle {
    font-size: 14px;
    color: #9494a8;
    margin: 0;
}

/* 2-Column Cards Grid */
.profile-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.profile-dashboard-card {
    background: rgba(20, 20, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
}

.profile-dashboard-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.highlighted-plan-card {
    background: linear-gradient(135deg, rgba(255, 126, 27, 0.08), rgba(139, 92, 246, 0.08));
    border-color: rgba(255, 126, 27, 0.25);
}

.card-header-flex {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
}

.card-icon-circle.orange-glow {
    background: rgba(255, 126, 27, 0.2);
    color: #ff7e1b;
    border: 1px solid rgba(255, 126, 27, 0.4);
}

.card-icon-circle.purple-glow {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.card-header-flex h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.profile-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item-label {
    font-size: 12px;
    font-weight: 600;
    color: #8888a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-value-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-value-wrap i {
    font-size: 15px;
    color: #9494a8;
}

.item-value-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.item-value-text.highlight-orange {
    color: #ff7e1b;
    font-weight: 700;
    font-size: 17px;
}

.item-value-text.highlight-green {
    color: #2ecc71;
    font-weight: 700;
    font-size: 17px;
}

/* Action Control Bar */
.profile-actions-bar {
    display: flex;
    align-items: center;
    gap: 18px;
}

.profile-action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.primary-action-btn {
    background: linear-gradient(135deg, #ff7e1b, #eb1c1c);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(235, 28, 28, 0.35);
}

.primary-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(235, 28, 28, 0.5);
}

.secondary-action-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.secondary-action-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
    .profile-page-wrapper {
        padding: 24px 14px 60px;
    }

    .profile-header-banner {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .profile-banner-flex {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .status-badge-row {
        justify-content: center;
    }

    .profile-user-title {
        font-size: 24px;
    }

    .profile-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .profile-dashboard-card {
        padding: 20px 18px;
        border-radius: 16px;
    }

    .profile-actions-bar {
        flex-direction: column;
        gap: 12px;
    }

    .profile-action-btn {
        width: 100%;
    }
}

/* ==========================================
   Responsive Mobile Navbar & Logo Optimization
   ========================================== */
@media (max-width: 768px) {
    .main-header {
        height: 60px;
        padding: 0 14px;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .logo-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-container img {
        height: 52px !important;
        max-height: 52px !important;
        max-width: 140px;
        object-fit: contain;
    }

    .hamburger-menu-btn, .mobile-search-trigger {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 19px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .main-header {
        height: 60px;
        padding: 0 10px;
    }

    .logo-container img {
        height: 46px !important;
        max-height: 46px !important;
        max-width: 120px;
    }
}

/* ==========================================
   Responsive Mobile Footer Optimization & 2-Column Links Grid
   ========================================== */
@media (max-width: 768px) {
    .rows-container {
        padding-bottom: 0px !important;
    }

    .movie-section {
        margin-bottom: 12px !important;
    }

    .movie-section:last-child, #section-short-videos {
        margin-bottom: 0px !important;
    }

    .main-footer {
        margin-top: 0px !important;
        padding: 20px 16px 20px 16px !important;
    }

    .footer-container {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 20px;
    }

    .footer-brand {
        max-width: 100%;
        width: 100%;
    }

    .footer-links-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px 16px !important;
        width: 100%;
    }

    .footer-links-col {
        min-width: 0 !important;
    }

    .footer-action-buttons {
        gap: 10px;
        margin-top: 16px;
    }

    .footer-pill-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 18px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
}