/* ==========================================================================
   PODCAST.CSS | THE HORIZON TIMES ROYAL MEDIA EXTENSION
   Synced with Global Premium Editorial Theme
   ========================================================================== */

/* Inherits variables from style.css, but we will redefine specific ones if needed */
:root {
    --gold: #d4af37; /* Synced with global muted gold */
    --gold-rgb: 212, 175, 55;
    --bg-dark: #050505; /* Synced to deep editorial black */
    --bg-panel: #111111;
    --white: #F4F4F5;
    --dim: #888888;
    --border-color: #222222;
}

/* ==========================================================================
   GLOBAL RESET & GAP KILLER: FORCE NO SPACE AT TOP
   ========================================================================== */

/* 1. Reset body and html completely */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    position: relative;
}

/* 2. The Magic Fix: Prevent child margins from pushing the body down */
body::before,
.podcast-page::before {
    content: "";
    display: table;
}

/* 3. Strip any rogue top margins from the very first elements */
body > *:first-child,
.podcast-page > *:first-child {
    margin-top: 0 !important;
}

/* 4. Force header wrappers to the very top */
header, 
.site-header, 
.top-bar,
.navbar,
#masthead {
    margin-top: 0 !important;
    top: 0 !important;
}

/* 5. Clean up main content containers */
main, #content, .site-main, .site-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 6. Base Podcast Page Wrapper */
.podcast-page { 
    padding-top: 0 !important; 
    margin-top: 0 !important;
    width: 100%;
    overflow-x: hidden; 
    display: flex;
    flex-direction: column;
}


/* --- 1. GLOBAL PODCAST UTILITIES --- */
.podcast-page .section-label {
    width: max-content !important;
    display: inline-block !important;
    color: var(--dim) !important;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.4) !important;
    margin-top: 0 !important; 
    margin-bottom: 15px !important;
}

/* --- 2. SLEEK TAGS & TYPOGRAPHY --- */
.royal-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.royal-tags-overlay { position: absolute; top: 12px; left: 12px; z-index: 5; display: flex; gap: 6px; }

.royal-tag {
    border: 1px solid rgba(var(--gold-rgb), 0.3) !important;
    background: rgba(10, 10, 12, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gold) !important;
    padding: 5px 12px;
    border-radius: 0; /* SHARP CORNERS */
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-card:hover .royal-tag,
.host-card:hover .royal-tag {
    background: var(--gold) !important;
    color: #000 !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.2) !important;
}

.gold-diamond { color: var(--gold); font-size: 8px; margin: 0 6px; opacity: 0.6; }
.ep-date { font-family: var(--font-serif); font-style: italic; font-size: 13px; color: var(--dim); }

/* --- 3. 12-COLUMN OVERLAP HERO GRID --- */
.featured-video-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center; /* Centers items vertically on desktop */
    gap: 0; 
}

.video-player-wrapper {
    grid-column: 1 / 9; 
    grid-row: 1;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 0; /* SHARP CORNERS */
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    z-index: 2;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.7s;
}

.video-player-wrapper .video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.15) brightness(0.85);
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), filter 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-player-wrapper:hover {
    transform: translateY(-4px); 
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(var(--gold-rgb), 0.08);
}

.video-player-wrapper:hover .video-thumb {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(1.05) brightness(1.05);
}

.featured-video-info {
    grid-column: 8 / 13; 
    grid-row: 1;
    background: linear-gradient(145deg, rgba(12, 12, 14, 0.95), rgba(5, 5, 5, 0.98));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 50px;
    border-radius: 0; /* SHARP CORNERS */
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--gold); /* Added signature gold top-border */
    z-index: 3;
    box-shadow: -10px 20px 50px rgba(0, 0, 0, 0.8);
}

@keyframes softPulse {
    0% { box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0.2); }
    70% { box-shadow: 0 0 0 20px rgba(var(--gold-rgb), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0); }
}

.huge-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px; 
    height: 75px;
    border-radius: 50%; /* Play button stays circular */
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px; 
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.huge-play-btn.pulse-anim { animation: softPulse 3s infinite; }

.video-player-wrapper:hover .huge-play-btn {
    background: var(--gold) !important;
    color: #000 !important;
    border-color: var(--gold) !important;
    transform: translate(-50%, -50%) scale(1.05);
    animation: none; 
    box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.3);
}

.video-duration-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 0; 
    border: 1px solid var(--border-color);
    z-index: 4;
}

/* --- 4. AUTO-SCROLLING SLIDER (MOMENTUM) --- */
.podcast-slider-section { position: relative; }
.slider-header { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; margin-bottom: 25px; }
.slider-header .section-label { border-bottom: none !important; margin-bottom: 0 !important; padding-bottom: 0 !important; }
.slider-controls { display: flex; gap: 10px; }
.slider-btn { width: 40px; height: 40px; border-radius: 50%; background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s ease; }
.slider-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

.slider-mask { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); }

.slider-container {
    display: flex; gap: 35px; overflow-x: auto; padding: 20px 0 60px 0; -ms-overflow-style: none; scrollbar-width: none;
    -webkit-overflow-scrolling: touch; /* iOS smooth momentum scrolling */
}
.slider-container::-webkit-scrollbar { display: none; }
.slider-card { flex: 0 0 380px; transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1); }

.slider-container:hover .slider-card { opacity: 0.35; filter: grayscale(100%) brightness(0.4); transform: scale(0.98); }
.slider-container .slider-card:hover {
    opacity: 1; transform: translateY(-8px) scale(1.05); filter: grayscale(0%) contrast(1.05) brightness(1.05);
    z-index: 10; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(var(--gold-rgb), 0.1);
}

/* --- 5. EPISODE GRID & CARDS --- */
.podcast-grid-section { position: relative; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 40px 35px; }
.video-card { cursor: pointer; position: relative; display: flex; flex-direction: column; }

.video-thumb-wrap {
    position: relative; aspect-ratio: 16/9; border-radius: 0; overflow: hidden; margin-bottom: 15px;
    border: 1px solid var(--border-color); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s, border-color 0.6s;
}

.video-thumb-wrap::after { 
    content: ''; position: absolute; inset: 0; 
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 40%); 
    opacity: 0.6; transition: opacity 0.5s; 
}

.video-thumb-wrap img { 
    width: 100%; height: 100%; object-fit: cover; 
    filter: grayscale(100%) contrast(1.15) brightness(0.85); 
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

.video-card:hover .video-thumb-wrap { transform: translateY(-6px); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9); border-color: var(--gold); }
.video-card:hover .video-thumb-wrap img { transform: scale(1.05); filter: grayscale(0%) contrast(1.05) brightness(1.05); } 
.video-card:hover .video-thumb-wrap::after { opacity: 0.9; }

.card-play-overlay {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9);
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(0, 0, 0, 0.5) !important; backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.3) !important; color: var(--white) !important; 
    display: flex; align-items: center; justify-content: center;
    padding-left: 3px; opacity: 0; z-index: 5; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-card:hover .card-play-overlay { 
    opacity: 1; transform: translate(-50%, -50%) scale(1);
    background: var(--gold) !important; border-color: var(--gold) !important; 
    color: #000 !important; box-shadow: 0 0 25px rgba(var(--gold-rgb), 0.25) !important;
}

.video-meta { display: flex; align-items: center; font-size: 10.5px; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; transform: translateY(0); transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); }
.ep-num { color: var(--gold); }
.video-title { font-family: var(--font-serif); font-size: 1.6rem; line-height: 1.25; color: var(--white); transform: translateY(0); transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.4s; font-weight: 400;}

.video-card:hover .video-meta { transform: translateY(-2px); }
.video-card:hover .video-title { transform: translateY(-4px); color: var(--gold); }

/* --- 6. VOICES OF HORIZON (FULL COLOR HOSTS) --- */
.podcast-hosts-section { position: relative; padding-bottom: 20px; }

.hosts-slider-container { display: flex; gap: 70px; overflow-x: auto; padding: 20px 0 40px 0; -ms-overflow-style: none; scrollbar-width: none; align-items: center; -webkit-overflow-scrolling: touch;}
.hosts-slider-container::-webkit-scrollbar { display: none; }

.host-card { flex: 0 0 180px; cursor: pointer; display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }

.host-img-wrap {
    width: 180px; height: 180px; border-radius: 50%; overflow: hidden; position: relative; margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.8s;
}

.host-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) brightness(0.95) !important; transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.8s ease; }

.host-split-lighting { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 40%, rgba(255,255,255,0.05) 100%) !important; z-index: 2; transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); border-radius: 50%; }

.hosts-slider-container:hover .host-card { opacity: 0.35; transform: scale(0.95); filter: brightness(0.5); }
.hosts-slider-container .host-card:hover { opacity: 1; transform: translateY(-10px) scale(1.05); filter: brightness(1); z-index: 10; }
.host-card:hover .host-img-wrap { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(var(--gold-rgb), 0.15); border-color: var(--gold); }
.host-card:hover .host-split-lighting { opacity: 0 !important; }
.host-card:hover .host-img-wrap img { transform: scale(1.08); filter: contrast(1.1) brightness(1.1) !important; }

.host-info { transform: translateY(0); transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); }
.host-name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); margin-bottom: 5px; transition: color 0.4s; font-weight: 400;}
.host-beat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); }
.host-card:hover .host-info { transform: translateY(-4px); }
.host-card:hover .host-name { color: var(--gold); }

/* --- 7. THE INBOX (COMPREHENSIVE PITCH FORM) --- */
.suggest-module { position: relative; border-radius: 0; overflow: hidden; border: 1px solid var(--border-color); margin-bottom: 40px; }
.suggest-bg-image { position: absolute; inset: 0; z-index: 1; }
.suggest-bg-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) brightness(0.3) contrast(1.2); }

.suggest-glass-panel {
    position: relative; z-index: 2; padding: 90px 60px;
    background: linear-gradient(135deg, rgba(10,10,12,0.85) 0%, rgba(5,5,7,0.95) 100%);
    backdrop-filter: blur(20px); display: flex; flex-direction: column; align-items: center; text-align: center;
}

.royal-pitch-form { display: flex; flex-direction: column; gap: 35px; width: 100%; max-width: 750px; text-align: left; }
.form-row { display: flex; gap: 35px; width: 100%; }
.input-group { position: relative; flex: 1; width: 100%; }

.pitch-input {
    width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 0; color: var(--white); font-size: 1.15rem; font-family: var(--font-serif); font-style: italic;
    outline: none; transition: all 0.3s ease;
}
.pitch-input::placeholder { color: rgba(255, 255, 255, 0.35); }
.pitch-textarea { resize: none; line-height: 1.6; }

.custom-dropdown { position: relative; cursor: pointer; user-select: none; }
.dropdown-selected { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.15); padding: 15px 0; color: rgba(255, 255, 255, 0.35); font-size: 1.15rem; font-family: var(--font-serif); font-style: italic; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s ease; }
.dropdown-selected.has-value { color: var(--white); } 
.dropdown-arrow { transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); color: var(--dim); }
.custom-dropdown.active .dropdown-arrow { transform: rotate(180deg); color: var(--gold); }
.dropdown-options { position: absolute; top: calc(100% + 5px); left: 0; width: 100%; background: #0a0a0a; border: 1px solid var(--border-color); border-radius: 0; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9); z-index: 100; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); overflow: hidden; }
.custom-dropdown.active .dropdown-options { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-option { padding: 15px 20px; color: var(--dim); font-size: 0.95rem; font-family: var(--font-sans); font-style: normal; font-weight: 500; transition: all 0.3s ease; border-bottom: 1px solid var(--border-color); }
.dropdown-option:last-child { border-bottom: none; }
.dropdown-option:hover { background: rgba(var(--gold-rgb), 0.1); color: var(--gold); padding-left: 25px; }

.input-glow-line { position: absolute; bottom: 0; left: 0; width: 0%; height: 1px; background: var(--gold); transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 0 10px var(--gold); }
.pitch-input:focus ~ .input-glow-line, .pitch-input:valid ~ .input-glow-line, .custom-dropdown.active .input-glow-line, .custom-dropdown.has-value .input-glow-line { width: 100%; }

.pitch-submit-btn { align-self: flex-start; background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 16px 35px; border-radius: 0; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); margin-top: 10px; }
.pitch-submit-btn:hover { background: var(--gold); color: #000; box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.2); }

/* --- 8. CINEMATIC MODAL --- */
.video-modal-overlay { position: fixed; inset: 0; background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(25px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; }
.video-modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content { width: 90vw; max-width: 1400px; background: #000; border-radius: 0; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,1), 0 0 60px rgba(var(--gold-rgb), 0.1); border: 1px solid rgba(var(--gold-rgb),0.2); transform: scale(0.98); transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.video-modal-overlay.active .modal-content { transform: scale(1); }
.iframe-container { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; }
.iframe-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.modal-close-btn { position: absolute; top: 30px; right: 40px; background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--white); width: 45px; height: 45px; border-radius: 50%; font-size: 18px; cursor: pointer; transition: 0.3s ease; z-index: 10000; display: flex; justify-content: center; align-items: center;}
.modal-close-btn:hover { background: var(--white); color: #000; border-color: var(--white); transform: rotate(90deg); }

/* ==========================================================================
   --- 9. ULTIMATE RESPONSIVE FIXES ---
   ========================================================================== */

/* TABLET & SMALL DESKTOP (1024px and below) */
@media (max-width: 1024px) {
    /* Featured Hero Stack */
    .featured-video-layout { 
        display: flex; 
        flex-direction: column; 
        gap: 0; 
        align-items: flex-start; /* Fixes vertical centering gap issues */
    }
    .video-player-wrapper { width: 100%; }
    .featured-video-info { margin: -60px 20px 0; padding: 40px 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
    
    /* Sliders & Grids */
    .slider-card { flex: 0 0 60vw; } 
    .video-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px 20px; }
    
    /* Forms */
    .form-row { flex-direction: column; gap: 35px; }
    .suggest-glass-panel { padding: 60px 40px; }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
    .podcast-page { padding-top: 0; }
    
    /* Featured Video Adjustments */
    .featured-video-info { margin: -40px 10px 0; padding: 30px 20px; }
    .huge-play-btn { width: 60px; height: 60px; }
    
    /* Typography Scaling */
    .video-title { font-size: 1.3rem; }
    .host-name { font-size: 1.2rem; }
    
    /* Sliders - Let them swipe naturally */
    .slider-card { flex: 0 0 85vw; }
    .slider-container, .hosts-slider-container { gap: 20px; padding: 10px 0 30px 0; }
    
    /* Host Cards Scaling */
    .host-card { flex: 0 0 130px; }
    .host-img-wrap { width: 130px; height: 130px; margin-bottom: 15px; }
    
    /* Episode Grid - 1 Column per row */
    .video-grid { grid-template-columns: 1fr; gap: 30px; }
    .video-thumb-wrap { margin-bottom: 10px; }
    
    /* Pitch Form */
    .suggest-glass-panel { padding: 40px 20px; }
    .pitch-input { font-size: 1rem; }
    .pitch-submit-btn { width: 100%; text-align: center; padding: 18px 0; } 
    
    /* Cinematic Modal */
    .modal-content { width: 95vw; }
    .modal-close-btn { 
        top: 15px; right: 15px; 
        width: 35px; height: 35px; 
        font-size: 16px; 
        background: rgba(0,0,0,0.5); 
    }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
    .featured-video-info { margin: -20px 0 0; border-left: none; border-right: none; border-radius: 0; }
    
    .slider-card { flex: 0 0 90vw; }
    .host-card { flex: 0 0 110px; }
    .host-img-wrap { width: 110px; height: 110px; }
    
    .huge-play-btn { width: 50px; height: 50px; padding-left: 2px; }
    .video-duration-badge { font-size: 9px; padding: 4px 8px; bottom: 10px; right: 10px; }
    .royal-tags-overlay { top: 8px; left: 8px; }
}

/* ==========================================================================
   --- 0. CINEMATIC PRELOADER ---
   ========================================================================== */
#premium-loader {
    position: fixed; inset: 0; background: var(--bg-dark); z-index: 999999; display: flex; align-items: center; justify-content: center; transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.8s;
}
#premium-loader.fade-out { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.loader-brand { font-family: var(--font-serif); font-size: clamp(1.5rem, 4vw, 2.5rem); color: var(--white); letter-spacing: -0.5px; animation: pulseText 1.5s infinite alternate ease-in-out; }
.loader-line { width: 0px; height: 1px; background: var(--gold); box-shadow: 0 0 10px var(--gold); animation: drawLine 1.5s infinite cubic-bezier(0.165, 0.84, 0.44, 1); }

@keyframes pulseText { 0% { opacity: 0.4; filter: blur(2px); } 100% { opacity: 1; filter: blur(0px); } }
@keyframes drawLine { 0% { width: 0px; opacity: 0; } 50% { width: 80px; opacity: 1; } 100% { width: 0px; opacity: 0; } }