/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #ff0000;
    --dark-red: #cc0000;
    --light-red: #ff3333;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --white: #ffffff;
    --text-gray: #b0b0b0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-red);
    font-weight: 700;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
}

.btn-nav:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 0, 0, 0.03) 2px, rgba(255, 0, 0, 0.03) 4px);
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.5);
}

.btn-primary svg {
    transition: var(--transition);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-red);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 120px 0;
    background: var(--dark-gray);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-red);
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0.1),
                0 20px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0.2),
                0 25px 70px rgba(0, 0, 0, 0.6);
}

.about-image::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, transparent 100%);
    opacity: 0.1;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--medium-gray);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-red);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.about-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-red);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
    margin-top: 1rem;
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
}

.page-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ==================== FEATURED SECTION ==================== */
.featured-section {
    padding: 80px 0;
    background: var(--black);
}

.section-title-small {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.featured-video {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    background: var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.featured-video:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    transition: var(--transition);
}

.video-placeholder svg {
    width: 120px;
    height: 120px;
    opacity: 0.8;
    transition: var(--transition);
}

.video-thumbnail:hover .video-placeholder {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.video-thumbnail:hover .video-placeholder svg {
    opacity: 1;
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-date {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.video-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.video-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.video-link:hover {
    color: var(--primary-red);
}

.video-link-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.video-link-more:hover {
    text-decoration: underline;
}

/* ==================== RECENT VIDEOS SECTION ==================== */
.recent-videos-section {
    padding: 80px 0;
    background: var(--dark-gray);
}

.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.main-content {
    min-width: 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--medium-gray);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.video-card .video-thumbnail {
    height: 200px;
}

.play-button-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.play-button-small:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-info {
    padding: 1.5rem;
}

.video-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 60px;
}

/* ==================== SIDEBAR ==================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-card,
.archive-card,
.report-card {
    background: var(--medium-gray);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: var(--transition);
}

.profile-card:hover,
.archive-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.15);
}

.profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-red);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.verified-badge {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.7rem;
    line-height: 20px;
    text-align: center;
    margin-left: 0.3rem;
}

.btn-profile {
    display: inline-block;
    background: transparent;
    color: var(--primary-red);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--primary-red);
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-profile:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.archive-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.archive-list {
    list-style: none;
    text-align: left;
}

.archive-list li {
    margin-bottom: 0.8rem;
}

.archive-list a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
}

.archive-list a:hover {
    color: var(--primary-red);
    background: var(--light-gray);
    padding-left: 1rem;
}

.report-card {
    padding: 1.5rem;
}

.report-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.report-link:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 120px 0;
    background: var(--black);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.cta-card {
    background: var(--dark-gray);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
    transform: scaleX(0);
    transition: var(--transition);
}

.cta-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.2);
}

.cta-card:hover::before {
    transform: scaleX(1);
}

.cta-icon {
    margin-bottom: 2rem;
}

.cta-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-cta {
    display: block;
    background: var(--medium-gray);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-cta:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateX(5px);
}

/* Social Media Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-btn span {
    position: relative;
    z-index: 2;
}

.social-btn svg {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    transition: var(--transition);
    z-index: 1;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.social-btn:hover svg {
    transform: scale(1.1);
}

/* Telegram */
.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    color: white;
}

.social-btn.telegram:hover {
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.5);
}

/* YouTube */
.social-btn.youtube {
    background: white;
    color: #FF0000;
}

.social-btn.youtube svg {
    fill: #FF0000;
}

.social-btn.youtube:hover {
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
}

/* Instagram */
.social-btn.instagram {
    background: linear-gradient(135deg, #405DE6 0%, #5851DB 25%, #833AB4 50%, #C13584 75%, #E1306C 85%, #FD1D1D 95%, #F77737 100%);
    color: white;
}

.social-btn.instagram:hover {
    box-shadow: 0 15px 40px rgba(193, 53, 132, 0.6);
}

/* TikTok */
.social-btn.tiktok {
    background: #000000;
    color: white;
    border: 2px solid white;
}

.social-btn.tiktok:hover {
    background: #ff0050;
    border-color: #00f2ea;
    box-shadow: 0 15px 40px rgba(255, 0, 80, 0.5);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-gray);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        border-top: 1px solid var(--primary-red);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image-placeholder {
        margin: 0 auto;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .featured-video {
        grid-template-columns: 1fr;
    }

    .video-thumbnail {
        height: 250px;
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .content-with-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 100px;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .about, .cta-section {
        padding: 60px 0;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
    }

    .social-btn {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }

    .social-btn svg {
        width: 30px;
        height: 30px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .featured-section, .recent-videos-section {
        padding: 40px 0;
    }

    .video-info {
        padding: 1.5rem;
    }

    .video-title {
        font-size: 1.2rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }
}
