* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --color-primary: #f806dc;
    --color-secondary: #12020a;
    --color-accent: #00eeff;
    --color-bg: #faf8f5;
}

body {
    background: var(--color-bg);
    color: #333;
    line-height: 1.6;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--color-primary);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.current-date { font-weight: 500; }

.live-buttons {
    display: flex;
    gap: 15px;
}

.btn-live {
    background: rgba(255,255,255,0.15);
    padding: 5px 15px;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-live:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.main-header {
    background: white;
    padding: 25px 0;
    border-bottom: 3px solid var(--color-primary);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-section img {
    height: 70px;
    width: auto;
}

.logo-text h1 {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text p {
    color: var(--color-accent);
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.header-search {
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== NAV ===== */
nav {
    background: var(--color-secondary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--color-primary);
    border-bottom-color: var(--color-accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 191, 165, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* ===== MAIN LAYOUT ===== */
.main-layout {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.main-column {
    min-width: 0;
}

/* ===== SECTION HEADER ===== */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.section-header h2 {
    color: var(--color-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    flex: 1;
}

.section-header::before {
    content: '';
    width: 4px;
    height: 30px;
    background: var(--color-accent);
}

.results-count {
    background: var(--color-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== VIDEO GRID ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.video-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* THUMBNAIL */
.thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f5f5f5;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .thumbnail img {
    transform: scale(1.08);
}

.thumbnail::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    pointer-events: none;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(139, 0, 66, 0.6);
}

.video-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.platform-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 5px;
}

.platform-badge i {
    font-size: 0.8rem;
}

/* VIDEO INFO */
.video-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.video-card:hover .info-title {
    color: var(--color-primary);
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #888;
    font-size: 0.85rem;
}

.video-meta i {
    color: var(--color-primary);
    margin-right: 5px;
}

.video-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 0;
    transition: all 0.3s ease;
    margin-top: auto;
    border-bottom: 2px solid transparent;
    align-self: flex-start;
}

.read-more:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
    gap: 12px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ===== EMPTY STATE ===== */
.empty-state {
    background: white;
    padding: 60px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    grid-column: 1 / -1;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.empty-state p {
    color: #888;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.page-link {
    padding: 10px 20px;
    background: var(--color-primary);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.page-link:hover:not(.disabled) {
    background: #6b0032;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 66, 0.3);
}

.page-link.disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.current-page {
    padding: 10px 20px;
    color: var(--color-secondary);
    font-weight: 600;
    background: #f5f5f5;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===== SIDEBAR ===== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-live-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-live-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.sidebar-live-btn.tv { background: var(--color-primary); }
.sidebar-live-btn.radio { background: var(--color-secondary); }

.sidebar-live-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid #eee;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--color-primary);
    padding-left: 10px;
}

.category-list .count {
    background: var(--color-accent);
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.social-icons-widget {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-btn.fb { background: #1877f2; }
.social-btn.yt { background: #ff0000; }
.social-btn.tt { background: #000; }
.social-btn.gp { background: #34a853; }

/* ===== FOOTER ===== */
footer {
    background: var(--color-secondary);
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.video-card {
    animation: fadeInUp 0.6s ease both;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
.hamburger {
    display: flex;
    }

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    flex-direction: column;
    }

.nav-links.active {
    display: flex;
    }

.logo-text h1 {
    font-size: 1.5rem;
    }

.logo-text p {
    font-size: 0.7rem;
    }

.page-header h1 {
    font-size: 1.8rem;
    }

.section-header h2 {
    font-size: 1.4rem;
    }

.video-grid {
    grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
.logo-section img {
    height: 50px;
    }

    .top-bar-content {
    flex-direction: column;
    gap: 8px;
    }

    .page-header {
    padding: 30px 20px;
    }

    .page-header h1 {
    font-size: 1.5rem;
    }

    .pagination {
    flex-direction: column;
    gap: 10px;
    }

    .page-link, .current-page {
    width: 100%;
    justify-content: center;
    }
}
