/* Core Styling Variables & System Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --gold-primary: #dfb76c;
    --gold-dark: #b38f43;
    --gold-bright: #fbe6ad;
    --bg-deep-black: #050506;
    --bg-card-surface: rgba(22, 22, 26, 0.75);
    --border-gold-low: rgba(223, 183, 108, 0.18);
}

body {
    background-color: var(--bg-deep-black);
    color: #ffffff;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 0%, #17140f 0%, var(--bg-deep-black) 80%);
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 1. HEADER SECTIONS */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: rgba(5, 5, 6, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo-area .main-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-area .sub-logo {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: #777;
    text-transform: uppercase;
    margin-top: -3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: #b5b5bc;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--gold-primary);
    text-shadow: 0 0 8px rgba(223, 183, 108, 0.3);
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-socials a {
    color: #b5b5bc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.header-socials a:hover {
    color: var(--gold-primary);
}

.quick-live-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000 !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem !important;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(223, 183, 108, 0.25);
}

/* 2. DYNAMIC HERO SLIDER & RIGHT INTERACTIVE LOGO BAR */
.hero-slider-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    border-bottom: 1px solid var(--border-gold-low);
    background: linear-gradient(90deg, rgba(5,5,6,1) 40%, rgba(5,5,6,0.3) 100%), url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?q=80&w=1920') no-repeat center center/cover;
    transition: background 0.5s ease-in-out;
}

/* Right Side Channels bar alignment */
.hero-right-logos-bar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
    border-left: 1px solid rgba(223, 183, 108, 0.1);
    padding-left: 25px;
}

.nav-logo-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-logo-item:hover .logo-circle,
.nav-logo-item.active .logo-circle {
    color: #050506;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(223, 183, 108, 0.4);
}

/* Tooltip updated to open on LEFT side since bar is on Right */
.logo-tooltip {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: rgba(15, 15, 18, 0.95);
    border: 1px solid var(--gold-primary);
    color: #fff;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.nav-logo-item:hover .logo-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.hero-content-wrapper {
    max-width: 600px;
    margin-right: 30px;
    flex-grow: 1;
}

.badge-featured {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    background: rgba(223, 183, 108, 0.05);
    padding: 6px 14px;
    display: inline-block;
    border-radius: 2px;
    margin-bottom: 25px;
    font-weight: 700;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-synopsis {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 32px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #050506;
    box-shadow: 0 4px 20px rgba(223, 183, 108, 0.3);
}

.btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(223, 183, 108, 0.5);
}

.btn-secondary-blank {
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.btn-secondary-blank:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(223, 183, 108, 0.05);
}

/* 3. LIVE TICKER STYLING */
.trending-ticker {
    display: flex;
    background: #09090c;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    height: 45px;
    align-items: center;
    overflow: hidden;
}

.ticker-label {
    background: var(--gold-dark);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
    z-index: 5;
}

.ticker-wrap { overflow: hidden; width: 100%; }
.ticker-move { display: flex; white-space: nowrap; animation: tickerLoop 30s linear infinite; }
.ticker-move span { padding-right: 50px; font-size: 0.8rem; color: #9999a3; font-weight: 500; }

@keyframes tickerLoop {
    0% { transform: translate3d(100%, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* 4. CHANNELS PORTFOLIO GRID */
.network-channels-section { padding: 100px 6%; }
.segment-header { text-align: center; margin-bottom: 70px; }
.segment-header h2 { font-family: 'Cinzel', serif; font-size: 2.2rem; letter-spacing: 3px; margin-bottom: 5px; }
.segment-header p { font-size: 0.8rem; color: var(--gold-primary); letter-spacing: 5px; font-weight: 600; }
.luxury-divider { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-primary), transparent); margin: 20px auto 0; }
.channels-luxury-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }

.luxury-card {
    position: relative;
    background: var(--bg-card-surface);
    border: 1px solid var(--border-gold-low);
    border-radius: 8px;
    padding: 40px 30px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-card:hover {
    transform: translateY(-8px);
    border-color: rgba(223, 183, 108, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 25px rgba(223,183,108,0.05);
}

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(223,183,108,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.luxury-card:hover .card-glow-effect { opacity: 1; }
.channel-brand-icon { font-size: 2rem; color: var(--gold-primary); margin-bottom: 25px; }
.luxury-card h3 { font-family: 'Cinzel', serif; font-size: 1.35rem; font-weight: 700; margin-bottom: 6px; }
.channel-tag { font-size: 0.7rem; color: var(--gold-primary); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; display: inline-block; margin-bottom: 20px; }
.channel-brief { font-size: 0.85rem; line-height: 1.6; color: #9999a3; margin-bottom: 35px; height: 75px; }
.channel-buttons { display: flex; flex-direction: column; gap: 12px; }

.btn-action { text-align: center; text-decoration: none; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; padding: 12px; border-radius: 4px; transition: all 0.3s; }
.btn-watch { background: rgba(223, 183, 108, 0.08); color: var(--gold-primary); border: 1px solid rgba(223, 183, 108, 0.25); }
.btn-watch:hover { background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark)); color: #000; border-color: transparent; }
.btn-guide { background: transparent; color: #aaa; border: 1px solid rgba(255,255,255,0.08); }
.btn-guide:hover { border-color: rgba(255,255,255,0.2); color: #fff; }

/* 5. MEDIA & PRESS CORNER */
.media-news-section { background: #09090c; padding: 90px 6%; border-top: 1px solid rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.03); }
.news-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 20px; }
.news-item { background: rgba(255,255,255,0.01); border: 1px solid rgba(255,255,255,0.03); padding: 30px; border-radius: 4px; }
.news-date { font-size: 0.7rem; color: var(--gold-primary); font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; }
.news-item h4 { font-size: 1.15rem; margin-bottom: 12px; font-weight: 600; }
.news-item p { font-size: 0.85rem; color: #888892; line-height: 1.6; margin-bottom: 20px; }
.read-more { font-size: 0.8rem; color: var(--gold-primary); text-decoration: none; font-weight: 600; }
.read-more i { font-size: 0.7rem; margin-left: 5px; }
.read-more:hover { color: #fff; }

/* 6. CORPORATE ABOUT SECTION */
.corporate-about-section { padding: 100px 6%; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text-panel h3 { font-family: 'Cinzel', serif; font-size: 2rem; margin-bottom: 20px; }
.about-text-panel p { font-size: 0.95rem; color: #aaa; line-height: 1.7; margin-bottom: 40px; }
.stats-counter-row { display: flex; gap: 40px; }
.stat-box span { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: var(--gold-primary); }
.stat-box p { font-size: 0.75rem; letter-spacing: 1px; color: #666; margin-top: 5px; }
.about-visual-panel { height: 350px; background: linear-gradient(135deg, rgba(223,183,108,0.03), rgba(0,0,0,0.4)), url('images/hasikechatkhara.png') no-repeat center center/cover; border-radius: 6px; position: relative; }
.gilded-frame-decoration { position: absolute; top: -15px; left: -15px; right: 15px; bottom: 15px; border: 1px solid var(--border-gold-low); z-index: -1; pointer-events: none; }

/* 7. DETAILED FOOTER SYSTEM */
footer { background: #030304; padding: 80px 6% 30px; border-top: 1px solid rgba(255,255,255,0.03); }
.footer-top-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-brand-column .footer-logo { font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 15px; }
.footer-tagline { font-size: 0.85rem; line-height: 1.6; color: #666670; max-width: 450px; }
.footer-links-column h5 { font-size: 0.75rem; letter-spacing: 2px; color: #fff; margin-bottom: 20px; font-weight: 700; }
.footer-links-column ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links-column ul li a { text-decoration: none; color: #666670; font-size: 0.8rem; font-weight: 500; transition: color 0.3s; }
.footer-links-column ul li a:hover { color: var(--gold-primary); }
.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.04); padding-top: 30px; }
.copyright-text { font-size: 0.75rem; color: #44444c; }
.footer-social-icons { display: flex; gap: 15px; }
.footer-social-icons a { color: #44444c; font-size: 1rem; transition: color 0.3s; }
.footer-social-icons a:hover { color: var(--gold-primary); }

/* RESPONSIVE LAYOUT MEDIA BREAKS */
@media(max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-top-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media(max-width: 768px) {
    header { flex-direction: column; gap: 15px; text-align: center; }
    nav ul { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .main-title { font-size: 2.6rem; }
    .hero-slider-section { flex-direction: column !important; height: auto; padding: 60px 6%; text-align: center; gap: 30px; }
    .hero-right-logos-bar { flex-direction: row; border-left: none; border-top: 1px solid rgba(223, 183, 108, 0.1); padding-left: 0; padding-top: 20px; width: 100%; justify-content: center; }
    .logo-tooltip { display: none; }
    .hero-content-wrapper { margin-right: 0; }
    .hero-cta-group { justify-content: center; }
    .news-container { grid-template-columns: 1fr; }
    .footer-bottom-bar { flex-direction: column; gap: 15px; }
}

/* Hero Section ke logos ko gol circle me fit karne ke liye */
.channel-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Isse aapka logo stretch (khichega) nahi hoga aur frame me fit rahega */
    border-radius: 50%;  /* Agar logo ko poora gol rakhna hai */
    padding: 5px;        /* Logo ke charo taraf thodi jagah chorne ke liye */
}

/* Niche wale 4 Cards (Grid) ke logos ko style karne ke liye */
.grid-logo-img {
    height: 50px;        /* Aap apne hisab se height set kar sakte hain */
    width: auto;         /* Width automatic adjust ho jayegi */
    object-fit: contain;
    margin-bottom: 10px;
}

/* Jab logo par hover ho toh use thoda sa effect dene ke liye */
.nav-logo-item:hover .channel-logo-img,
.nav-logo-item.active .channel-logo-img {
    filter: brightness(1.2); /* Hover karne par logo thoda bright dikhega */
}

/* --- LINK COLOR FIX (BLUE COLOR HATANE KE LIYE) --- */

/* Hero section ke right logo bar ke links ke liye */
.hero-right-logos-bar a,
.hero-right-logos-bar a:visited,
.hero-right-logos-bar a:hover,
.hero-right-logos-bar a:active {
    color: inherit;            /* Isse text/icon ka color blue nahi hoga, purana color hi rahega */
    text-decoration: none;     /* Underline hatane ke liye */
    display: inline-block;     /* Layout structure sahi rakhne ke liye */
    outline: none;
}

/* Our Channels Section (Grid) ke logo links ke liye */
.channel-brand-icon a,
.channel-brand-icon a:visited,
.channel-brand-icon a:hover,
.channel-brand-icon a:active {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    outline: none;
}

/* Puri website me agar koi aur image ya icon link hai toh uska border/color fix karne ke liye */
a img {
    border: none;
    outline: none;
/* ==========================================================================
   DIRECT CLASS HOVER & COLOR TRANSITIONS
   ========================================================================== */

/* Base Smoothness Setup */
.logo-circle, .channel-brand-icon {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.logo-circle img, .channel-brand-icon img {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Global Motion Lift on Hover */
.nav-logo-item:hover .logo-circle {
    transform: translateY(-5px) scale(1.08) !important;
}
.nav-logo-item:hover .logo-circle img {
    transform: scale(1.12) !important;
}

/* --- OSCAR (Gold Glow) --- */
.oscar-item:hover .logo-circle {
    background: rgba(223, 183, 108, 0.2) !important;
    border-color: #dfb76c !important;
    box-shadow: 0 0 20px rgba(223, 183, 108, 0.5) !important;
}
.oscar-item.active .logo-circle {
    background: linear-gradient(135deg, #fbe6ad, #dfb76c) !important;
    box-shadow: 0 0 25px rgba(223, 183, 108, 0.6) !important;
}

/* --- PASAND TV (Pink Glow) --- */
.pasand-item:hover .logo-circle {
    background: rgba(236, 64, 122, 0.2) !important;
    border-color: #ec407a !important;
    box-shadow: 0 0 20px rgba(236, 64, 122, 0.5) !important;
}
.pasand-item.active .logo-circle {
    background: linear-gradient(135deg, #ff80ab, #ec407a) !important;
    box-shadow: 0 0 25px rgba(236, 64, 122, 0.6) !important;
}

/* --- UNIQUE TV (Cyan Glow) --- */
.unique-item:hover .logo-circle {
    background: rgba(38, 198, 218, 0.2) !important;
    border-color: #26c6da !important;
    box-shadow: 0 0 20px rgba(38, 198, 218, 0.5) !important;
}
.unique-item.active .logo-circle {
    background: linear-gradient(135deg, #80deea, #26c6da) !important;
    box-shadow: 0 0 25px rgba(38, 198, 218, 0.6) !important;
}

/* --- THE Q (Yellow Glow) --- */
.theq-item:hover .logo-circle {
    background: rgba(255, 235, 59, 0.2) !important;
    border-color: #ffeb3b !important;
    box-shadow: 0 0 20px rgba(255, 235, 59, 0.5) !important;
}
.theq-item.active .logo-circle {
    background: linear-gradient(135deg, #fff59d, #ffeb3b) !important;
    box-shadow: 0 0 25px rgba(255, 235, 59, 0.6) !important;
}