:root{
    --primary:#7B2FF7;
    --accent:#FFC107;
    --dark:#0b0b0b;
    --sidebar:#111;
    --gsg-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --gsg-radius: 12px;
    --gsg-transition: all 0.3s ease;
}

body{
    background:var(--dark);
    color:#fff;
    overflow-x:hidden;
}

.sidebar img{
    font-size:20px;
    margin:18px 0;
    color:#9b59b6;
    cursor:pointer;
}

.sidebar img.active,
.sidebar img:hover{
    color:var(--accent);
}

/* Main */
.main{
    margin-left:70px;
    padding:20px;
}

.search-box{
    flex:1;
    position:relative;
    margin-left: 10px;
}

.search-box input{
    width: 50%;
    background:#000;
    border:none;
    padding:10px 15px 10px 40px;
    border-radius:6px;
    color:#fff;
}

.search-box i{
    position:absolute;
    top:50%;
    left:12px;
    transform:translateY(-50%);
    color:var(--accent);
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 240px;
    background: linear-gradient(180deg,#0f0f0f,#1a1a1a);
    padding: 15px;
    transition: 0.3s ease;
    overflow: hidden;
    z-index: 1000;
    align-items: start;
}

/* Collapsed */
.sidebar.collapsed {
    width: 80px;
}

/* Header */
.sidebar-header {
    width: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding-top: 9px !important;
}
.sidebar.sidebar.collapsed .sidebar-header{
    justify-content: space-between;
    padding-left: 12px;
}

.logo {
    width: 120px;
    transition: .3s;
}

.sidebar.collapsed .logo {
    width: 0;
    opacity: 0;
}

/* Menu button */
.menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* Nav items */
.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ddd;
    padding: 0px 14px;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 8px;
    transition: .3s;
}

.nav-item img {
    width: 22px;
}

.nav-item span {
    white-space: nowrap;
    transition: .3s;
}

/* Hide text when collapsed */
.sidebar.collapsed .nav-item span {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.center-img{
     background: linear-gradient(
        to right,
        rgba(245, 158, 11, 0.3),
        rgba(0, 0, 0, 0.1)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Safari support */

    padding: 2px 15px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.45),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.center-img .logo-center{
    width: 80px;
    height: 50px;
}





/* Hero */
.hero{
    background:linear-gradient(135deg,#5f1cff,#8b3cff);
    border-radius:6px;
    height:500px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    margin-bottom:30px;
}

.hero h1{
    color:var(--accent);
    font-weight:800;
}

.hero p{
    opacity:.8;
}

/* Section */
.section-title{
    font-weight:700;
    margin:25px 0 15px;
}

/* Video Card */
.video-card{
    background: #000;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
}

.video-card video{
    max-width: 100%;
    border-radius: 6px;
}
.video-card img{
    max-width: 100%;
}

.video-card p{
    margin-top: 10px;
    opacity:.7;
}

/* Responsive */
@media(max-width:768px){
    .hero{
        height:200px;
    }
}


/* ======================== live-tv style  ======================== */

/* Channel Card */
.channel-card{
    background:#000;
    border-radius:10px;
    padding:25px;
    text-align:center;
    position:relative;
}

.live-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:red;
    font-size:11px;
    padding:4px 8px;
    border-radius:4px;
    font-weight:600;
}

.channel-logo{
    max-width:280px;
    margin:30px auto;
}

.channel-name{
    font-size:14px;
    opacity:.8;
}

/* Responsive */
@media(max-width:768px){
    .channel-logo{
        max-width:140px;
    }
    .video-card{
        padding: 0 !important;
        height: 170px !important;
    }
}

/* ======================== movies style  ======================== */

/* Page header */
.page-title{
    margin-left: 8px;
    font-size: 24px;
    font-weight:700;
}

.page-subtitle{
    opacity:.6;
    margin-bottom: 40px;
}

/* Movie Card */
.movie-card{
    background:#000;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
}

.movie-card img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    cursor: pointer;
}

.movie-card:hover{
    transform:translateY(-6px);
}

.movie-title{
    padding:12px 5px;
    font-size:14px;
    font-weight:600;
}

/* Responsive */
@media(max-width:768px){
    .movie-card img{
        height:260px;
    }
}


/* ========================== series style  ======================== */

/* Series Card */
.series-card{
    background:#000;
    border-radius:14px;
    overflow:hidden;
    transition:.3s;
}

.series-card img{
    width:100%;
    height:360px;
    object-fit:cover;
}

.series-card:hover{
    transform:translateY(-6px);
}

.series-title{
    padding:12px 6px;
    font-size:14px;
    font-weight:600;
}

/* Responsive */
@media(max-width:768px){
    .series-card img{
        height:280px;
    }
}


/*  =============== FAQ ================= */
.accordion-item {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.7) !important;
}

.accordion-item:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.accordion-button {
    padding: 1.5rem 1.25rem;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: rgba(30,30,30,0.95) !important;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
    width: 1.25rem;
    height: 1.25rem;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem 1.25rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(10,10,10,0.9);
}

/* FAQ categories */
.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    display: inline-block;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
}


/* Quick stats */
.faq-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.6);
    border-radius: 12px;
    min-width: 150px;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ icon */
.faq-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    opacity: 0.8;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        height: 250px;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 0.8rem 1rem;
    }
    
    .contact-cta {
        padding: 2rem 1rem;
    }
    
    .accordion-button {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: calc(50% - 1rem);
    }
}

/* ==== ABOUT PAGE ===== */

/* Modern card styling for content sections */
.content-card {
    border-radius: var(--gsg-radius);
    padding: 2rem;
    box-shadow: var(--gsg-shadow);
    border: none;
    transition: var(--gsg-transition);
    height: 100%;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.content-card .card-icon {
    font-size: 2.2rem;
    color: var(--gsg-primary);
    margin-bottom: 1.2rem;
    display: inline-block;
    padding: 15px;
    border-radius: 12px;
    background-color: rgba(13, 110, 253, 0.08);
}

/* Modern values section */
.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
}

.value-icon {
    font-size: 1.5rem;
    color: var(--gsg-primary);
    background-color: rgba(13, 110, 253, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.2rem;
}

.value-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gsg-dark);
}

.value-content p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Modern team stats */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    flex: 1;
    min-width: 150px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gsg-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 250px !important;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 100%;
        margin-bottom: 1rem;
    }
}

.privacy-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-section {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.02) 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.privacy-section:hover::before {
    transform: translateX(0);
}

.privacy-section:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.privacy-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
}

 .policy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.policy-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 20px;
}

.section-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin-right: 12px;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .policy-list li {
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .privacy-section {
        padding: 15px;
        border-left-width: 3px;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .privacy-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* ===============================
   Footer
================================ */
.site-footer{
    background:#000;
    padding:40px 20px 20px;
    color:#ccc;
    border-top:1px solid #1a1a1a;
}

.footer-title{
    color:#fff;
    font-weight:600;
    margin-bottom:15px;
}

.footer-text{
    font-size:14px;
    line-height:1.6;
    opacity:.8;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:8px;
}

.footer-links a{
    color:#bbb;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--accent);
}

.footer-divider{
    border-color:#1a1a1a;
    margin:25px 0 15px;
}

.footer-bottom{
    font-size:13px;
    opacity:.7;
}

/* Responsive */
@media(max-width:768px){
    .hero{
        height: 150px !important;
    }
    .site-footer{
        text-align:center;
    }
    .search-box input{
        width: 100%;
    }
}

