/* ===================================================
   SERVICES VIDEOGRAPHY - SHARED CSS
   All service pages in the Service section use this file.
   Do NOT modify nav.css or style.css
   =================================================== */

/* ---- Page Hero / Header ---- */
.page-header {
    text-align: center;
    padding: 60px 5% 40px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.07) 0%, rgba(0, 140, 255, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 60% 40%, rgba(0, 240, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.page-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 18px;
    text-shadow: 0 0 18px rgba(0, 240, 255, 0.55);
    font-weight: 700;
    line-height: 1.2;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

/* ---- Hero CTA Buttons ---- */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary);
    color: #0a0a1a;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 28px rgba(0, 240, 255, 0.6);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-3px);
}

/* ---- Stats Row ---- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 5%;
    background: rgba(0, 140, 255, 0.06);
    border-top: 1px solid rgba(0, 240, 255, 0.12);
    border-bottom: 1px solid rgba(0, 240, 255, 0.12);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 6px;
}

/* ---- Features / Services Grid ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.feature-card {
    background: rgba(0, 140, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 240, 255, 0.25);
    border-color: rgba(0, 240, 255, 0.5);
}

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

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.65;
}

/* ---- Packages Grid ---- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin: 30px 0;
}

.package-card {
    background: rgba(0, 140, 255, 0.07);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 240, 255, 0.2);
}

.package-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
}

.package-card.luxury {
    border-color: rgba(0, 140, 255, 0.6);
    background: rgba(0, 140, 255, 0.12);
}

.package-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary);
    color: #0a0a1a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-header {
    padding: 28px 24px 18px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
}

.package-header h3 {
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.package-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.package-price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

.package-features {
    list-style: none;
    padding: 20px 24px;
    flex-grow: 1;
}

.package-features li {
    color: var(--text-light);
    font-size: 0.97rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.package-cta {
    padding: 16px 24px 24px;
}

.package-btn {
    display: block;
    text-align: center;
    padding: 13px 24px;
    background: var(--primary);
    color: #0a0a1a;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.97rem;
}

.package-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 18px rgba(0, 240, 255, 0.5);
    transform: translateY(-2px);
}

/* ---- Testimonials ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.testimonial-card {
    background: rgba(0, 140, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.18);
    border-radius: 14px;
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 240, 255, 0.45);
    box-shadow: 0 8px 24px rgba(0, 240, 255, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    left: 18px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    color: #ffd700;
    margin-bottom: 12px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 14px;
    font-style: italic;
}

.testimonial-author {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.testimonial-details {
    color: var(--text-light);
    font-size: 0.87rem;
}

/* ---- FAQ Section ---- */
.faq-item {
    background: rgba(0, 140, 255, 0.07);
    border: 1px solid rgba(0, 240, 255, 0.18);
    border-radius: 12px;
    padding: 24px 26px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 240, 255, 0.4);
    background: rgba(0, 140, 255, 0.12);
}

.faq-question {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ---- CTA Section ---- */
.cta-section-box {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(0, 140, 255, 0.08) 100%);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
}

.cta-section-box h2 {
    color: var(--primary);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 16px;
    text-shadow: 0 0 14px rgba(0, 240, 255, 0.4);
}

.cta-section-box p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Service Areas ---- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.area-card {
    background: rgba(0, 140, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.18);
    border-radius: 12px;
    padding: 22px 20px;
    transition: all 0.3s ease;
}

.area-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    transform: translateY(-4px);
}

.area-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-card ul {
    list-style: none;
    padding: 0;
}

.area-card ul li {
    color: var(--text-light);
    font-size: 0.93rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.07);
    display: flex;
    align-items: center;
    gap: 6px;
}

.area-card ul li::before {
    content: '•';
    color: var(--primary);
}

.area-card ul li:last-child {
    border-bottom: none;
}

/* ---- Why Choose Us Grid ---- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
    margin: 30px 0;
}

.why-card {
    background: rgba(0, 140, 255, 0.07);
    border: 1px solid rgba(0, 240, 255, 0.18);
    border-radius: 14px;
    padding: 26px 22px;
    transition: all 0.3s ease;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 240, 255, 0.18);
    border-color: rgba(0, 240, 255, 0.4);
}

.why-icon {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.65;
}

/* ---- Process Steps ---- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    counter-reset: step-counter;
}

.process-step {
    background: rgba(0, 140, 255, 0.07);
    border: 1px solid rgba(0, 240, 255, 0.18);
    border-radius: 14px;
    padding: 26px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    counter-increment: step-counter;
}

.process-step::before {
    content: counter(step-counter);
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #0a0a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.18);
}

.process-step i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.process-step h3 {
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ---- Gallery Grid ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
    margin: 30px 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(0, 240, 255, 0.18);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px 16px 14px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    transform: translateY(5px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Offer Banner / Marquee ---- */
.offer-marquee {
    background: linear-gradient(90deg, #0a0a1a, rgba(0, 240, 255, 0.15), #0a0a1a);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 22s linear infinite;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

@keyframes marqueeScroll {
    from { transform: translateX(100vw); }
    to { transform: translateX(-100%); }
}

/* ---- Section Title Underline ---- */
.section-title-line {
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    margin: -30px auto 40px;
    border-radius: 2px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 5% 30px;
    }

    .stats-row {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-section-box {
        padding: 36px 24px;
    }

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

    .why-card {
        flex-direction: column;
        gap: 10px;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   YOUTUBE / OUR WORK VIDEO SECTION
   ============================================ */

.video-section-header {
    text-align: center;
    margin-bottom: 36px;
}

.video-section-header .section-title {
    margin-bottom: 10px;
}

.video-section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.yt-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 26px;
    background: #ff0000;
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.97rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(255, 0, 0, 0.35);
}

.yt-channel-btn:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.5);
}

/* Video grid layout */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin: 10px 0 30px;
}

/* Each video card wrapper */
.video-card {
    background: rgba(0, 10, 20, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.18);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 14px 36px rgba(0, 240, 255, 0.2);
}

/* Responsive 16:9 iframe wrapper */
.video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    background: #000;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Video card info below the embed */
.video-info {
    padding: 16px 18px 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.video-info h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.video-info span {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-info span i {
    font-size: 0.8rem;
}

/* View all link row */
.video-view-all {
    text-align: center;
    margin-top: 8px;
}

.video-view-all a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 10px 22px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.video-view-all a:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--primary);
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   INSTAGRAM REELS SHOWCASE SECTION
   ============================================ */

.reels-section {
    padding: 50px 5%;
    background: linear-gradient(135deg, rgba(131,58,180,0.06) 0%, rgba(253,29,29,0.04) 50%, rgba(252,176,69,0.05) 100%);
    border-top: 1px solid rgba(131,58,180,0.15);
    border-bottom: 1px solid rgba(253,29,29,0.1);
}

.reels-header {
    text-align: center;
    margin-bottom: 32px;
}

.reels-header h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.reels-header h2 .ig-gradient-text {
    background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reels-header p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 18px;
    line-height: 1.65;
}

.ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(131,58,180,0.4);
}

.ig-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(253,29,29,0.5);
}

/* Horizontal scrollable reels track */
.reels-track-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(131,58,180,0.5) transparent;
}

.reels-track-wrapper::-webkit-scrollbar {
    height: 4px;
}

.reels-track-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.reels-track-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #833ab4, #fd1d1d);
    border-radius: 2px;
}

.reels-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 10px 4px 4px;
}

/* Individual reel card — phone-like vertical frame */
.reel-card {
    flex-shrink: 0;
    width: 240px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(131,58,180,0.35);
    background: #0a0a18;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.reel-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #fd1d1d;
    box-shadow: 0 16px 40px rgba(131,58,180,0.35);
}

/* 9:16 vertical video ratio wrapper */
.reel-embed {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 9:16 */
    background: #000;
    overflow: hidden;
}

.reel-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* first tap shows reel, second tap opens IG */
}

/* Clickable overlay — tapping sends to Instagram */
.reel-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
    background: linear-gradient(transparent 55%, rgba(0,0,0,0.75) 100%);
    text-decoration: none;
    transition: background 0.3s ease;
}

.reel-overlay:hover {
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.6) 100%);
}

.reel-overlay-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 14px rgba(253,29,29,0.5);
}

.reel-overlay-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.reel-overlay-label {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* Reel card bottom label */
.reel-label {
    padding: 10px 14px 12px;
    background: rgba(10,5,20,0.95);
    display: flex;
    align-items: center;
    gap: 8px;
}

.reel-label i {
    background: linear-gradient(135deg, #833ab4, #fd1d1d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    flex-s
/* ─── YouTube lazy-load player ─── */
.yt-player{position:absolute;inset:0;width:100%;height:100%;background:#000;cursor:pointer;overflow:hidden;}
.yt-player img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.3s;}
.yt-player:hover img{transform:scale(1.04);}
.yt-play-btn{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0.25);}
.yt-player iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}
