.lyo-shorts-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 15px 60px;
}

.lyo-shorts-hero {
    margin-bottom: 34px;
    padding: 34px 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(213, 59, 44, 0.28), transparent 34%),
        linear-gradient(135deg, #111827 0%, #1f2937 55%, #0f172a 100%);
    color: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.lyo-shorts-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(213, 59, 44, 0.92);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lyo-shorts-hero h1 {
    margin: 0 0 12px;
    max-width: 760px;
    font-size: 38px;
    line-height: 1.08;
    font-weight: 950;
}

.lyo-shorts-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,0.86);
    font-size: 17px;
    line-height: 1.6;
}

.lyo-shorts-feed {
    width: 100%;
    overflow: visible;
    background: transparent;
}

.lyo-short-card {
    min-height: 78vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    background: transparent;
}

.lyo-short-video-wrap {
    position: relative;
    width: min(560px, 100%);
    height: min(86vh, 860px);
    min-height: 680px;
    overflow: hidden;
    background: #000;
    border-radius: 30px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

.lyo-short-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.lyo-short-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.24) 48%, transparent 72%),
        linear-gradient(to left, rgba(0,0,0,0.48), transparent 42%);
    pointer-events: none;
}

.lyo-short-info {
    position: absolute;
    left: 24px;
    right: 104px;
    bottom: 30px;
    z-index: 3;
    color: #fff;
}

.lyo-short-info h2 {
    margin: 0 0 9px;
    font-size: 26px;
    line-height: 1.12;
    font-weight: 950;
    color: #fff;
    text-shadow: 0 3px 14px rgba(0,0,0,0.55);
}

.lyo-short-info p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.lyo-short-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #d53b2c;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(213, 59, 44, 0.36);
}

.lyo-short-actions {
    position: absolute;
    right: 18px;
    bottom: 112px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lyo-short-action {
    width: 62px;
    min-height: 62px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: 21px;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

.lyo-short-action span {
    font-size: 11px;
    font-weight: 800;
}

.lyo-short-icon {
    display: block;
    line-height: 1;
    font-size: 19px !important;
}

.lyo-short-like.is-liked {
    background: rgba(213, 59, 44, 0.92);
    transform: scale(1.04);
}

.lyo-short-sound {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    border: 0;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(0,0,0,0.58);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Center pause/play button */
.lyo-short-pause {
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    padding: 0;
    border-radius: 999px;
    background: rgba(0,0,0,0.42);
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.lyo-short-video-wrap:hover .lyo-short-pause,
.lyo-short-card.is-manual-paused .lyo-short-pause {
    opacity: 1;
    pointer-events: auto;
}

.lyo-short-pause:hover {
    background: rgba(213,59,44,0.86);
    transform: translate(-50%, -50%) scale(1.04);
}

@media (max-width: 768px) {
    .lyo-shorts-page {
        padding: 14px 10px 30px;
    }

    .lyo-shorts-hero {
        padding: 24px 18px;
        border-radius: 22px;
        margin-bottom: 16px;
    }

    .lyo-shorts-hero h1 {
        font-size: 28px;
    }

    .lyo-shorts-hero p {
        font-size: 15px;
    }

    .lyo-short-card {
        min-height: 78vh;
        padding: 10px 0;
    }

    .lyo-short-video-wrap {
        width: 100%;
        height: 78vh;
        min-height: 560px;
        border-radius: 22px;
    }

    .lyo-short-info {
        left: 14px;
        right: 82px;
        bottom: 22px;
    }

    .lyo-short-info h2 {
        font-size: 20px;
    }

    .lyo-short-info p {
        font-size: 13px;
    }

    .lyo-short-actions {
        right: 10px;
        bottom: 82px;
        gap: 10px;
    }

    .lyo-short-action {
        width: 52px;
        min-height: 52px;
        font-size: 19px;
    }

    .lyo-short-pause {
        width: 74px;
        height: 74px;
        font-size: 13px;
    }
}

/* =========================================================
   SHORTS DESKTOP PLAY / PAUSE FIX
   Only desktop. Mobile CSS is not changed.
   Desktop button states:
   - no is-playing = Play triangle
   - is-playing = Pause bars
   ========================================================= */
@media (min-width: 769px) {
    .lyo-short-pause {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0 !important;
        color: transparent !important;
        line-height: 0 !important;
    }

    .lyo-short-pause::before {
        content: "" !important;
        display: block !important;
        width: 0 !important;
        height: 0 !important;
        margin-left: 7px !important;
        border-top: 18px solid transparent !important;
        border-bottom: 18px solid transparent !important;
        border-left: 30px solid #fff !important;
        border-right: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .lyo-short-pause::after {
        content: none !important;
        display: none !important;
    }

    .lyo-short-card.is-playing .lyo-short-pause::before {
        content: "" !important;
        display: block !important;
        width: 10px !important;
        height: 32px !important;
        margin-left: 0 !important;
        border: 0 !important;
        background: #fff !important;
        box-shadow: 18px 0 0 #fff !important;
    }
}
/* DESKTOP PAUSE ICON ALIGN FIX */
@media (min-width: 769px) {
    .lyo-short-card.is-playing .lyo-short-pause::before {
        content: "❚❚" !important;
        display: block !important;
        width: auto !important;
        height: auto !important;
        margin-left: 0 !important;
        border: 0 !important;
        background: none !important;
        color: #fff !important;
        font-size: 30px !important;
        line-height: 1 !important;
        letter-spacing: -3px !important;
        transform: translateY(-1px);
    }
}
/* DESKTOP PAUSE ICON FINAL FIX - two clean CSS bars */
@media (min-width: 769px) {
    .lyo-short-card.is-playing .lyo-short-pause::before {
        content: "" !important;
        display: block !important;
        width: 10px !important;
        height: 30px !important;
        margin: 0 !important;
        border: 0 !important;
        background: #fff !important;
        box-shadow: 16px 0 0 #fff !important;
        border-radius: 2px !important;
        transform: translateX(-8px) !important;
    }
}
.lyo-shorts-home-btn {
    display: none !important;
}