/* ========================================
   BFPA EDITS - Premium Dark Theme
   Barcelona-inspired color palette
   Thumbnail Card Styles
   ======================================== */

/* CSS Custom Properties */
:root {
    /* Barcelona Colors */
    --barca-blue: #004D98;
    --barca-red: #A50044;
    --barca-gold: #EDBB00;

    /* Dark Theme */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: linear-gradient(145deg, #15151f 0%, #0d0d14 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6a6a7a;

    /* Accent Gradient */
    --gradient-primary: linear-gradient(135deg, #004D98 0%, #A50044 50%, #EDBB00 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 77, 152, 0.5) 0%, rgba(165, 0, 68, 0.5) 100%);

    /* Effects */
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(165, 0, 68, 0.3);

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--barca-blue);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--barca-red);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--barca-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.2;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(-30px, -20px) scale(1.02);
    }
}

/* Typography */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(165, 0, 68, 0.15);
    border: 1px solid rgba(165, 0, 68, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--barca-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    font-size: 1.8rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.logo-text {
    color: var(--text-primary);
}

.logo-text .accent {
    color: var(--barca-red);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.subscribe-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--barca-red);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: #c4004f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(165, 0, 68, 0.4);
}

.btn-icon {
    font-size: 0.8rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 120px 30px 80px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(237, 187, 0, 0.1);
    border: 1px solid rgba(237, 187, 0, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--barca-gold);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.badge-icon {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.5s both;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-icon {
    font-size: 1.3rem;
}

.stat-value {
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s both;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--barca-red);
    color: white;
}

.btn-primary:hover {
    background: #c4004f;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(165, 0, 68, 0.4);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.youtube-icon {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--barca-gold);
    color: var(--barca-gold);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
}

.btn-outline:hover {
    border-color: var(--barca-red);
    background: rgba(165, 0, 68, 0.1);
}

.btn-outline .arrow {
    transition: transform 0.3s ease;
}

.btn-outline:hover .arrow {
    transform: translateX(5px);
}

.btn-full {
    width: 100%;
}

/* Hero Visual / Featured Thumbnail */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease;
}

.featured-thumbnail {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.frame-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

/* ========================================
   THUMBNAIL CARD STYLES
   ======================================== */

.thumbnail-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 77, 152, 0.2);
    transition: all 0.4s ease;
}

.thumbnail-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 77, 152, 0.3);
    border-color: rgba(0, 77, 152, 0.4);
}

.thumbnail-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.thumbnail-card:hover .thumbnail-wrapper img {
    transform: scale(1.08);
}

/* Play Button Overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(165, 0, 68, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    padding-left: 5px;
}

.thumbnail-card:hover .play-button {
    transform: scale(1);
}

/* Video Badge on Thumbnail */
.video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(165, 0, 68, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 5;
}

/* Thumbnail Info */
.thumbnail-info {
    padding: 16px;
}

.thumbnail-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.thumbnail-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.video-date {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: fadeIn 1s ease 1s both;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--barca-red);
    border-radius: 2px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.5;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Section Container */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
}

/* Popular Section */
.popular-section {
    padding: 80px 0 40px;
    background: var(--bg-primary);
}

.popular-video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.popular-card {
    border: 2px solid rgba(165, 0, 68, 0.3);
    border-radius: 16px;
}

.popular-card:hover {
    box-shadow: var(--shadow-glow);
}

/* Videos Section */
.videos-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* 3-Column Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Skeleton Loading */
.thumbnail-card.skeleton {
    pointer-events: none;
}

.skeleton-thumb {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text {
    height: 16px;
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.skeleton-text.short {
    width: 60%;
    height: 14px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Video Error State */
.video-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-tertiary);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-error p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.view-all-cta {
    text-align: center;
}

/* About Section */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.about-text strong {
    color: var(--text-primary);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(165, 0, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Badge Card */
.about-visual {
    position: relative;
}

.badge-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: var(--barca-red);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.badge-content {
    position: relative;
    z-index: 1;
}

.badge-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.badge-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-style: italic;
}

.badge-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.badge-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.badge-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Social Section */
.social-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.social-content {
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* 2-column social grid for only 2 items */
.social-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 50px auto 0;
}

.social-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-card.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.social-card.instagram:hover {
    border-color: #E1306C;
    box-shadow: 0 20px 40px rgba(225, 48, 108, 0.2);
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--text-primary);
    transition: all 0.3s ease;
}

.social-card.youtube:hover .social-icon svg {
    fill: #FF0000;
}

.social-card.instagram:hover .social-icon svg {
    fill: #E1306C;
}

.social-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.social-handle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: rgba(165, 0, 68, 0.3);
    transform: translateX(10px);
}

.method-icon {
    font-size: 2rem;
}

.method-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.method-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--barca-red);
    box-shadow: 0 0 20px rgba(165, 0, 68, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 20px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--barca-red);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-style: italic;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header (for subpages) */
.page-header {
    padding: 150px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.page-content {
    padding: 60px 0 100px;
    min-height: 50vh;
}

/* Shorts Grid - Vertical Thumbnails */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.short-card {
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
}

.short-card .thumbnail-wrapper {
    aspect-ratio: 9/16;
}

/* Playlist Grid */
.playlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.playlist-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 77, 152, 0.2);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.playlist-card:hover {
    transform: scale(1.05);
    border-color: rgba(0, 77, 152, 0.4);
    box-shadow: 0 4px 12px rgba(0, 77, 152, 0.3);
}

.playlist-thumbnail {
    aspect-ratio: 16/9;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.playlist-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.playlist-card:hover .playlist-thumbnail img {
    transform: scale(1.08);
}

.playlist-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.playlist-info {
    padding: 20px;
}

.playlist-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.playlist-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CTA Link */
.page-cta {
    text-align: center;
    padding: 40px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shorts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .playlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links {
        display: none;
    }

    .subscribe-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    /* 1 column on mobile */
    .video-grid {
        grid-template-columns: 1fr;
    }

    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .playlist-grid {
        grid-template-columns: 1fr;
    }

    .social-grid,
    .social-grid-2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .section-container {
        padding: 0 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .popular-video-wrapper {
        padding: 0 10px;
    }

    /* Ensure touch-friendly tap targets */
    .thumbnail-card {
        min-height: 48px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .shorts-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}