/* ============================================
   YOUTUBE MANAGEMENT PAGE — DARK AGENCY STYLE
   ============================================ */

.youtube-page {
    background: #080808;
}

/* ============================================
   HERO
   ============================================ */
.yt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000000;
}

.yt-hero-atmosphere {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 65% 40%, rgba(255, 30, 30, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(180, 180, 180, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Hero inner — text left, visual right */
.yt-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 9rem 0 6rem;
    width: 100%;
}

@media (max-width: 900px) {
    .yt-hero-inner { grid-template-columns: 1fr; padding: 8rem 0 4rem; }
    .yt-hero-visual { display: none; }
}

/* Eyebrow */
.yt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 2rem;
}

.yt-eyebrow-line {
    width: 28px;
    height: 1px;
    background: rgba(255, 50, 50, 0.7);
}

.yt-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: #ffffff;
    margin-bottom: 1.75rem;
}

.yt-red {
    background: linear-gradient(135deg, #ff3333 0%, #bb0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yt-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.75rem;
}

.yt-hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* Metrics strip */
.yt-metrics {
    display: flex;
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-wrap: wrap;
}

.yt-metric-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.yt-metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right side — floating card stack */
.yt-hero-visual {
    position: relative;
    height: 480px;
}

.yt-fc {
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.yt-fc-main {
    width: 80%;
    aspect-ratio: 16/9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -54%) rotate(-1deg);
    background: linear-gradient(135deg, #1a0808 0%, #280e0e 100%);
    animation: floatMain 6s ease-in-out infinite;
    z-index: 3;
}

.yt-fc-2 {
    width: 54%;
    aspect-ratio: 16/9;
    bottom: 5%;
    right: -4%;
    transform: rotate(3deg);
    background: linear-gradient(135deg, #0a0a14 0%, #12121e 100%);
    animation: floatSec 7s ease-in-out 1.2s infinite;
    z-index: 2;
}

.yt-fc-3 {
    width: 46%;
    aspect-ratio: 16/9;
    top: 4%;
    left: -2%;
    transform: rotate(-2deg);
    background: linear-gradient(135deg, #0a100a 0%, #10180e 100%);
    animation: floatTer 8s ease-in-out 2.5s infinite;
    z-index: 1;
}

@keyframes floatMain {
    0%, 100% { transform: translate(-50%, -54%) rotate(-1deg); }
    50%       { transform: translate(-50%, -58%) rotate(-1deg); }
}
@keyframes floatSec {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50%       { transform: rotate(3deg) translateY(-8px); }
}
@keyframes floatTer {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50%       { transform: rotate(-2deg) translateY(-6px); }
}

.yt-fc-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-fc-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.9rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}

.yt-fc-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yt-fc-sub {
    font-size: 0.6rem;
    color: rgba(255, 70, 70, 0.85);
    font-weight: 600;
    margin-top: 2px;
}

.yt-fc-play {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.yt-fc-play svg { margin-left: 3px; }

/* ============================================
   SERVICES — EDITORIAL ROW LIST
   ============================================ */
.yt-services {
    padding: 8rem 0;
    background: #0a0a0a;
}

.yt-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 60, 60, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.yt-section-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.yt-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.yt-section-sub {
    color: rgba(255, 255, 255, 0.38);
    font-size: 1rem;
    margin-bottom: 4rem;
}

.yt-services-list {
    display: flex;
    flex-direction: column;
}

.yt-service-row {
    display: grid;
    grid-template-columns: 52px 1fr 24px;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: default;
    transition: background 0.25s ease, padding-left 0.25s ease;
    position: relative;
}

.yt-service-row:first-child { border-top: 1px solid rgba(255, 255, 255, 0.05); }

.yt-service-row:hover {
    background: rgba(255, 255, 255, 0.018);
    padding-left: 1.6rem;
}

.yt-service-row:hover .yt-srv-num { color: rgba(255, 50, 50, 0.8); }
.yt-service-row:hover .yt-srv-arrow { color: rgba(255, 255, 255, 0.7); transform: translate(3px, -3px); }
.yt-service-row:hover .yt-srv-title { color: #ffffff; }

.yt-srv-num {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.18);
    transition: color 0.25s ease;
}

.yt-srv-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.35rem;
    transition: color 0.25s ease;
}

.yt-srv-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.65;
    max-width: 560px;
}

.yt-srv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.65rem;
}

.yt-srv-tag {
    padding: 0.18rem 0.65rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
}

.yt-srv-arrow {
    color: rgba(255, 255, 255, 0.15);
    transition: all 0.25s ease;
    font-size: 1.1rem;
    line-height: 1;
}

/* ============================================
   WORK SLIDER
   ============================================ */
.yt-work {
    padding: 8rem 0;
    background: #050505;
    overflow: hidden;
}

.yt-work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.yt-slider-controls {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.yt-ctrl-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.yt-ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.yt-slider-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    cursor: grab;
}

.yt-slider-track::-webkit-scrollbar { display: none; }
.yt-slider-track:active { cursor: grabbing; }

.yt-slide {
    flex: 0 0 360px;
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #111111;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.yt-slide:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.yt-slide-thumb {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-slide:nth-child(1) .yt-slide-thumb { background: linear-gradient(135deg, #0f0f1e 0%, #191226 100%); }
.yt-slide:nth-child(2) .yt-slide-thumb { background: linear-gradient(135deg, #0e1a0e 0%, #192814 100%); }
.yt-slide:nth-child(3) .yt-slide-thumb { background: linear-gradient(135deg, #1a0e0e 0%, #281414 100%); }
.yt-slide:nth-child(4) .yt-slide-thumb { background: linear-gradient(135deg, #0f1a1e 0%, #12222a 100%); }
.yt-slide:nth-child(5) .yt-slide-thumb { background: linear-gradient(135deg, #1a180e 0%, #282412 100%); }

.yt-slide-play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(255, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.yt-slide:hover .yt-slide-play {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(255, 0, 0, 0.55);
}

.yt-slide-play svg { margin-left: 3px; }

.yt-slide-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
}

.yt-slide-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff2222, #aa0000);
}

.yt-slide-info {
    padding: 1.25rem 1.4rem;
}

.yt-slide-type {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 55, 55, 0.75);
    margin-bottom: 0.4rem;
}

.yt-slide-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.yt-slide-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   PROCESS
   ============================================ */
.yt-process {
    padding: 8rem 0;
    background: #0a0a0a;
}

.yt-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.yt-process-grid::before {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

@media (max-width: 860px) {
    .yt-process-grid { grid-template-columns: 1fr 1fr; }
    .yt-process-grid::before { display: none; }
}
@media (max-width: 480px) {
    .yt-process-grid { grid-template-columns: 1fr; }
}

.yt-proc-step {}

.yt-proc-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.yt-proc-step:hover .yt-proc-num {
    border-color: rgba(255, 35, 35, 0.5);
    background: rgba(255, 25, 25, 0.08);
    color: #ff4444;
}

.yt-proc-step h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.yt-proc-step p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.7;
}

/* ============================================
   PRICING — using style.css base classes
   ============================================ */
.yt-pricing {
    padding: 8rem 0;
    background: #080808;
}

.yt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 4rem auto 0;
}

/* ============================================
   CTA
   ============================================ */
.yt-cta {
    padding: 9rem 0;
    background: #050505;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.yt-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(200, 200, 200, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.yt-cta-content { position: relative; z-index: 2; }

.yt-cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.yt-cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

/* ============================================
   RESPONSIVE EXTRAS
   ============================================ */
@media (max-width: 768px) {
    .yt-slide { flex: 0 0 290px; }
    .yt-service-row { grid-template-columns: 40px 1fr; }
    .yt-srv-arrow { display: none; }
    .yt-work-header { flex-direction: column; align-items: flex-start; }
}