*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

a{
    text-decoration: none;
}

:root{
 --primary: #0499FB;
 --white: #fff;
 --semi-white: #e5e5e5;
 --secondary: #BEC1C8;
 --dark: #1b1b1b;
 --black: #010305;
 --border-color: #2d2d2d;
 --danger: #e70c10;
}

body{
    background-color: var(--black);
    color: var(--white);
}
.embo-originals .container-fluid{
    padding: 0px !important;
    margin: 0px !important;
}

.navbar .navbar-nav li{
    padding: 0px 10px;
}

.navbar .navbar-nav li a{
    color: var(--secondary);
}
.navbar .navbar-nav li:hover a{
    color: var(--white);
}
.navbar .navbar-nav li a.active{
    color: var(--white);
}
/* ==========================
   Dark Dropdown Menu
========================== */

.navbar .dropdown-menu {
    background: var(--dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    min-width: 220px;
    padding: 8px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.navbar .dropdown-item {
    color: var(--semi-white);
    padding: 10px 18px;
    transition: .25s;
    font-size: 15px;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: var(--primary);
    color: var(--white);
}

.navbar .dropdown-divider {
    border-color: var(--border-color);
}

.navbar .dropdown-toggle::after {
    margin-left: 6px;
}

.navbar .dropdown-menu.show {
    animation: dropdownFade .2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=========================
Search
==========================*/

.navbar-actions{
    display:flex;
    align-items:center;
}

.search-wrapper{
    position:relative;
}

.search-toggle{
    width:42px;
    height:42px;
    border:none;
    background:none;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    transition:.3s;
}

.search-toggle:hover{
    color:var(--primary);
}

.search-form{
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:0;
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
}

.search-wrapper.active .search-form{
    width:320px;
    opacity:1;
    visibility:visible;
}

.search-form input{
    width:100%;
    height:46px;
    background:#242424;
    border:1px solid #6b6b6b;
    border-radius:10px;
    padding:0 55px 0 18px;
    color:#fff;
    outline:none;
}

.search-form input::placeholder{
    color:#a7a7a7;
}

.search-form button{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:none;
    color:#fff;
    font-size:22px;
}

.search-form button:hover{
    color:var(--primary);
}
.btn-primary{
    background-color: var(--primary) !important;
    outline: none !important;
    border: none !important;
}

.home{
    width: 100%;
    height: 95vh;
    background: url('../img/hero.png') no-repeat;
    background-position: center;
    background-size: cover;
}
.home .over-layer{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.35);
}

.hero-thumbnail-carousel {
    margin-top: 28px;
    max-width: 640px;
}
.hero-thumbnail-carousel-2 {
    max-width: 90%;
}

.hero-thumbnail-carousel .hero-thumb-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid transparent;
    transform: scale(0.96);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.hero-thumbnail-carousel .hero-thumb-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.hero-thumbnail-carousel .owl-item.active.center .hero-thumb-item {
    border-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.35), 0 0 30px rgba(4, 153, 251, 0.45);
}

.hero-thumbnail-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.hero-thumbnail-carousel .owl-nav button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: transform 0.25s ease, background 0.25s ease;
    box-shadow: 0 8px 20px rgba(4, 153, 251, 0.35);
}

.hero-thumbnail-carousel .owl-nav button:hover {
    background: #0389d6;
    transform: scale(1.05);
}

.hero-thumbnail-carousel .owl-nav button.owl-prev {
    margin-left: -8px;
}

.hero-thumbnail-carousel .owl-nav button.owl-next {
    margin-right: -8px;
}

.hero-thumbnail-carousel .owl-nav button span {
    font-size: 26px;
    line-height: 1;
}

.hero-thumbnail-carousel .owl-nav button.disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.hero-thumbnail-carousel .owl-dots {
    display: none !important;
}

.home {
    transition: background-image 0.6s ease;
}

.hero-thumbnail-carousel .owl-nav.disabled{
    display: block !important;
}
.hero-thumbnail-carousel .owl-nav button.owl-next{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary);
}
.hero-thumbnail-carousel .owl-nav button.owl-prev{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary);
}
.hero-thumbnail-carousel .owl-nav button{
    width: 30px;
    height: 30px;
}
.hero-thumbnail-carousel .owl-nav button span{
    margin-left: 3px;
    margin-top: -3px;
}

.hero-thumbnail-carousel .owl-nav button.owl-prev span{
    margin-left: -1px;
    margin-top: -3px;
}

.recomendate-movies {
    padding: 40px 0 60px;
    background: var(--black);
}

.movie-section {
    margin-bottom: 36px;
}

.movie-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.movie-section-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.movie-section-line {
    width: 4px;
    height: 22px;
    background: var(--primary);
    border-radius: 999px;
    display: inline-block;
}

.movie-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.movie-section-view {
    color: var(--secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.movie-section-view:hover {
    color: var(--white);
}

.movie-carousel .movie-card {
    width: 200px;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    background: #111;
}

.watching-carousel .movie-card {
    width: 250px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    background: #111;
}

.movie-carousel .movie-card:hover, .watching-carousel .movie-card:hover
 {
    transform: scale(1.05);
    filter: brightness(1.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.movie-carousel .movie-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.movie-carousel .owl-dots {
    display: none;
}

@media (max-width: 991px) {
    .movie-section-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .recomendate-movies {
        padding: 28px 0 44px;
    }

    .movie-section-header {
        margin-bottom: 14px;
    }
}

/* ==========================
   Premium Video Player Module
========================== */
.video-player {
    background: linear-gradient(180deg, rgba(1,3,5,0.96) 0%, rgba(7,12,18,0.95) 100%);
}

.player-shell {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(15,19,27,0.95) 0%, rgba(8,11,18,0.98) 100%);
    box-shadow: 0 18px 60px rgba(0,0,0,0.42);
}

.player-wrapper {
    position: relative;
    background: #000;
}

.player-wrapper .plyr {
    border-radius: 0;
}

.player-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}

.player-poster {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}

.player-poster img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.player-poster.hidden {
    display: none;
}

.player-play-trigger {
    position: absolute;
    width: 72px;
    height: 72px;
    border: none;
    border-radius: 50%;
    background: rgba(4, 153, 251, 0.95);
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 15px 35px rgba(4, 153, 251, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.player-play-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 40px rgba(4, 153, 251, 0.45);
}

.player-quality-wrap {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
}

.player-quality-select {
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.75);
    color: var(--white);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
}

.player-meta {
    padding: 22px 24px 24px;
}

.player-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.player-meta-line {
    color: var(--secondary);
    margin-bottom: 0;
}

.player-action-buttons .btn,
.player-secondary-actions .btn {
    border-radius: 999px;
    padding: 8px 14px;
    margin: 2px 0;
}

.description-block {
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    margin-top: 16px;
}

.description-text {
    color: var(--semi-white);
    line-height: 1.7;
    margin-bottom: 8px;
}

.description-text.is-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.description-toggle {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.subscribe-card {
    background: linear-gradient(135deg, rgba(4,153,251,0.16) 0%, rgba(17,24,39,0.95) 100%);
    border: 1px solid rgba(4,153,251,0.25);
    border-radius: 18px;
    padding: 28px 20px;
}

.subscribe-title {
    font-size: 24px;
    margin-bottom: 8px;
}

.subscribe-copy {
    color: var(--secondary);
    margin-bottom: 16px;
}

.related-section {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 20px;
}

@media (max-width: 991px) {
    .player-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .player-meta {
        padding: 18px 16px 20px;
    }

    .player-title {
        font-size: 20px;
    }

    .player-action-buttons .btn,
    .player-secondary-actions .btn {
        font-size: 13px;
    }

    .player-quality-wrap {
        top: 10px;
        right: 10px;
    }
}

.big-carosel {
    background: linear-gradient(180deg, rgba(1,3,5,0.95) 0%, rgba(1,3,5,0.82) 100%);
}

.big-carosel .big-carousel-shell {
    position: relative;
    background: url('../img/hero.png') no-repeat;
    background-size: cover;
    background-position: center;
}

.big-carosel .big-carousel-stage {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: rgba(0,0,0,0.35);
    perspective: 1400px;
}

.big-carosel .big-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.big-carosel .big-carousel-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 480px;
    border-radius: 26px;
    overflow: hidden;
    transform-origin: center center;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.7s ease, z-index 0.7s ease;
    box-shadow: 0 24px 70px rgba(0,0,0,0.42);
    border: 2px solid rgba(255,255,255,0.14);
    background: #080b10;
    z-index: 1;
}

.big-carosel .big-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.big-carosel .big-carousel-card.position-center {
    transform: translate(-50%, -50%) scale(1) translateX(0);
    opacity: 1;
    z-index: 5;
}

.big-carosel .big-carousel-card.position-left-2 {
    transform: translate(-50%, -50%) scale(0.64) translateX(-320px);
    opacity: 0.38;
    z-index: 2;
}

.big-carosel .big-carousel-card.position-left {
    transform: translate(-50%, -50%) scale(0.82) translateX(-180px);
    opacity: 0.74;
    z-index: 3;
}

.big-carosel .big-carousel-card.position-right {
    transform: translate(-50%, -50%) scale(0.82) translateX(180px);
    opacity: 0.74;
    z-index: 3;
}

.big-carosel .big-carousel-card.position-right-2 {
    transform: translate(-50%, -50%) scale(0.64) translateX(320px);
    opacity: 0.38;
    z-index: 2;
}

.big-carosel .big-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.big-carosel .big-carousel-btn {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(4, 153, 251, 0.95);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    pointer-events: auto;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    transition: transform 0.25s ease, background 0.25s ease;
}

.big-carosel .big-carousel-btn:hover {
    background: #0389d6;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .big-carosel .big-carousel-stage {
        height: 520px;
    }

    .big-carosel .big-carousel-card {
        width: 260px;
        height: 400px;
    }

    .big-carosel .big-carousel-card.position-left-2 {
        transform: translate(-50%, -50%) scale(0.6) translateX(-240px);
    }

    .big-carosel .big-carousel-card.position-left {
        transform: translate(-50%, -50%) scale(0.76) translateX(-140px);
    }

    .big-carosel .big-carousel-card.position-right {
        transform: translate(-50%, -50%) scale(0.76) translateX(140px);
    }

    .big-carosel .big-carousel-card.position-right-2 {
        transform: translate(-50%, -50%) scale(0.6) translateX(240px);
    }
}

@media (max-width: 767px) {
    .big-carosel {
        padding: 24px 0 70px;
    }

    .big-carosel .big-carousel-stage {
        height: 420px;
    }

    .big-carosel .big-carousel-card {
        width: 220px;
        height: 320px;
    }

    .big-carosel .big-carousel-card.position-left-2,
    .big-carosel .big-carousel-card.position-right-2 {
        opacity: 0;
    }

    .big-carosel .big-carousel-card.position-left {
        transform: translate(-50%, -50%) scale(0.78) translateX(-80px);
    }

    .big-carosel .big-carousel-card.position-right {
        transform: translate(-50%, -50%) scale(0.78) translateX(80px);
    }
}

@media (max-width: 575px) {
    .big-carosel .big-carousel-stage {
        height: 360px;
    }

    .big-carosel .big-carousel-card {
        width: 180px;
        height: 270px;
    }

    .big-carosel .big-carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

.big-carosel .layer {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
}
.big-carosel .layer .div img {
    width: 180px;
    height: 60px;
}

.movie-sort{
    display:flex;
    align-items:center;
    gap:10px;
}

.movie-sort label{
    color:#bdbdbd;
    font-size:14px;
    margin:0;
}

.movie-sort-select{
    min-width:130px;
    height:40px;
    padding:0 40px 0 14px;
    background:var(--dark);
    color:#fff;
    border:1px solid rgba(255,255,255,.12);
    border-radius:6px;
    font-size:14px;
    cursor:pointer;
    outline:none;
    transition:.3s;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 6.646a.5.5 0 0 1 .708 0L8 9.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 14px center;
}

.movie-sort-select:hover{
    border-color:var(--primary);
}

.movie-sort-select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(43,140,255,.15);
}

.category-movies img{
    width:100%;
    height:250px;
}

/* ===========================
   Movie Pagination
=========================== */

.movie-pagination {
    gap: 10px;
}

.movie-pagination .page-item {
    list-style: none;
}

.movie-pagination .page-link {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--dark);
    color: var(--semi-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: .3s ease;
    box-shadow: none;
}

.movie-pagination .page-link:hover {
    background: var(--primary);
    color: var(--white);
}

.movie-pagination .page-item.active .page-link {
    background: var(--primary);
    color: var(--white);
}

.movie-pagination .prev-next {
    width: auto;
    min-width: 64px;
    padding: 0 18px;
    border-radius: 30px;
    gap: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.movie-pagination .page-link:focus {
    box-shadow: none;
}

.movie-pagination .page-item.disabled .page-link {
    opacity: .45;
    pointer-events: none;
}

.hero-thumbnail-carousel-tv{
    margin-top: -90px;
}
.hero-thumbnail-carousel-tv .hero-thumb-item img{
    height: 400px;
}

.hero-thumbnail-carousel-tv .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 10px;
}
.hero-thumbnail-carousel-tv .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    margin: 0 6px;
    transition: background 0.25s ease;
}

.hero-thumbnail-carousel .owl-nav.disabled{
    display: none !important;
}


.embo-originals .big-carousel-stage {
    height: 700px;
}
.embo-originals .div {
    padding: 20px;
}
.big-carosel .big-carousel-controls{
    padding: 0 20px;
}

/* User Dropdown */

.user-dropdown-toggle{
    gap:12px;
    color:var(--white);
}

.user-dropdown-toggle img{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(255,255,255,.15);
    transition:.3s;
}

.user-dropdown-toggle:hover img{
    border-color:var(--primary);
}

.user-dropdown-toggle i{
    font-size:14px;
    color:var(--white);
}

.user-dropdown-toggle::after{
    display:none;
}

/* Dropdown */

.user-dropdown-menu{
    margin-top:15px;
    min-width:220px;
    border:none;
    border-radius:12px;
    background:var(--dark);
    padding:10px;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.user-dropdown-menu .dropdown-item{
    color: var(--semi-white);
    border-radius:8px;
    padding:11px 14px;
    display:flex;
    align-items:center;
    gap:12px;
    transition:.3s;
}

.user-dropdown-menu .dropdown-item:hover{
    background:var(--primary);
    color:var(--white);
}

.user-dropdown-menu .dropdown-divider{
    border-color:rgba(255,255,255,.08);
}
.user-dropdown-profile-arrow{
    border: none;
    background: none;
}
.btn-danger{
    background-color: var(--danger) !important;
    outline: none !important;
    border: none !important;
}

.contact-page .container {
    max-width: 1140px;
}

.contact-info-panel {
    padding: 18px 18px 18px 0;
    color: var(--white);
}

.contact-section-title {
    color: var(--white);
    font-size: clamp(34px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 18px;
}

.contact-section-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 28px;
    max-width: 470px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(63, 140, 255, 0.12);
    border: 1px solid rgba(63, 140, 255, 0.18);
    color: #3f8cff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: 0 0 46px;
}

.contact-info-value {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
}

.contact-info-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 10px 0;
}

.contact-card {
    background: linear-gradient(180deg, rgba(17, 23, 33, 0.98), rgba(12, 16, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.contact-floating + .contact-floating {
    margin-top: 14px;
}

.contact-floating > .contact-input,
.contact-floating > .contact-textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 14px;
    box-shadow: none;
}

.contact-floating > .contact-input {
    height: 58px;
    padding-top: 1.25rem;
    padding-bottom: 0.5rem;
}

.contact-floating > .contact-textarea {
    min-height: 180px;
    padding-top: 1.55rem;
}

.contact-floating > .contact-input:focus,
.contact-floating > .contact-textarea:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(63, 140, 255, 0.5);
    box-shadow: 0 0 0 1px rgba(63, 140, 255, 0.12);
    color: #fff;
}

.contact-floating > label {
    color: rgba(255, 255, 255, 0.64);
    padding: 1rem 1rem;
}

.contact-floating > .contact-input:focus ~ label,
.contact-floating > .contact-input:not(:placeholder-shown) ~ label,
.contact-floating > .contact-textarea:focus ~ label,
.contact-floating > .contact-textarea:not(:placeholder-shown) ~ label {
    color: rgba(255, 255, 255, 0.72);
}

.contact-submit-btn {
    width: 180px;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-top: 18px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-submit-btn:hover {
    background: #58a4ff;
    transform: translateY(-1px);
}

.static-content-page .container {
    max-width: 920px;
}

.static-content-wrap {
    padding: 8px 0 10px;
    color: var(--white);
}

.static-content-title {
    margin: 0;
    color: var(--white);
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
}

.static-content-underline {
    width: 100px;
    height: 3px;
    background: var(--primary);
    margin: 16px auto 28px;
    border-radius: 999px;
}

.static-content-section + .static-content-section {
    margin-top: 28px;
}

.static-content-section-title {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.static-content-section-title--center {
    text-align: center;
}

.static-content-section-underline {
    width: 88px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
    margin: 0 0 18px;
}

.static-content-section-underline--center {
    margin-left: auto;
    margin-right: auto;
}

.static-content-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.static-content-list {
    display: grid;
    gap: 22px;
}

.static-content-item h3,
.static-content-faq-item h3,
.static-content-policy-item h3 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.static-content-item p,
.static-content-faq-item p,
.static-content-policy-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.8;
}

.static-content-feature-list {
    display: grid;
    gap: 18px;
}

.static-content-bullet {
    position: relative;
    padding-left: 18px;
}

.static-content-bullet::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

.static-content-faq-list {
    display: grid;
    gap: 18px;
}

.static-content-faq-item {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.static-content-faq-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.static-content-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.static-content-link:hover {
    color: #58a4ff;
}

@media (max-width: 767px) {
    .static-content-title {
        font-size: 28px;
    }

    .static-content-section-title {
        font-size: 20px;
    }

    .static-content-text,
    .static-content-item p,
    .static-content-faq-item p,
    .static-content-policy-item p {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .contact-info-panel {
        padding-right: 0;
        margin-bottom: 14px;
    }
}

@media (max-width: 767px) {
    .contact-card {
        padding: 22px;
    }

    .contact-submit-btn {
        width: 100%;
    }
}

.login-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(47, 123, 255, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(6, 9, 16, 0.98), rgba(10, 14, 22, 1));
}

.login-page .all-movies {
    min-height: 100vh;
}

.login-page .over-layer {
    min-height: 100vh;
}

.login-page .navbar {
    position: relative;
    z-index: 1;
}

.login-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: rgba(2, 8, 16, 0.82);
    backdrop-filter: blur(4px);
    z-index: 40;
}

.login-modal {
    position: relative;
    width: min(100%, 520px);
    background: #0f1622;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.48);
    padding: 30px;
    color: #fff;
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.close-btn:hover {
    color: #fff;
    transform: scale(1.06);
}

.login-form {
    margin-top: 10px;
}

.login-floating > .login-input {
    height: 58px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: none;
    padding-top: 1.4rem;
    padding-bottom: 0.45rem;
}

.login-floating > .login-input::placeholder {
    color: transparent;
}

.login-floating > .login-input:focus {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(63, 140, 255, 0.65);
    box-shadow: 0 0 0 1px rgba(63, 140, 255, 0.12);
    color: #fff;
}

.login-floating > label {
    color: rgba(255, 255, 255, 0.56);
    padding: 1rem 1rem;
    transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.login-floating > .login-input:focus ~ label,
.login-floating > .login-input:not(:placeholder-shown) ~ label {
    color: rgba(255, 255, 255, 0.76);
}

.login-floating > .login-input:focus ~ label,
.login-floating > .login-input:not(:placeholder-shown) ~ label,
.login-floating > .login-input:-webkit-autofill ~ label {
    transform: scale(0.82) translateY(-0.55rem) translateX(0.15rem);
    background: #0f1622;
    padding: 0 0.4rem;
    border-radius: 999px;
    opacity: 1;
}

.login-password-wrap {
    position: relative;
}

.login-password-input {
    padding-right: 52px !important;
}

.login-eye {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.68);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
}

.login-eye:hover {
    color: #fff;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 16px 0 18px;
}

.login-remember {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.login-remember .form-check-input {
    margin-top: 0;
    width: 16px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
}

.login-remember .form-check-input:checked {
    background-color: #3f8cff;
    border-color: #3f8cff;
}

.login-forgot {
    color: #3f8cff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.login-forgot:hover {
    color: #5aa0ff;
}

.login-submit {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    background: #3f8cff;
    border: 0;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.login-submit:hover {
    background: #2f79ea;
    transform: translateY(-1px);
}

.login-divider {
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.68);
}

.login-socials {
    gap: 12px;
}

.login-social-btn {
    justify-content: flex-start;
    gap: 12px;
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    padding: 5px 50px;
}

.login-social-btn img {
    width: 18px;
    height: 18px;
}

.login-social-btn span {
    flex: 1;
    text-align: center;
}

.login-social-btn:hover {
    border-color: rgba(63, 140, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.login-bottom-text {
    margin-top: 22px;
}

.login-feedback {
    min-height: 18px;
    margin-top: 8px;
    color: #ff6b6b;
    font-size: 13px;
}

.login-input.is-invalid {
    border-color: #ff6b6b !important;
}

.login-input.is-invalid ~ label {
    color: #ff6b6b !important;
}

.login-input.is-valid {
    border-color: rgba(63, 140, 255, 0.5) !important;
}

.login-success {
    margin-top: 12px;
    color: #3f8cff;
    font-size: 14px;
    font-weight: 600;
}

.redeem-section {
    padding: 48px 0 24px;
}

.redeem-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.redeem-title {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 auto 14px;
    max-width: 920px;
}

.redeem-note {
    color: rgba(255, 255, 255, 0.56);
    font-size: 15px;
    margin-bottom: 28px;
}

.redeem-form {
    width: min(100%, 420px);
    margin: 0 auto;
}

.redeem-btn {
    width: 100%;
}

.redeem-success-modal .modal-dialog {
    width: min(100%, 460px);
}

.redeem-success-content {
    position: relative;
    background: #0f1622;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 26px 26px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.48);
    color: #fff;
}

.redeem-success-body {
    text-align: center;
}

.redeem-success-icon {
    font-size: 64px;
    color: #3f8cff;
    margin-bottom: 14px;
}

.redeem-success-body h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px;
}

.redeem-success-body p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    margin-bottom: 22px;
}

.redeem-home-btn {
    width: 100%;
}

.redeem-section .login-input.is-invalid {
    border-color: #ff6b6b !important;
}

.redeem-section .login-input.is-invalid ~ label {
    color: #ff6b6b !important;
}

.redeem-section .login-input.is-valid {
    border-color: rgba(63, 140, 255, 0.5) !important;
}

.voucher-card-floating {
    position: relative;
}

.voucher-card-input {
    padding-right: 120px !important;
}

.voucher-card-icons {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    pointer-events: none;
}

.voucher-card-icons img {
    display: block;
    height: 18px;
    width: auto;
    object-fit: contain;
}

.voucher-actions {
    margin: 18px 0 22px;
}

.voucher-add-btn {
    width: 100%;
    min-height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: #111723;
    color: #fff;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.voucher-add-btn i {
    font-size: 18px;
}

.voucher-add-btn:hover {
    background: #151c29;
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.voucher-box {
    background: linear-gradient(180deg, #111723 0%, #0e1420 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.voucher-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.voucher-left i {
    font-size: 24px;
    color: #2f80ed;
}

.voucher-left h6 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.voucher-left span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
}

.remove-btn {
    color: #ff5a5f;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

.remove-btn:hover {
    opacity: 0.82;
}

.voucher-modal {
    background: #0f1622;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.48);
    padding: 26px 26px 22px;
    color: #fff;
}

.voucher-modal .modal-header {
    padding: 0;
    margin-bottom: 16px;
}

.voucher-modal .modal-body h5 {
    font-size: 18px;
    font-weight: 700;
}

.voucher-modal .login-field {
    margin-bottom: 18px !important;
}

.voucher-modal .apply-btn {
    height: 50px;
    border-radius: 14px;
    font-weight: 700;
}

.voucher-modal .login-feedback {
    margin-top: 8px;
}

.voucher-modal .login-input.is-invalid {
    border-color: #ff6b6b !important;
}

.voucher-modal .login-input.is-invalid ~ label {
    color: #ff6b6b !important;
}

.voucher-modal .login-input.is-valid {
    border-color: rgba(63, 140, 255, 0.5) !important;
}

.pricing-page {
    padding: 42px 0 12px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 28px;
}

.pricing-title {
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin: 0;
}

.pricing-toggle {
    width: fit-content;
    margin: 0 auto 34px;
    padding: 6px;
    display: inline-flex;
    gap: 6px;
    background: #171b24;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.pricing-toggle-btn {
    min-width: 120px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    font-weight: 600;
    padding: 0 20px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.pricing-toggle-btn.active {
    background: #0f1622;
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.pricing-panels {
    position: relative;
}

.pricing-panel {
    display: none;
    opacity: 0;
    transform: translateY(8px);
}

.pricing-panel.active {
    display: block;
    animation: pricingFade 0.28s ease forwards;
}

@keyframes pricingFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    height: 100%;
    background: linear-gradient(180deg, #121722 0%, #0f131c 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px 24px 24px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
}

.pricing-card-featured {
    background: linear-gradient(180deg, #151d2a 0%, #111926 100%);
    border-color: rgba(63, 140, 255, 0.28);
    box-shadow: 0 18px 42px rgba(4, 153, 251, 0.12);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.pricing-name {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 14px;
}

.pricing-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.pricing-price {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.pricing-unit {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    font-weight: 500;
}

.pricing-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
    min-height: 48px;
}

.pricing-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 4px 0 18px;
}

.pricing-features-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 14px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 12px;
    flex: 1;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.pricing-features i {
    color: #fff;
    font-size: 14px;
    margin-top: 3px;
    flex: 0 0 auto;
}

.pricing-btn {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.pricing-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-btn-primary {
    background: #3f8cff;
    border-color: #3f8cff;
}

.pricing-btn-primary:hover {
    background: #2f79ea;
    border-color: #2f79ea;
}

.e-business-page {
    padding: 42px 0 20px;
    max-width: 760px;
    margin: 0 auto;
}

.e-business-header {
    text-align: center;
    margin-bottom: 24px;
}

.e-business-title {
    color: #fff;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.22;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.e-business-desc,
.e-business-note {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 720px;
}

.e-business-note {
    margin-top: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.86);
}

.e-business-plan-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: linear-gradient(180deg, #111722 0%, #0d131c 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 12px 26px;
    margin-bottom: 24px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.e-business-plan-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.e-business-plan-price {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.e-business-plan-price small {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.68);
}

.e-business-plan-name {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 600;
}

.e-business-plan-change {
    color: #3f8cff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.e-business-plan-change:hover {
    color: #5aa0ff;
}

.e-business-form {
    max-width: 560px;
    margin: 0 auto;
}

.e-business-input {
    height: 58px;
}

.e-business-total {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-top: 6px;
}

.e-business-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 18px 0 22px;
}

.e-business-continue {
    width: 100%;
}

.e-business-input.is-invalid {
    border-color: #ff6b6b !important;
}

.e-business-input.is-invalid ~ label {
    color: #ff6b6b !important;
}

.e-business-error {
    min-height: 18px;
    margin-top: 8px;
    color: #ff6b6b;
    font-size: 13px;
}

@media (max-width: 991px) {
    .pricing-page {
        padding-top: 34px;
    }

    .pricing-toggle {
        margin-bottom: 26px;
    }

    .pricing-card {
        padding: 26px 22px 22px;
    }
}

@media (max-width: 767px) {
    .pricing-title {
        font-size: clamp(26px, 8vw, 34px);
    }

    .pricing-toggle {
        width: 100%;
        justify-content: center;
    }

    .pricing-toggle-btn {
        flex: 1;
        min-width: 0;
    }

    .pricing-card {
        border-radius: 22px;
    }

    .pricing-price {
        font-size: 38px;
    }

    .e-business-page {
        padding-top: 34px;
    }

    .e-business-plan-card {
        padding: 22px 20px;
    }
}

@media (max-width: 575px) {
    .e-business-page {
        padding-top: 28px;
    }

    .e-business-plan-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .e-business-plan-change {
        align-self: flex-end;
    }

    .e-business-desc,
    .e-business-note {
        font-size: 15px;
    }

    .e-business-total {
        font-size: 17px;
    }
}

.forgot-modal {
    width: min(100%, 520px);
}

.forgot-copy {
    margin: 18px 0 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
}

.reset-copy {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.forgot-modal .login-form {
    margin-top: 0;
}

.forgot-modal .login-field:last-child {
    margin-bottom: 0 !important;
}

.otp-modal .modal-dialog {
    width: min(100%, 460px);
}

.otp-modal-content {
    position: relative;
    width: min(100%, 460px);
    background: #0f1622;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.48);
    padding: 30px 28px 24px;
    color: #fff;
}

.otp-modal-body {
    text-align: center;
}

.otp-title {
    margin: 12px auto 10px;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
}

.otp-email {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    word-break: break-word;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
}

.otp-input {
    width: 54px;
    height: 58px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.otp-input:focus {
    border-color: rgba(63, 140, 255, 0.75);
    box-shadow: 0 0 0 1px rgba(63, 140, 255, 0.14);
}

.otp-input.is-invalid {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.12);
}

.otp-feedback {
    min-height: 18px;
    margin-bottom: 14px;
    color: #ff6b6b;
    font-size: 13px;
    font-weight: 500;
}

.otp-submit {
    margin-top: 2px;
    width: 100%;
}

.otp-resend {
    display: inline-block;
    margin-top: 18px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 600;
    cursor: not-allowed;
}

.otp-resend.is-active {
    color: #3f8cff;
    cursor: pointer;
}

.otp-resend:disabled {
    opacity: 1;
}

.otp-input.is-invalid:focus {
    box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.16);
}

@media (max-width: 575px) {
    .login-overlay {
        padding: 16px 12px;
    }

    .login-modal {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-socials {
        grid-template-columns: 1fr;
    }

    .redeem-section {
        padding-top: 34px;
    }

    .redeem-success-content {
        padding: 24px 18px 20px;
    }

    .redeem-success-icon {
        font-size: 56px;
    }

    .redeem-success-body h3 {
        font-size: 24px;
    }

    .forgot-modal {
        padding: 24px 18px;
    }

    .forgot-copy {
        font-size: 15px;
        margin: 16px 0 18px;
    }

    .otp-modal-content {
        padding: 24px 18px 20px;
    }

    .otp-inputs {
        gap: 8px;
    }

    .otp-input {
        width: 44px;
        height: 50px;
        border-radius: 12px;
        font-size: 18px;
    }

    .otp-title {
        font-size: 16px;
    }
}



.form-floating > label{
    top: -2px !important;
    height: 25px !important;
    
}
.form-floating > .form-control:focus ~ label{
background: #0f1622 !important;
}
