/* Reel Alüminyum - Ultra-Modern Homepage Video Showcase Styling */
.reel-why-video {
    --reel-gold: #dba500;
    --reel-gold-glow: rgba(219, 165, 0, 0.45);
    --reel-dark-slate: #0f172a;
    --reel-video-radius: 20px;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.reel-why-video__link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--reel-video-radius);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22), 0 4px 15px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 10;
    min-height: 380px;
    background: var(--reel-dark-slate);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-why-video__link:hover,
.reel-why-video__link:focus-visible {
    box-shadow: 0 30px 65px rgba(219, 165, 0, 0.28), 0 10px 25px rgba(15, 23, 42, 0.35);
    border-color: rgba(219, 165, 0, 0.4);
    transform: translateY(-4px);
}

.reel-why-video__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-why-video__link:hover .reel-why-video__cover,
.reel-why-video__link:focus-visible .reel-why-video__cover {
    transform: scale(1.06);
}

/* Dark Gradient Vignette Overlay */
.reel-why-video__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(15, 23, 42, 0.65) 40%,
        rgba(15, 23, 42, 0.25) 70%,
        rgba(15, 23, 42, 0.45) 100%
    );
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Top Left: Glassmorphism Live Badge */
.reel-why-video__live-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.reel-why-video__pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: reelPulseGlow 2s infinite ease-in-out;
}

@keyframes reelPulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 8px #10b981;
    }
    50% {
        transform: scale(1.35);
        opacity: 0.75;
        box-shadow: 0 0 14px #10b981;
    }
}

.reel-why-video__badge-text {
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--primary-font, sans-serif);
}

/* Top Right: Quality Tag Badge */
.reel-why-video__quality-tag {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 3;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap !important;
    width: auto !important;
    max-width: none !important;
}

.reel-why-video__quality-tag span {
    display: inline !important;
    white-space: nowrap !important;
}

.reel-why-video__yt-icon {
    font-size: 13px;
}

/* Center: Pulsing Glow Sonar Play Button */
.reel-why-video__play-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 84px;
    height: 84px;
    margin-top: -42px;
    margin-left: -42px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.reel-why-video__sonar-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    animation: reelSonarWave 2.4s infinite cubic-bezier(0, 0.2, 0.8, 1);
}

.reel-why-video__sonar-ring--delay {
    animation-delay: 1.2s;
}

@keyframes reelSonarWave {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}

.reel-why-video__play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--reel-dark-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-why-video__play-btn i {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.reel-why-video__link:hover .reel-why-video__play-btn,
.reel-why-video__link:focus-visible .reel-why-video__play-btn {
    background: var(--reel-gold);
    color: #ffffff;
    transform: scale(1.12);
    box-shadow: 0 0 40px var(--reel-gold-glow), 0 12px 35px rgba(0, 0, 0, 0.4);
}

.reel-why-video__link:hover .reel-why-video__play-btn i,
.reel-why-video__link:focus-visible .reel-why-video__play-btn i {
    transform: scale(1.15);
}

/* Bottom Content Panel */
.reel-why-video__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 32px 32px 28px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 60%, transparent 100%);
}

.reel-why-video__tag-strip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.reel-why-video__tag-line {
    width: 18px;
    height: 2px;
    background: var(--reel-gold);
    border-radius: 2px;
}

.reel-why-video__tag-label {
    color: var(--reel-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reel-why-video__title {
    margin: 0 0 14px;
    color: #ffffff;
    font-family: var(--alt-font, 'Space Grotesk', sans-serif);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.reel-why-video__footer {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reel-why-video__meta {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap !important;
    display: inline-block !important;
}

.text-gold {
    color: var(--reel-gold) !important;
}

.reel-why-video__cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.reel-why-video__link:hover .reel-why-video__cta-btn,
.reel-why-video__link:focus-visible .reel-why-video__cta-btn {
    background: var(--reel-gold);
    color: #ffffff;
    border-color: var(--reel-gold);
}

.reel-why-video__link:hover .reel-why-video__cta-btn i,
.reel-why-video__link:focus-visible .reel-why-video__cta-btn i {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .reel-why-video__link {
        min-height: 320px;
        aspect-ratio: 4 / 5;
    }

    .reel-why-video__live-badge,
    .reel-why-video__quality-tag {
        top: 16px;
    }

    .reel-why-video__live-badge {
        left: 16px;
        padding: 6px 12px;
    }

    .reel-why-video__quality-tag {
        right: 16px;
        padding: 5px 10px;
    }

    .reel-why-video__badge-text {
        font-size: 10px;
    }

    .reel-why-video__content {
        padding: 22px 20px 20px;
    }

    .reel-why-video__title {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .reel-why-video__play-wrap {
        width: 68px;
        height: 68px;
        margin-top: -34px;
        margin-left: -34px;
    }

    .reel-why-video__play-btn {
        width: 58px;
        height: 58px;
        font-size: 18px;
    }
}
