body {
    width: 100%;
    min-height: 100vh;
    background-color: #1E1A1E;
    background-image: url('/storage/streamit-laravel/bg_body.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
}
  
.stz-bg {
    width: 100%;
    min-height: 100vh;
}

/* Homepage global background */
.stz-bg {
    position: relative;
    overflow-x: hidden;
}

/* Stremize Banner Section */
.stz-banner {
    position: relative;
    width: 100%;
    color: #fff;
    padding-top: 100px;
    padding-bottom: 150px;
    text-align: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin: 0;
    left: 0;
    transform: none;
}
.stz-banner__bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255,184,108,0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255,107,107,0.1) 0%, transparent 40%);
    z-index: 1;
}
.stz-banner__content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}
.stz-banner__content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.stz-banner__content p {
    font-size: 1.125rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    /* max-width: 600px; */
    margin-left: auto;
    margin-right: auto;
}
.stz-banner__button {
    background: linear-gradient(90deg, #ff9800 0%, #ffd740 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: 12px 40px;
    text-decoration: none;
    box-shadow: 0 4px 12px 0 rgba(255,152,0,0.2);
    transition: all 0.2s;
    font-size: 1.1rem;
}
.stz-banner__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px 0 rgba(255,152,0,0.3);
}
.stz-banner__movie-posters {
    position: relative;
    margin-top: 80px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
.stz-banner__poster {
    position: absolute;
    width: 200px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: all 0.3s ease-in-out;
    transform: translateX(calc((var(--i) - 2) * 120px)) scale(0.9) rotate(calc((var(--i) - 2) * 5deg));
    z-index: calc(5 - abs(var(--i) - 2));
}
.stz-banner__poster:hover {
    transform: translateX(calc((var(--i) - 2) * 120px)) scale(1.05) rotate(calc((var(--i) - 2) * 5deg)) translateY(-10px);
    z-index: 10;
}
.stz-banner__poster--main {
    transform: translateX(0) scale(1.1);
    z-index: 10;
}
.stz-banner__poster--main:hover {
    transform: scale(1.15) translateY(-10px);
    z-index: 11;
}
.stz-banner__poster--main img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 16px;
}
.stz-banner__play-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    opacity: 0;
}
.stz-banner__poster--main:hover .stz-banner__play-button {
    opacity: 1;
}
.stz-banner__play-button img {
    width: 32px; height: 32px;
}
.stz-banner [class*='stz-banner__deco-'] {
    position: absolute;
    z-index: 0;
    opacity: 0.8;
}
.stz-banner__deco-orb-1 { top: 10%; left: 15%; width: 120px; }
.stz-banner__deco-orb-2 { top: 20%; right: 10%; width: 80px; }
.stz-banner__deco-play { bottom: 30%; left: 10%; width: 60px; transform: rotate(-20deg); }
.stz-banner__deco-reel { bottom: 50%; right: 5%; width: 70px; transform: rotate(20deg); }
.stz-banner__title-mobile { display: none; }
.stz-banner__title-highlight { color: #EF7D35; }
.stz-ize {color: #FF5C38}
@media (max-width: 767px) {
    .stz-banner { padding-top: 80px; padding-bottom: 280px; }
    .stz-banner__content h1 { font-size: 2rem; }
    .stz-banner__content p { font-size: 1rem; }
    .stz-banner__movie-posters { margin-top: 60px; transform: scale(0.8); }
    .stz-banner__title-mobile { display: block; }
    .stz-banner__title { display: none; }
}

/* Stremize Feature Marquee */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.stz-marquee {
    width: 100vw;
    min-width: 100vw;
    /* left: 50%;
    right: 50%; */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    z-index: 10;
    background: linear-gradient(90deg, #ff9800 0%, #ff6a00 100%);
    padding: 1.2rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.stz-marquee__content {
    display: inline-block;
    white-space: nowrap;
    animation: stz-marquee-scroll 45s linear infinite;
}

@keyframes stz-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.stz-marquee__item {
    display: inline-block;
    color: #fff;
    font-size: 1.35rem;
    font-weight: bold;
    margin: 0 48px;
    letter-spacing: 0.5px;
}

.stz-marquee__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
}

@media (max-width: 900px) {
    .stz-marquee__item { font-size: 1.1rem; margin: 0 18px; }
    .stz-marquee__dot { width: 7px; height: 7px; margin-right: 7px; }
}

/* Stremize Feature App Block */
.stz-feature-app {
    position: relative;
    width: 100%;
    left: 0;
    transform: none;
    margin: 0;
    padding: 60px 0 120px 0;
    background: none;
    z-index: 2;
}
.stz-feature-app__desc {
    /* max-width: 900px; */
    margin: 0 auto 40px auto;
    color: #e0e0e0;
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.6;
}
.stz-feature-app__center {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    min-height: 600px;
}
.stz-feature-app__phone {
    display: block;
    position: relative;
    z-index: 2;
    width: 340px;
    max-width: 90vw;
    margin: 0 auto;
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.35);
}
.stz-feature-app__box {
    position: absolute;
    width: 360px;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(40,40,50,0.75);
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.18);
    color: #fff;
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.18);
    z-index: 3;
    text-align: left;
}
.stz-feature-app__box-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.stz-feature-app__box-desc {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 400;
}
.stz-feature-app__box--top-right {
    top: 20%;
    right: 0;
}
.stz-feature-app__box--left {
    left: 0;
    bottom: 45%;
}
.stz-feature-app__box--bottom-right {
    right: 0;
    bottom: 30px;
}
.stz-feature-app__box--bottom-left {
    left: 0;
    bottom: 30px;
}
.stz-feature-app__box--right {
    right: 0;
    bottom: 20%;
}
.stz-feature-app__deco {
    position: absolute;
    z-index: 1;
    opacity: 0.7;
}
.stz-feature-app__deco--reel {
    top: 30px;
    left: 12%;
    width: 60px;
}
.stz-feature-app__deco--play {
    bottom: 60px;
    right: 10%;
    width: 60px;
}
@media (min-width: 1600px) {
    body, .stz-bg {
        width: 100%;
    }
}
@media (max-width: 1100px) {
    .stz-feature-app__center { min-height: 500px; }
    .stz-feature-app__box { min-width: 220px; max-width: 260px; padding: 18px 16px; font-size: 0.95rem; }
    .stz-feature-app__phone { width: 220px; }
}
@media (max-width: 767px) {
    .stz-feature-app { padding: 40px 0 60px 0; }
    .stz-feature-app__desc { font-size: 1rem; }
    .stz-feature-app__center { min-height: 420px; }
    .stz-feature-app__phone { width: 160px; }
    .stz-feature-app__box {
        position: static;
        margin: 18px auto;
        display: block;
        min-width: 0;
        max-width: 95vw;
        text-align: center;
    }
    .stz-feature-app__box--top-right,
    .stz-feature-app__box--left,
    .stz-feature-app__box--bottom-right { top: auto; right: auto; left: auto; bottom: auto; }
    .stz-feature-app__deco--reel { top: 10px; left: 2%; width: 36px; }
    .stz-feature-app__deco--play { bottom: 10px; right: 2%; width: 36px; }
}

/* Stremize Download Block */
.stz-download {
    padding: 60px 0;
    text-align: center;
}
.stz-download__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
}
.stz-download__card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 32px;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(28,28,40,0.5);
    backdrop-filter: blur(5px);
}
.stz-download__info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.stz-download__icon {
    width: 60px;
    height: auto;
}
.stz-download__text-wrapper {
    text-align: left;
    color: #fff;
}
.stz-download__app-name {
    font-size: 1.5rem;
    font-weight: 700;
}
.stz-download__app-desc {
    color: #d1d1d1;
    font-size: 1rem;
}
.stz-download__button {
    background: linear-gradient(90deg, #ff6b6b 0%, #ffc107 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 999px;
    padding: 12px 32px;
    text-decoration: none;
    box-shadow: 0 4px 12px 0 rgba(255,152,0,0.2);
    transition: all 0.2s;
}
.stz-download__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px 0 rgba(255,152,0,0.3);
}

@media (max-width: 767px) {
    .stz-download__card {
        flex-direction: column;
        border-radius: 28px;
        gap: 24px;
        padding: 32px;
    }
    .stz-download__info {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .stz-download__text-wrapper {
        text-align: center;
    }
}

/* Stremize Plan Block */
.stz-plan {
    padding: 80px 0 100px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}
.stz-plan__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.stz-plan__desc {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}
.stz-plan__list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.stz-plan__item {
    background: rgba(40,40,50,0.85);
    border-radius: 32px;
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.18);
    border: 2px solid rgba(255,255,255,0.18);
    padding: 40px 36px 32px 36px;
    min-width: 320px;
    max-width: 370px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
}
.stz-plan__item--featured {
    border: 2px solid #ff9800;
    box-shadow: 0 0 60px 0 rgba(255,152,0,0.18), 0 8px 40px 0 rgba(0,0,0,0.18);
    transform: scale(1.06);
    z-index: 2;
    background: linear-gradient(120deg, rgba(255,152,0,0.12) 0%, rgba(255,255,255,0.04) 100%);
}
.stz-plan__item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.stz-plan__item-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}
.stz-plan__item-popular {
    background: linear-gradient(90deg, #ff6b6b 0%, #ffc107 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 3px 16px;
    margin-left: 8px;
    box-shadow: 0 2px 8px 0 rgba(255,152,0,0.12);
}
.stz-plan__item-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}
.stz-plan__item-price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}
.stz-plan__item-price-desc {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 400;
    margin-left: 8px;
}
.stz-plan__item-btn {
    display: block;
    width: 100%;
    margin: 0 auto 24px auto;
    padding: 14px 0;
    border-radius: 999px;
    font-size: 1.15rem;
    font-weight: 700;
    background: none;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    transition: all 0.2s;
}
.stz-plan__item-btn:hover {
    background: #fff;
    color: #181824;
}
.stz-plan__item-btn--featured {
    background: linear-gradient(90deg, #ff6b6b 0%, #ffc107 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px 0 rgba(255,152,0,0.18);
}
.stz-plan__item-btn--featured:hover {
    background: linear-gradient(90deg, #ffc107 0%, #ff6b6b 100%);
    color: #fff;
}
.stz-plan__item-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.stz-plan__item-features li {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.stz-plan__item-check {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 8px;
}
.stz-plan__footer {
    margin-top: 32px;
}
.stz-plan__discover-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff9800 0%, #ffc107 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 999px;
    padding: 12px 40px;
    text-decoration: none;
    box-shadow: 0 4px 12px 0 rgba(255,152,0,0.18);
    transition: all 0.2s;
}
.stz-plan__discover-btn:hover {
    background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
    color: #fff;
}
.stz-plan__item-device {
    color: #ffc107;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
@media (max-width: 1100px) {
    .stz-plan__list { gap: 20px; }
    .stz-plan__item { min-width: 260px; max-width: 320px; padding: 28px 12px; }
}
@media (max-width: 767px) {
    .stz-plan { padding: 40px 0 60px 0; }
    .stz-plan__list { flex-direction: column; gap: 24px; }
    .stz-plan__item { min-width: 0; max-width: 98vw; }
}

/* Responsive wrapper */
.stz-main-wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
}
@media (max-width: 1599px) {
    .stz-main-wrapper {
        max-width: 100%;
    }
}

/* Block Feature responsive */
@media (max-width: 599px) {
    .stz-feature-block {
        flex-direction: column !important;
        align-items: center !important;
        gap: 32px !important;
        padding: 0 0 32px 0 !important;
    }
    .stz-feature-img {
        width: 100% !important;
        min-width: 0 !important;
        justify-content: center !important;
        margin: 0 auto 24px auto !important;
    }
    .stz-feature-img img {
        width: 90vw !important;
        max-width: 360px !important;
        height: auto !important;
        display: block;
        margin: 0 auto;
    }
    .stz-feature-list {
        width: 100% !important;
        flex-direction: column !important;
        gap: 24px !important;
        align-items: center !important;
    }
    .stz-feature-item {
        width: 100% !important;
        border-radius: 32px !important;
        padding: 32px 20px !important;
        font-size: 1.1rem !important;
        margin: 0 auto !important;
        box-shadow: 0 4px 32px #0002;
    }
} 