.smnn-reels,
.smnn-reels * {
    box-sizing: border-box;
}

.smnn-reels {
    --smnn-reels-navy: #08162b;
    --smnn-reels-blue: #102b52;
    --smnn-reels-gold: #c69b3c;
    --smnn-reels-soft: #f5f7fb;
    --smnn-reels-text: #0f172a;
    width: min(1300px, 94vw);
    margin: clamp(28px, 4vw, 48px) auto;
    padding: clamp(18px, 2.2vw, 28px);
    border: 1px solid rgba(16, 43, 82, 0.11);
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
    box-shadow: 0 26px 80px rgba(8, 22, 43, 0.13);
    position: relative;
    overflow: hidden;
    color: var(--smnn-reels-text);
    isolation: isolate;
}

.smnn-reels::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--smnn-reels-gold), transparent);
}

.smnn-reels__header {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 0.9fr);
    gap: clamp(16px, 3vw, 30px);
    align-items: end;
    margin-bottom: clamp(18px, 2vw, 26px);
}

.smnn-reels__title-block {
    min-width: 0;
}

.smnn-reels__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--smnn-reels-gold);
    background: rgba(198, 155, 60, 0.1);
    border: 1px solid rgba(198, 155, 60, 0.24);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.smnn-reels__header h2,
.smnn-reels__mobile-header h2 {
    margin: 10px 0 5px;
    color: var(--smnn-reels-navy);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    font-weight: 900;
}

.smnn-reels__header p {
    margin: 0;
    color: #64748b;
    font-size: clamp(14px, 1.4vw, 16px);
}

.smnn-reels__controls {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.smnn-reels__tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
    padding: 6px;
    border-radius: 999px;
    background: #eef3fa;
    border: 1px solid rgba(16, 43, 82, 0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.smnn-reels__tabs button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 8px 14px;
    border: 0;
    border-radius: 999px;
    color: #18365f;
    background: transparent;
    font-weight: 900;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.smnn-reels__tabs button:hover {
    transform: translateY(-1px);
}

.smnn-reels__tabs button.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--smnn-reels-navy), var(--smnn-reels-blue));
    box-shadow: 0 10px 22px rgba(8, 22, 43, 0.18);
}

.smnn-reels__tabs b {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    min-height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    color: var(--smnn-reels-gold);
    background: rgba(255,255,255,0.88);
    font-size: 12px;
}

.smnn-reels__calendar {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto auto;
    gap: 8px;
    align-items: end;
    width: min(100%, 520px);
    padding: 10px;
    border: 1px solid rgba(16, 43, 82, 0.1);
    border-radius: 18px;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 10px 26px rgba(15, 30, 56, 0.06);
}

.smnn-reels__calendar[hidden] {
    display: none !important;
}

.smnn-reels__calendar label {
    display: grid;
    gap: 5px;
}

.smnn-reels__calendar span {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.smnn-reels__calendar input {
    width: 100%;
    min-height: 38px;
    border: 1px solid rgba(16, 43, 82, 0.14);
    border-radius: 12px;
    padding: 7px 10px;
    color: var(--smnn-reels-navy);
    background: #fff;
}

.smnn-reels__calendar button,
.smnn-reels__more {
    min-height: 38px;
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 900;
}

.smnn-reels__calendar button[type="submit"],
.smnn-reels__more {
    color: #fff;
    background: linear-gradient(135deg, var(--smnn-reels-navy), var(--smnn-reels-blue));
}

.smnn-reels__calendar button[type="button"] {
    color: #18365f;
    background: #eef3fa;
}

.smnn-reels__calendar small {
    grid-column: 1 / -1;
    min-height: 16px;
    color: #b42318;
    font-weight: 800;
}

.smnn-reels__desktop {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, clamp(350px, 31vw, 414px));
    gap: clamp(16px, 2.4vw, 32px);
    align-items: start;
}

.smnn-reels__list {
    display: grid;
    gap: 12px;
    max-height: clamp(620px, 70vh, 760px);
    overflow: auto;
    padding: 6px 4px 6px 10px;
    scrollbar-width: thin;
}

.smnn-reels__list-item {
    display: grid;
    grid-template-columns: clamp(90px, 10vw, 116px) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    width: 100%;
    min-height: 126px;
    border: 1px solid rgba(16, 43, 82, 0.1);
    border-radius: 22px;
    padding: 10px;
    background: #fff;
    color: inherit;
    text-align: right;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(15, 30, 56, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.smnn-reels__list-item:hover,
.smnn-reels__list-item.is-active {
    transform: translateY(-2px);
    border-color: rgba(198, 155, 60, 0.68);
    background: linear-gradient(135deg, #ffffff, #fffaf0);
    box-shadow: 0 16px 34px rgba(15, 30, 56, 0.12);
}

.smnn-reels__list-item.is-active {
    outline: 2px solid rgba(198, 155, 60, 0.22);
}

.smnn-reels__list-item.is-filter-hidden,
.smnn-reels__list-item.is-limit-hidden,
.smnn-reels__mobile-tile.is-filter-hidden,
.smnn-reels__mobile-tile.is-limit-hidden,
.smnn-reels__mobile-feature.is-filter-hidden,
.smnn-reels__viewer-card.is-filter-hidden {
    display: none !important;
}

.smnn-reels__thumb,
.smnn-reels__mobile-tile-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 14;
    border-radius: 16px;
    background: radial-gradient(circle at 50% 30%, #29476e, #071426 72%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.smnn-reels__thumb::after,
.smnn-reels__mobile-tile-thumb i,
.smnn-reels__mobile-feature i {
    content: "";
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #071426;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.smnn-reels__thumb::after {
    inset: auto 9px 9px auto;
    width: 32px;
    height: 32px;
    font-size: 12px;
}

.smnn-reels__list-copy {
    min-width: 0;
}

.smnn-reels__list-copy small,
.smnn-reels__list-copy em {
    display: block;
    color: #64748b;
    font-style: normal;
}

.smnn-reels__list-copy small {
    margin-bottom: 5px;
    color: var(--smnn-reels-gold);
    font-weight: 900;
}

.smnn-reels__list-copy strong {
    display: block;
    margin-bottom: 6px;
    color: #0f1e38;
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.35;
}

.smnn-reels__list-copy em {
    line-height: 1.5;
    font-size: 14px;
}

.smnn-reels__more {
    width: 100%;
    margin-top: 2px;
    box-shadow: 0 12px 28px rgba(8, 22, 43, 0.16);
}

.smnn-reels__more[hidden] {
    display: none !important;
}

.smnn-reels__phone-stage {
    display: flex;
    justify-content: center;
    align-self: stretch;
}

.smnn-reels__phone {
    position: sticky;
    top: 24px;
    width: clamp(320px, 30vw, 404px);
    max-width: 100%;
    aspect-ratio: 9 / 19.5;
    padding: 12px;
    border-radius: 52px;
    background: linear-gradient(145deg, #050910, #1c2534 55%, #050910);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06), 0 32px 80px rgba(7, 20, 38, 0.36);
}

.smnn-reels__phone-side {
    position: absolute;
    top: 120px;
    right: -3px;
    width: 4px;
    height: 90px;
    border-radius: 999px;
    background: #111827;
}

.smnn-reels__notch {
    position: absolute;
    top: 24px;
    left: 50%;
    z-index: 4;
    width: 102px;
    height: 30px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #01040a;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), inset 24px 0 38px rgba(255,255,255,0.06);
}

.smnn-reels__screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 42px;
    background: #020617;
}

.smnn-reels__player,
.smnn-reels__player iframe,
.smnn-reels__viewer-video,
.smnn-reels__viewer-video iframe {
    width: 100%;
    height: 100%;
}

.smnn-reels__player iframe,
.smnn-reels__viewer-video iframe {
    display: block;
    border: 0;
    background: #020617;
}

.smnn-reels__overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 96px 18px 22px;
    color: #fff;
    background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.3) 24%, rgba(2, 6, 23, 0.94) 100%);
    pointer-events: none;
}

.smnn-reels__overlay span,
.smnn-reels__mobile-copy span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 9px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fee7a8;
    background: rgba(198, 155, 60, 0.22);
    border: 1px solid rgba(254, 231, 168, 0.22);
    font-size: 12px;
    font-weight: 900;
}

.smnn-reels__overlay h3,
.smnn-reels__mobile-copy h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 900;
}

.smnn-reels__overlay p,
.smnn-reels__mobile-copy p {
    margin: 0 0 7px;
    color: rgba(255,255,255,0.84);
    line-height: 1.55;
}

.smnn-reels__overlay small,
.smnn-reels__mobile-copy small {
    display: block;
    color: rgba(255,255,255,0.64);
    margin-bottom: 0;
}

.smnn-reels__actions,
.smnn-reels__mobile-actions {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 10px;
}

.smnn-reels__actions {
    left: 13px;
    bottom: 118px;
}

.smnn-reels__actions button,
.smnn-reels__mobile-actions button,
.smnn-reels__viewer-close {
    display: grid;
    place-items: center;
    gap: 4px;
    min-width: 48px;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.smnn-reels__actions span,
.smnn-reels__mobile-actions span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.16);
    font-size: 21px;
}

.smnn-reels__actions button.is-liked span,
.smnn-reels__mobile-actions button.is-liked span {
    color: #ff5a7a;
    animation: smnn-reel-like 0.38s ease;
}

@keyframes smnn-reel-like {
    0% { transform: scale(1); }
    50% { transform: scale(1.22); }
    100% { transform: scale(1); }
}

.smnn-reels__mobile,
.smnn-reels__viewer {
    display: none;
}

.smnn-reels__viewer {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #020617;
    color: #fff;
}

.smnn-reels.is-viewer-open .smnn-reels__viewer {
    display: block;
}

.smnn-reels__viewer-feed {
    height: 100svh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: contain;
    background: #020617;
}

.smnn-reels__viewer-card {
    position: relative;
    height: 100svh;
    min-height: 620px;
    overflow: hidden;
    scroll-snap-align: start;
    background: radial-gradient(circle at 50% 30%, #193456, #020617 70%);
    color: #fff;
}

.smnn-reels__viewer-video {
    position: absolute;
    inset: 0;
}

.smnn-reels__viewer-close {
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: 14px;
    z-index: 1000001;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    font-size: 32px;
    line-height: 1;
}

.smnn-reels__mobile-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,6,23,0.3) 0%, transparent 28%, rgba(2,6,23,0.15) 54%, rgba(2,6,23,0.94) 100%);
    pointer-events: none;
}

.smnn-reels__mobile-copy {
    position: absolute;
    right: 18px;
    bottom: max(32px, env(safe-area-inset-bottom));
    left: 88px;
    z-index: 2;
    color: #fff;
    text-align: right;
}

.smnn-reels__mobile-copy h3 {
    font-size: 22px;
}

.smnn-reels__mobile-actions {
    left: 12px;
    bottom: max(92px, calc(env(safe-area-inset-bottom) + 64px));
}

.smnn-reels-empty {
    width: min(1300px, calc(100% - 28px));
    margin: 24px auto;
    padding: 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(16, 43, 82, 0.12);
    color: #64748b;
    text-align: center;
    font-weight: 800;
}

body.smnn-reels-viewer-lock {
    overflow: hidden !important;
}

@media (max-width: 1100px) and (min-width: 901px) {
    .smnn-reels__header {
        grid-template-columns: 1fr;
    }
    .smnn-reels__controls {
        justify-items: start;
    }
    .smnn-reels__desktop {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
    }
}

@media (max-width: 900px) {
    .smnn-reels {
        width: 100%;
        margin: 0;
        padding: 16px 14px 24px;
        border: 0;
        border-radius: 0;
        background: #f6f8fc;
        box-shadow: none;
    }

    .smnn-reels::before,
    .smnn-reels__header,
    .smnn-reels__desktop {
        display: none;
    }

    .smnn-reels__mobile {
        display: block;
        width: 100%;
    }

    .smnn-reels__mobile-header {
        display: grid;
        gap: 10px;
        margin-bottom: 14px;
    }

    .smnn-reels__mobile-header h2 {
        margin: 0;
        font-size: 28px;
    }

    .smnn-reels__tabs--mobile {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        border-radius: 18px;
    }

    .smnn-reels__tabs--mobile button {
        white-space: nowrap;
    }

    .smnn-reels__calendar--mobile {
        grid-template-columns: minmax(0, 1fr) auto auto;
        width: 100%;
        border-radius: 18px;
        background: #fff;
    }

    .smnn-reels__mobile-feature {
        position: relative;
        display: grid;
        align-content: end;
        width: 100%;
        min-height: min(62svh, 560px);
        aspect-ratio: 9 / 13.5;
        border: 0;
        border-radius: 28px;
        padding: 22px;
        overflow: hidden;
        text-align: right;
        color: #fff;
        background: radial-gradient(circle at 50% 28%, #29476e, #06111f 72%);
        background-size: cover;
        background-position: center;
        box-shadow: 0 24px 54px rgba(8, 22, 43, 0.22);
        cursor: pointer;
    }

    .smnn-reels__mobile-feature::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 20%, rgba(2,6,23,0.92) 100%);
    }

    .smnn-reels__mobile-feature span,
    .smnn-reels__mobile-feature strong,
    .smnn-reels__mobile-feature small,
    .smnn-reels__mobile-feature i {
        position: relative;
        z-index: 1;
    }

    .smnn-reels__mobile-feature span {
        width: fit-content;
        margin-bottom: 8px;
        padding: 6px 10px;
        border-radius: 999px;
        color: #fee7a8;
        background: rgba(198, 155, 60, 0.22);
        border: 1px solid rgba(254, 231, 168, 0.22);
        font-size: 12px;
        font-weight: 900;
    }

    .smnn-reels__mobile-feature strong {
        display: block;
        color: #fff;
        font-size: 24px;
        line-height: 1.25;
        font-weight: 950;
    }

    .smnn-reels__mobile-feature small {
        margin-top: 8px;
        color: rgba(255,255,255,0.75);
        font-weight: 800;
    }

    .smnn-reels__mobile-feature i {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 64px;
        height: 64px;
        transform: translate(-50%, -50%);
        font-style: normal;
        font-size: 20px;
    }

    .smnn-reels__mobile-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 14px;
    }

    .smnn-reels__mobile-tile {
        display: grid;
        gap: 8px;
        border: 0;
        padding: 0;
        background: transparent;
        text-align: right;
        cursor: pointer;
    }

    .smnn-reels__mobile-tile-thumb {
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(8, 22, 43, 0.13);
    }

    .smnn-reels__mobile-tile-thumb i {
        inset: auto 8px 8px auto;
        width: 30px;
        height: 30px;
        font-size: 11px;
        font-style: normal;
    }

    .smnn-reels__mobile-tile-copy small,
    .smnn-reels__mobile-tile-copy strong {
        display: block;
    }

    .smnn-reels__mobile-tile-copy small {
        color: var(--smnn-reels-gold);
        font-size: 12px;
        font-weight: 900;
    }

    .smnn-reels__mobile-tile-copy strong {
        margin-top: 3px;
        color: var(--smnn-reels-navy);
        font-size: 14px;
        line-height: 1.35;
        font-weight: 900;
    }

    .smnn-reels__more--mobile {
        margin-top: 16px;
    }
}

@media (max-width: 520px) {
    .smnn-reels {
        padding: 14px 12px 22px;
    }

    .smnn-reels__calendar--mobile {
        grid-template-columns: 1fr;
    }

    .smnn-reels__mobile-copy {
        right: 14px;
        left: 74px;
        bottom: max(24px, env(safe-area-inset-bottom));
    }

    .smnn-reels__mobile-copy h3 {
        font-size: 19px;
    }

    .smnn-reels__mobile-copy p {
        font-size: 14px;
        max-height: 84px;
        overflow: hidden;
    }

    .smnn-reels__mobile-actions span {
        width: 42px;
        height: 42px;
    }
}

/* v3.3.145 adaptive player, branding, and calendar refinements */
.smnn-reels__calendar {
    grid-template-columns: minmax(0, 1.2fr) minmax(170px, 1fr) auto auto;
    gap: 10px;
    align-items: center;
    width: min(100%, 640px);
    padding: 12px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246,249,253,0.96));
    border: 1px solid rgba(16, 43, 82, 0.10);
    box-shadow: 0 18px 36px rgba(15, 30, 56, 0.08);
}

.smnn-reels__calendar-intro {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.smnn-reels__calendar-intro i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--smnn-reels-navy), var(--smnn-reels-blue));
    color: #fff;
    font-style: normal;
    font-size: 18px;
    box-shadow: 0 12px 26px rgba(8, 22, 43, 0.18);
}

.smnn-reels__calendar-intro-text {
    min-width: 0;
}

.smnn-reels__calendar-intro-text strong {
    display: block;
    color: var(--smnn-reels-navy);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.smnn-reels__calendar-intro-text small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.smnn-reels__calendar-field {
    display: grid;
    gap: 5px;
}

.smnn-reels__calendar-field span {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.smnn-reels__calendar input {
    min-height: 44px;
    border-radius: 14px;
    padding: 10px 12px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.smnn-reels__calendar button,
.smnn-reels__more {
    min-height: 44px;
    padding: 10px 16px;
}

.smnn-reels__calendar-message {
    grid-column: 1 / -1;
    min-height: 16px;
    color: #b42318;
    font-weight: 800;
}

.smnn-reels__desktop {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 404px);
    gap: clamp(14px, 2vw, 24px);
    align-items: start;
}

.smnn-reels__list {
    max-height: clamp(540px, 72vh, 760px);
}

.smnn-reels__phone {
    top: clamp(10px, 2vh, 24px);
    width: min(clamp(286px, 28vw, 394px), calc((100vh - 190px) / 2.05));
    padding: 9px;
    border-radius: 46px;
    aspect-ratio: 9 / 18.6;
}

.smnn-reels__phone-side {
    top: 108px;
}

.smnn-reels__notch {
    top: 14px;
    width: 94px;
    height: 26px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05), inset 18px 0 30px rgba(255,255,255,0.06);
}

.smnn-reels__screen {
    border-radius: 38px;
}

.smnn-reels__publisher {
    position: absolute;
    top: 18px;
    left: 16px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 110px);
    padding: 8px 11px 8px 8px;
    border-radius: 999px;
    background: rgba(8, 22, 43, 0.34);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 26px rgba(0,0,0,0.16);
    color: #fff;
    direction: rtl;
}

.smnn-reels__publisher img {
    display: block;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 4px;
}

.smnn-reels__publisher strong {
    display: block;
    min-width: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.smnn-reels__publisher-badge {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    color: #fff !important;
    background: #1b84ff !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 11px !important;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(27, 132, 255, 0.34);
}

.smnn-reels__publisher--viewer {
    top: max(16px, calc(env(safe-area-inset-top) + 10px));
    left: 14px;
}

.smnn-reels__overlay {
    padding: 102px 18px 20px;
}

.smnn-reels__overlay h3,
.smnn-reels__mobile-copy h3 {
    font-size: 20px;
}

.smnn-reels__actions,
.smnn-reels__mobile-actions {
    gap: 10px;
}

.smnn-reels__actions {
    left: 12px;
    bottom: 102px;
}

.smnn-reels__actions button,
.smnn-reels__mobile-actions button {
    min-width: 58px;
    min-height: 68px;
    padding: 8px 6px;
    border-radius: 20px;
    background: rgba(8, 22, 43, 0.30);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.16);
}

.smnn-reels__actions span,
.smnn-reels__mobile-actions span {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    font-size: 18px;
}

.smnn-reels__actions small,
.smnn-reels__mobile-actions small {
    display: block;
    font-size: 11px;
    line-height: 1.15;
}

.smnn-reels__viewer-close {
    background: rgba(8, 22, 43, 0.34);
}

@media (max-width: 1100px) and (min-width: 901px) {
    .smnn-reels__calendar {
        width: 100%;
    }

    .smnn-reels__phone {
        width: min(clamp(276px, 31vw, 360px), calc((100vh - 210px) / 2.05));
    }
}

@media (max-height: 860px) and (min-width: 901px) {
    .smnn-reels {
        padding: 16px 18px 18px;
    }

    .smnn-reels__header {
        margin-bottom: 16px;
    }

    .smnn-reels__phone {
        width: min(clamp(260px, 27vw, 348px), calc((100vh - 170px) / 2.02));
    }

    .smnn-reels__list {
        max-height: clamp(480px, 68vh, 660px);
    }
}

@media (max-width: 900px) {
    .smnn-reels__calendar--mobile {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        border-radius: 22px;
    }

    .smnn-reels__calendar-intro {
        align-items: flex-start;
    }

    .smnn-reels__calendar-intro i {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .smnn-reels__publisher {
        top: max(16px, calc(env(safe-area-inset-top) + 10px));
        left: 12px;
        max-width: calc(100% - 88px);
    }

    .smnn-reels__mobile-actions {
        left: 12px;
        bottom: max(104px, calc(env(safe-area-inset-bottom) + 74px));
    }
}

@media (max-width: 520px) {
    .smnn-reels__publisher strong {
        max-width: 180px;
        font-size: 11px;
    }

    .smnn-reels__mobile-actions button {
        min-width: 54px;
        min-height: 64px;
    }
}

/* v3.3.146 premium layout, custom calendar, and flat controls */
.smnn-reels--premium {
    width: min(1300px, 94vw);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.smnn-reels--premium::before {
    display: none;
}

.smnn-reels__header-card {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 0.95fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
    margin-bottom: clamp(20px, 2.5vw, 30px);
    padding: clamp(20px, 2.6vw, 30px);
    border: 1px solid rgba(16, 43, 82, 0.11);
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 22px 60px rgba(8, 22, 43, 0.10);
    position: relative;
    overflow: hidden;
}

.smnn-reels__header-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--smnn-reels-gold), transparent);
}

.smnn-reels__header-card .smnn-reels__title-block,
.smnn-reels__header-card .smnn-reels__controls {
    position: relative;
    z-index: 1;
}

.smnn-reels__header-card h2 {
    margin: 10px 0 5px;
    color: var(--smnn-reels-navy);
    font-size: clamp(30px, 4.2vw, 48px);
    line-height: 1.08;
    font-weight: 950;
}

.smnn-reels__header-card p {
    margin: 0;
    color: #64748b;
    font-size: clamp(14px, 1.4vw, 16px);
}

.smnn-reels--premium .smnn-reels__desktop {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 404px);
    gap: clamp(18px, 2.4vw, 34px);
    align-items: start;
}

.smnn-reels--premium .smnn-reels__list {
    max-height: clamp(540px, 74vh, 780px);
    padding: 2px 2px 8px;
    gap: 14px;
}

.smnn-reels--premium .smnn-reels__list-item {
    border-radius: 26px;
    padding: 12px;
    border-color: rgba(16, 43, 82, 0.12);
    background: #fff;
    box-shadow: 0 14px 38px rgba(8, 22, 43, 0.08);
}

.smnn-reels--premium .smnn-reels__list-item:hover,
.smnn-reels--premium .smnn-reels__list-item.is-active {
    background: #fff;
    border-color: rgba(198, 155, 60, 0.76);
    box-shadow: 0 22px 50px rgba(8, 22, 43, 0.13);
}

.smnn-reels--premium .smnn-reels__phone-stage {
    align-self: start;
}

.smnn-reels--premium .smnn-reels__phone {
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08), 0 36px 90px rgba(7, 20, 38, 0.32);
}

.smnn-reels__calendar {
    grid-template-columns: 1fr;
    width: min(100%, 620px);
    padding: 14px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(16, 43, 82, 0.12);
    box-shadow: 0 16px 36px rgba(8, 22, 43, 0.08);
}

.smnn-reels__calendar-intro {
    display: flex;
    align-items: center;
    gap: 12px;
}

.smnn-reels__calendar-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--smnn-reels-navy), var(--smnn-reels-blue));
    box-shadow: 0 12px 24px rgba(8, 22, 43, 0.16);
}

.smnn-reels__calendar-icon svg,
.smnn-reels__calendar-nav svg,
.smnn-reels__icon svg,
.smnn-reels__viewer-close svg,
.smnn-reels__play-mark svg,
.smnn-reels__feature-play svg {
    display: block;
    width: 22px;
    height: 22px;
}

.smnn-reels__calendar-panel {
    display: grid;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(16, 43, 82, 0.08);
}

.smnn-reels__calendar-nav {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 8px;
}

.smnn-reels__calendar-nav button,
.smnn-reels__calendar-footer button {
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 14px;
    background: #eef3fa;
    color: var(--smnn-reels-blue);
    cursor: pointer;
    min-height: 40px;
    font-weight: 900;
}

.smnn-reels__calendar-nav strong {
    color: var(--smnn-reels-navy);
    text-align: center;
    font-size: 15px;
    font-weight: 950;
}

.smnn-reels__calendar-weekdays,
.smnn-reels__calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.smnn-reels__calendar-weekdays span {
    color: #64748b;
    text-align: center;
    font-size: 11px;
    font-weight: 900;
}

.smnn-reels__calendar-grid button,
.smnn-reels__calendar-empty {
    display: grid;
    place-items: center;
    min-height: 36px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
}

.smnn-reels__calendar-grid button {
    border: 1px solid rgba(16, 43, 82, 0.10);
    background: #f8fafc;
    color: #94a3b8;
}

.smnn-reels__calendar-grid button.has-brief {
    cursor: pointer;
    color: var(--smnn-reels-navy);
    background: linear-gradient(180deg, #fff, #fff8e8);
    border-color: rgba(198, 155, 60, 0.52);
    box-shadow: inset 0 -2px 0 rgba(198, 155, 60, 0.28);
}

.smnn-reels__calendar-grid button.has-brief:hover,
.smnn-reels__calendar-grid button.is-selected {
    color: #fff;
    background: linear-gradient(135deg, var(--smnn-reels-navy), var(--smnn-reels-blue));
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(8, 22, 43, 0.18);
}

.smnn-reels__calendar-grid button.is-unavailable {
    opacity: 0.42;
}

.smnn-reels__calendar-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 32px;
}

.smnn-reels__calendar-footer button {
    display: inline-flex;
    padding: 8px 12px;
    min-height: 34px;
    border-radius: 999px;
}

.smnn-reels__calendar-footer small {
    color: #b42318;
    font-weight: 800;
}

.smnn-reels__publisher {
    left: 14px;
    right: auto;
    direction: ltr;
    flex-direction: row;
    max-width: calc(100% - 92px);
    background: rgba(2, 6, 23, 0.22);
    padding: 7px 10px 7px 7px;
}

.smnn-reels__publisher-logo {
    order: 1;
}

.smnn-reels__publisher-badge-img {
    order: 2;
    display: block;
    width: 19px;
    height: 19px;
    min-width: 19px;
    object-fit: contain;
    filter: drop-shadow(0 5px 12px rgba(74,125,242,0.35));
}

.smnn-reels__publisher strong {
    order: 3;
    direction: rtl;
    text-align: right;
}

.smnn-reels__publisher-badge {
    display: none !important;
}

.smnn-reels__actions,
.smnn-reels__mobile-actions {
    gap: 13px;
}

.smnn-reels__actions button,
.smnn-reels__mobile-actions button,
.smnn-reels__viewer-close {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.72);
}

.smnn-reels__actions button,
.smnn-reels__mobile-actions button {
    min-width: 46px;
    min-height: 52px;
    padding: 0;
    border-radius: 0;
    color: #fff;
}

.smnn-reels__actions span,
.smnn-reels__mobile-actions span,
.smnn-reels__icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: currentColor;
}

.smnn-reels__icon svg,
.smnn-reels__viewer-close svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.66));
}

.smnn-reels__actions small,
.smnn-reels__mobile-actions small {
    font-size: 10px;
    font-weight: 900;
    color: rgba(255,255,255,0.88);
}

.smnn-reels__icon--volume .smnn-icon-volume-off,
.smnn-reels__action-btn.is-muted .smnn-icon-volume-on {
    display: none;
}

.smnn-reels__action-btn.is-muted .smnn-icon-volume-off {
    display: block;
}

.smnn-reels__action-btn.is-liked .smnn-reels__icon svg path {
    stroke: #ff5a7a;
}

.smnn-reels__viewer-close {
    display: grid;
    place-items: center;
    color: #fff;
    width: 46px;
    height: 46px;
    padding: 0;
    font-size: 0;
}

.smnn-reels__thumb::after,
.smnn-reels__mobile-tile-thumb i,
.smnn-reels__mobile-feature i {
    content: none !important;
    display: none !important;
}

.smnn-reels__play-mark,
.smnn-reels__feature-play {
    position: absolute;
    display: grid;
    place-items: center;
    color: #fff;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.48));
}

.smnn-reels__play-mark {
    left: 10px;
    bottom: 10px;
}

.smnn-reels__feature-play {
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
}

.smnn-reels__feature-play svg {
    width: 58px;
    height: 58px;
}

@media (max-width: 1100px) and (min-width: 901px) {
    .smnn-reels__header-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .smnn-reels--premium {
        width: 100%;
        padding: 14px 12px 22px;
        background: #f6f8fc;
    }

    .smnn-reels__header-card,
    .smnn-reels__desktop {
        display: none;
    }

    .smnn-reels__mobile-header {
        padding: 16px;
        border: 1px solid rgba(16, 43, 82, 0.10);
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 14px 34px rgba(8, 22, 43, 0.08);
    }

    .smnn-reels__calendar--mobile {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 12px;
    }

    .smnn-reels__calendar-grid button,
    .smnn-reels__calendar-empty {
        min-height: 34px;
        border-radius: 11px;
        font-size: 12px;
    }

    .smnn-reels__publisher {
        left: 12px;
        right: auto;
        max-width: calc(100% - 82px);
    }

    .smnn-reels__publisher strong {
        max-width: 210px;
    }
}

/* v3.3.147 card cleanup, calendar popup, badge placement, and player-control polish */
.smnn-reels__controls {
    position: relative;
}

.smnn-reels__calendar-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: min(100%, 620px);
}

.smnn-reels__calendar-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 9px 14px;
    border: 1px solid rgba(198, 155, 60, 0.28);
    border-radius: 999px;
    color: var(--smnn-reels-navy);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: 0 12px 30px rgba(8, 22, 43, 0.08);
    cursor: pointer;
    font-weight: 950;
}

.smnn-reels__calendar-toggle:hover,
.smnn-reels__calendar-toggle[aria-expanded="true"] {
    border-color: rgba(198, 155, 60, 0.62);
    box-shadow: 0 16px 34px rgba(8, 22, 43, 0.12);
}

.smnn-reels__calendar-toggle.is-daily-active {
    background: linear-gradient(180deg, #fff, #fff8e9);
}

.smnn-reels__calendar-toggle-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--smnn-reels-navy), var(--smnn-reels-blue));
}

.smnn-reels__calendar-toggle svg {
    width: 18px;
    height: 18px;
}

.smnn-reels__calendar-toggle strong {
    font-size: 13px;
    white-space: nowrap;
}

.smnn-reels__calendar[data-smnn-calendar-popup] {
    position: absolute;
    top: calc(100% + 12px);
    inset-inline-end: 0;
    z-index: 25;
    width: min(520px, 92vw);
    margin: 0;
    transform-origin: top right;
    animation: smnn-reels-calendar-pop 0.18s ease both;
}

@keyframes smnn-reels-calendar-pop {
    from { opacity: 0; transform: translateY(-6px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.smnn-reels--premium .smnn-reels__list {
    gap: 12px;
}

.smnn-reels--premium .smnn-reels__list-item {
    grid-template-columns: clamp(124px, 12vw, 158px) minmax(0, 1fr);
    min-height: 158px;
    align-items: stretch;
    gap: 18px;
    padding: 12px;
    border-radius: 24px;
    text-align: right;
    overflow: hidden;
}

.smnn-reels--premium .smnn-reels__thumb {
    aspect-ratio: 9 / 12.2;
    min-height: 134px;
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(8, 22, 43, 0.16);
}

.smnn-reels--premium .smnn-reels__list-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
    padding-inline-start: clamp(4px, 1.2vw, 14px);
}

.smnn-reels--premium .smnn-reels__list-copy small {
    margin-bottom: 8px;
    font-size: 13px;
}

.smnn-reels--premium .smnn-reels__list-copy strong {
    max-width: 680px;
    margin-bottom: 8px;
    font-size: clamp(18px, 2.05vw, 24px);
    line-height: 1.32;
}

.smnn-reels--premium .smnn-reels__list-copy em {
    max-width: 720px;
    color: #64748b;
    font-size: clamp(14px, 1.4vw, 17px);
    line-height: 1.55;
}

.smnn-reels--premium .smnn-reels__list-item.is-active {
    background: linear-gradient(180deg, #fff, #fffaf0);
    box-shadow: 0 18px 42px rgba(8, 22, 43, 0.12);
}

.smnn-reels--premium .smnn-reels__list-item.is-active::before {
    content: "";
    position: absolute;
    inset-block: 18px;
    inset-inline-start: 0;
    width: 5px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--smnn-reels-gold), #f5d075);
}

.smnn-reels__publisher {
    direction: ltr;
    gap: 9px;
    padding: 7px 11px 7px 7px;
}

.smnn-reels__publisher-logo {
    order: 1;
}

.smnn-reels__publisher strong {
    order: 2;
    direction: rtl;
    text-align: right;
}

.smnn-reels__publisher-badge-img {
    order: 3;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    filter: drop-shadow(0 4px 10px rgba(74,125,242,0.42));
}

.smnn-reels__actions button,
.smnn-reels__mobile-actions button,
.smnn-reels__viewer-close,
.smnn-reels__actions span,
.smnn-reels__mobile-actions span,
.smnn-reels__icon {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.smnn-reels__actions button:hover .smnn-reels__icon,
.smnn-reels__mobile-actions button:hover .smnn-reels__icon {
    transform: translateY(-1px) scale(1.04);
}

.smnn-reels__action-btn .smnn-reels__icon {
    transition: transform 0.16s ease, color 0.16s ease;
}

@media (max-width: 900px) {
    .smnn-reels__calendar-wrap,
    .smnn-reels__calendar-wrap--mobile {
        width: 100%;
        justify-content: flex-start;
    }

    .smnn-reels__calendar[data-smnn-calendar-popup],
    .smnn-reels__calendar--mobile[data-smnn-calendar-popup] {
        position: fixed;
        inset: auto 12px max(12px, env(safe-area-inset-bottom)) 12px;
        width: auto;
        max-height: min(78svh, 620px);
        overflow: auto;
        z-index: 1000002;
        border-radius: 28px;
        box-shadow: 0 -18px 60px rgba(8, 22, 43, 0.28);
        animation: smnn-reels-calendar-sheet 0.2s ease both;
    }

    @keyframes smnn-reels-calendar-sheet {
        from { opacity: 0; transform: translateY(18px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .smnn-reels--premium .smnn-reels__list-item {
        grid-template-columns: 104px minmax(0, 1fr);
        min-height: 128px;
    }
}

/* v3.3.148 fullscreen same-player, calendar overlay, and card shadow polish */
.smnn-reels.is-calendar-open {
    position: relative;
    z-index: 100000;
}

.smnn-reels__header-card {
    overflow: visible;
}

.smnn-reels__header-card .smnn-reels__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    direction: ltr;
    z-index: 100001;
}

.smnn-reels__header-card .smnn-reels__tabs,
.smnn-reels__header-card .smnn-reels__calendar-wrap {
    direction: rtl;
}

.smnn-reels__calendar-wrap {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
    z-index: 100002;
}

.smnn-reels__calendar-toggle {
    box-shadow: 0 14px 34px rgba(8, 22, 43, 0.10);
}

.smnn-reels__calendar[data-smnn-calendar-popup] {
    z-index: 100003;
    box-shadow: 0 28px 80px rgba(8, 22, 43, 0.26);
}

.smnn-reels--premium .smnn-reels__list-item {
    border-color: rgba(16, 43, 82, 0.11);
    box-shadow: 0 22px 60px rgba(8, 22, 43, 0.10);
}

.smnn-reels--premium .smnn-reels__list-item:hover,
.smnn-reels--premium .smnn-reels__list-item.is-active {
    box-shadow: 0 22px 60px rgba(8, 22, 43, 0.10);
}

.smnn-reels--premium .smnn-reels__list-item.is-active {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.smnn-reels__screen:fullscreen,
.smnn-reels__phone:fullscreen,
.smnn-reels__viewer-card:fullscreen {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    background: #020617;
}

.smnn-reels__screen:fullscreen iframe,
.smnn-reels__phone:fullscreen iframe,
.smnn-reels__viewer-card:fullscreen iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .smnn-reels__mobile-header .smnn-reels__controls,
    .smnn-reels__mobile-header {
        overflow: visible;
    }

    .smnn-reels__calendar[data-smnn-calendar-popup],
    .smnn-reels__calendar--mobile[data-smnn-calendar-popup] {
        z-index: 100003;
    }
}

/* v3.3.149 player-control lockdown and strict card/header shadow match */
.smnn-reels--premium .smnn-reels__list-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 43, 82, 0.11) !important;
    border-radius: 30px !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    box-shadow: 0 22px 60px rgba(8, 22, 43, 0.10) !important;
    outline: 0 !important;
    transform: none !important;
}

.smnn-reels--premium .smnn-reels__list-item:hover,
.smnn-reels--premium .smnn-reels__list-item.is-active {
    border-color: rgba(16, 43, 82, 0.11) !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
    box-shadow: 0 22px 60px rgba(8, 22, 43, 0.10) !important;
    outline: 0 !important;
    transform: none !important;
}

.smnn-reels--premium .smnn-reels__list-item::before,
.smnn-reels--premium .smnn-reels__list-item.is-active::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0 !important;
    width: auto !important;
    height: 5px !important;
    border-radius: 30px 30px 0 0 !important;
    background: linear-gradient(90deg, transparent, var(--smnn-reels-gold), transparent) !important;
    opacity: 0.35;
    pointer-events: none;
}

.smnn-reels--premium .smnn-reels__list-item.is-active::before {
    opacity: 1;
}

.smnn-reels--premium .smnn-reels__thumb {
    box-shadow: none !important;
    border: 1px solid rgba(16, 43, 82, 0.08);
}

.smnn-reels__actions button,
.smnn-reels__mobile-actions button,
.smnn-reels__viewer-close,
.smnn-reels__actions span,
.smnn-reels__mobile-actions span,
.smnn-reels__icon {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.smnn-reels__actions button,
.smnn-reels__mobile-actions button {
    min-width: 40px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.smnn-reels__actions span,
.smnn-reels__mobile-actions span,
.smnn-reels__icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 0 !important;
}

.smnn-reels__icon svg,
.smnn-reels__viewer-close svg {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.72));
}

.smnn-reels__action-btn:focus-visible,
.smnn-reels__viewer-close:focus-visible {
    outline: 2px solid rgba(255,255,255,0.82) !important;
    outline-offset: 4px;
}

.smnn-reels__player iframe,
.smnn-reels__viewer-video iframe {
    background: #020617;
}

/* v3.3.150 shadow discipline, playback visual cleanup, and half-size badge */
.smnn-reels {
    --smnn-reels-card-radius: 30px;
    --smnn-reels-card-border: rgba(16, 43, 82, 0.09);
    --smnn-reels-card-bg: #ffffff;
    --smnn-reels-card-shadow: 0 1px 2px rgba(8, 22, 43, 0.025), 0 18px 46px rgba(8, 22, 43, 0.075);
}

.smnn-reels__header-card,
.smnn-reels--premium .smnn-reels__list-item {
    border: 1px solid var(--smnn-reels-card-border) !important;
    border-radius: var(--smnn-reels-card-radius) !important;
    background: var(--smnn-reels-card-bg) !important;
    box-shadow: var(--smnn-reels-card-shadow) !important;
}

.smnn-reels__header-card {
    overflow: visible !important;
}

.smnn-reels__header-card::before,
.smnn-reels--premium .smnn-reels__list-item::before,
.smnn-reels--premium .smnn-reels__list-item.is-active::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0 !important;
    width: auto !important;
    height: 5px !important;
    border-radius: var(--smnn-reels-card-radius) var(--smnn-reels-card-radius) 0 0 !important;
    background: linear-gradient(90deg, transparent, var(--smnn-reels-gold), transparent) !important;
    pointer-events: none;
}

.smnn-reels__header-card::before {
    opacity: 0.9;
}

.smnn-reels--premium .smnn-reels__list-item::before {
    opacity: 0.34;
}

.smnn-reels--premium .smnn-reels__list-item.is-active::before {
    opacity: 1;
}

.smnn-reels--premium .smnn-reels__list {
    padding: 6px 18px 44px !important;
    margin: -6px -18px -44px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.smnn-reels--premium .smnn-reels__list-item,
.smnn-reels--premium .smnn-reels__list-item:hover,
.smnn-reels--premium .smnn-reels__list-item.is-active {
    outline: 0 !important;
    transform: none !important;
    background: var(--smnn-reels-card-bg) !important;
    box-shadow: var(--smnn-reels-card-shadow) !important;
}

.smnn-reels--premium .smnn-reels__list-item:hover,
.smnn-reels--premium .smnn-reels__list-item.is-active {
    border-color: rgba(198, 155, 60, 0.38) !important;
}

.smnn-reels--premium .smnn-reels__thumb {
    box-shadow: none !important;
    border: 1px solid rgba(16, 43, 82, 0.08) !important;
}

.smnn-reels__publisher-badge-img {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    filter: drop-shadow(0 2px 5px rgba(74,125,242,0.38)) !important;
}

.smnn-reels__actions button,
.smnn-reels__mobile-actions button,
.smnn-reels__viewer-close,
.smnn-reels__actions span,
.smnn-reels__mobile-actions span,
.smnn-reels__icon {
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.smnn-reels__actions button,
.smnn-reels__mobile-actions button {
    min-width: 38px !important;
    min-height: 42px !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.smnn-reels__actions span,
.smnn-reels__mobile-actions span,
.smnn-reels__icon {
    width: 30px !important;
    height: 30px !important;
    border-radius: 0 !important;
}

@media (max-width: 900px) {
    .smnn-reels--premium .smnn-reels__list {
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }
}

/* v3.3.152 lazy player load, badge correction, and adaptive reel text */
.smnn-reels__player {
    position: relative;
}

.smnn-reels__player-preview {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    color: #fff;
    background-color: #020617;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    text-align: center;
}

.smnn-reels__player-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(8,22,43,0.16), rgba(2,6,23,0.42) 58%, rgba(2,6,23,0.74) 100%),
        linear-gradient(180deg, rgba(2,6,23,0.12), rgba(2,6,23,0.62));
    pointer-events: none;
}

.smnn-reels__player-preview-icon,
.smnn-reels__player-preview small {
    position: relative;
    z-index: 1;
}

.smnn-reels__player-preview-icon {
    display: grid;
    place-items: center;
    width: clamp(48px, 8vh, 68px);
    height: clamp(48px, 8vh, 68px);
    color: #fff;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.42));
}

.smnn-reels__player-preview-icon svg {
    width: 100%;
    height: 100%;
}

.smnn-reels__player-preview small {
    color: rgba(255,255,255,0.82);
    font-size: clamp(11px, 1vh, 13px);
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.smnn-reels__publisher-badge-img {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    max-width: 17px !important;
    max-height: 17px !important;
}

.smnn-reels__publisher strong {
    font-size: clamp(9.5px, 0.82vw, 12px) !important;
}

.smnn-reels__overlay span,
.smnn-reels__mobile-copy span {
    font-size: clamp(10px, 0.8vw, 12px) !important;
}

.smnn-reels__overlay h3,
.smnn-reels__mobile-copy h3 {
    font-size: clamp(16px, 1.28vw, 20px) !important;
    line-height: 1.22 !important;
}

.smnn-reels__overlay p,
.smnn-reels__mobile-copy p {
    font-size: clamp(12px, 0.92vw, 14px) !important;
    line-height: 1.48 !important;
}

.smnn-reels__overlay small,
.smnn-reels__mobile-copy small {
    font-size: clamp(10px, 0.78vw, 12px) !important;
}

@media (max-height: 860px) and (min-width: 901px) {
    .smnn-reels__overlay {
        padding-bottom: 16px !important;
    }

    .smnn-reels__overlay h3 {
        font-size: clamp(14px, 1.1vw, 18px) !important;
    }

    .smnn-reels__overlay p {
        font-size: clamp(11px, 0.84vw, 13px) !important;
        max-height: 70px;
        overflow: hidden;
    }

    .smnn-reels__publisher strong {
        font-size: clamp(9px, 0.72vw, 11px) !important;
    }
}


/* v3.3.153 preview ripple play cue and larger publisher badge */
.smnn-reels__player-preview {
    overflow: hidden;
}

.smnn-reels__player-preview-icon {
    position: relative;
    isolation: isolate;
}

.smnn-reels__player-preview-icon::before,
.smnn-reels__player-preview-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.42);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.smnn-reels__player-preview-icon::before {
    animation: smnn-reels-preview-ripple 2.2s ease-out infinite;
}

.smnn-reels__player-preview-icon::after {
    animation: smnn-reels-preview-ripple 2.2s ease-out 1.1s infinite;
}

.smnn-reels__player-preview:hover .smnn-reels__player-preview-icon::before,
.smnn-reels__player-preview:hover .smnn-reels__player-preview-icon::after,
.smnn-reels__player-preview:focus-visible .smnn-reels__player-preview-icon::before,
.smnn-reels__player-preview:focus-visible .smnn-reels__player-preview-icon::after {
    border-color: rgba(255,255,255,0.56);
}

@keyframes smnn-reels-preview-ripple {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.82);
    }
    14% {
        opacity: 0.75;
    }
    65% {
        opacity: 0.22;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.15);
    }
}


/* v3.3.154 animated muted background preview */
.smnn-reels__player-preview-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-color: #020617;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.smnn-reels__player-preview-bg iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    transform: scale(1.035);
    opacity: 0.88;
    filter: saturate(1.06) contrast(1.02) brightness(0.96);
    pointer-events: none;
}

.smnn-reels__player-preview {
    z-index: 1;
    background: transparent !important;
    background-image: none !important;
}

.smnn-reels__player-preview::before {
    background:
        radial-gradient(circle at 50% 44%, rgba(8,22,43,0.06), rgba(2,6,23,0.28) 52%, rgba(2,6,23,0.62) 100%),
        linear-gradient(180deg, rgba(2,6,23,0.04), rgba(2,6,23,0.42));
}

/* v3.3.155 deterministic play/pause state rules */
.smnn-reels__player,
.smnn-reels__viewer-video {
    position: relative;
}

.smnn-reels__play-toggle {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    color: #fff;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.smnn-reels__play-toggle-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(52px, 8.2vh, 72px);
    height: clamp(52px, 8.2vh, 72px);
    color: #fff;
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.18s ease, transform 0.18s ease;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.42));
    pointer-events: none;
    isolation: isolate;
}

.smnn-reels__play-toggle-icon svg {
    width: 100%;
    height: 100%;
}

.smnn-reels__play-toggle-icon::before,
.smnn-reels__play-toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.38);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.smnn-reels__player.is-paused .smnn-reels__play-toggle-icon,
.smnn-reels__viewer-video.is-paused .smnn-reels__play-toggle-icon {
    opacity: 1;
    transform: scale(1);
}

.smnn-reels__player.is-paused .smnn-reels__play-toggle-icon::before,
.smnn-reels__viewer-video.is-paused .smnn-reels__play-toggle-icon::before {
    animation: smnn-reels-preview-ripple 2.2s ease-out infinite;
}

.smnn-reels__player.is-paused .smnn-reels__play-toggle-icon::after,
.smnn-reels__viewer-video.is-paused .smnn-reels__play-toggle-icon::after {
    animation: smnn-reels-preview-ripple 2.2s ease-out 1.1s infinite;
}

.smnn-reels__player.is-playing .smnn-reels__play-toggle,
.smnn-reels__viewer-video.is-playing .smnn-reels__play-toggle {
    cursor: pointer;
}


/* v3.3.161 fixed desktop three-card pager: no list scrollbar */
.smnn-reels--premium .smnn-reels__list {
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
    overflow-x: visible !important;
    scrollbar-width: none !important;
    padding: 6px 18px 0 !important;
    margin: -6px -18px 0 !important;
    gap: clamp(14px, 1.4vw, 18px) !important;
}

.smnn-reels--premium .smnn-reels__list::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.smnn-reels--premium .smnn-reels__list-item.is-filter-hidden,
.smnn-reels--premium .smnn-reels__list-item.is-limit-hidden {
    display: none !important;
}

.smnn-reels__desktop-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 2px;
    direction: rtl;
}

.smnn-reels__desktop-pager button {
    appearance: none;
    border: 1px solid rgba(198, 155, 60, 0.34);
    border-radius: 999px;
    background: #fff;
    color: var(--smnn-reels-navy);
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: var(--smnn-reels-card-shadow);
    transition: border-color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.smnn-reels__desktop-pager button:not(:disabled):hover {
    border-color: rgba(198, 155, 60, 0.8);
    transform: translateY(-1px);
}

.smnn-reels__desktop-pager button:disabled,
.smnn-reels__desktop-pager button.is-disabled {
    opacity: 0.42;
    cursor: not-allowed;
    transform: none;
}

.smnn-reels__desktop-pager small {
    flex: 1;
    text-align: center;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .smnn-reels__desktop-pager {
        display: none !important;
    }
}


/* v3.3.162: Homepage Daily Brief Reels placement after hero */
.smnn-home-daily-brief-reels {
    width: 100%;
    padding: clamp(24px, 3vw, 34px) 0;
    background: var(--smnn-home-reels-section-bg, #f7fafc) !important;
}

.smnn-home-daily-brief-reels.smnn-home-uniform-spacing-on {
    padding-top: calc(var(--smnn-home-section-gap, 48px) / 2) !important;
    padding-bottom: calc(var(--smnn-home-section-gap, 48px) / 2) !important;
}

.smnn-home-daily-brief-reels .smnn-reels {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* v3.3.163: On the homepage placement, let the outer Reels section inherit
   the same page-section background while keeping the inner cards/phone premium. */
.smnn-home-daily-brief-reels .smnn-reels--premium {
    background: transparent !important;
}

@media (max-width: 900px) {
    .smnn-home-daily-brief-reels .smnn-reels--premium {
        background: transparent !important;
    }
}
