* {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    /* background: linear-gradient(to right, #161614, #42110d); */
    background: radial-gradient(circle at top, #3b0f0f, #0a0000) !important;
}

.vip-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #3b0f0f;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

img {
    user-select: none;
    /* Standard */
    -webkit-user-select: none;
    /* Chrome, Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */

    user-drag: none;
    /* Standard (not widely supported) */
    -webkit-user-drag: none;
    /* Chrome, Safari */
}

.movie-desc {
    font-size: 14px;
    color: grey;
}

/* body {
    background: radial-gradient(circle at top, #3b0f0f, #0a0000);
    background-color: #0a0000 !important;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
} */

#carouselExampleCaptions {
    height: 50vh;
}

#carouselExampleCaptions .carousel-inner,
#carouselExampleCaptions .carousel-item,
#carouselExampleCaptions img {
    height: 50vh;
}

#carouselExampleCaptions img {
    object-fit: cover;
}

@media only screen and (max-width: 600px) {
    #carouselExampleCaptions {
        height: 60vh;
    }

    #carouselExampleCaptions .carousel-inner,
    #carouselExampleCaptions .carousel-item,
    #carouselExampleCaptions img {
        height: 60vh;
    }
}

.option-container {
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 24px;
}

/* Pure glass card with left-aligned text */
.option-item {
    cursor: pointer;
    border-radius: 16px;
    padding: 18px 24px;
    margin-left: 24px;
    margin-right: 24px;
    min-width: 150px;
    text-align: start;
    /* <-- align text to start (left) */

    /* Pure glass */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);

    /* subtle shadow */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;

    color: #fff;
}

.option-item h5 {
    margin-bottom: 6px;
    font-weight: 600;
    color: #fff;
    text-align: start;
    /* align start */
}

.option-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    min-height: 40px;
    text-align: start;
    /* align start */
}

.option-item span {
    font-weight: 700;
    color: red;
    font-size: 16px;
    text-align: start;
    /* align start */
}

/* Hover: lift and more shine */
.option-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

/* Selected state */
.option-item.selected {
    border-color: #0d6efd;
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.movie-container {
    margin: 1.5rem;
    display: flex;
    flex-direction: column;
}

.movie-item-builder.disabled {
    opacity: 0.4;
    pointer-events: auto;
    /* disables click */
}

.movie-item-builder.enabled {
    opacity: 1;
    pointer-events: auto;
    /* enables click */
}

.movie-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 16px;
    margin: 0.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    /* semi-transparent black */
    backdrop-filter: blur(10px);
    /* frosted glass blur */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.movie-item:hover {
    transform: scale(1.05);
    border-color: #1e90ff;
    background: rgba(0, 0, 0, 0.5);
}

/* Movie builder disabled/enabled */
.movie-item-builder.disabled {
    opacity: 0.4;
    pointer-events: auto;
}

.movie-item-builder.enabled {
    opacity: 1;
    pointer-events: auto;
}

/* Center checkbox inside movie-item */
.movie-item {
    display: flex;
    align-items: center;
    gap: 10px;
    /* spacing between logo, label, checkbox */
    cursor: pointer;
}

.movie-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    accent-color: #c50102;
    /* red color */
}

.movie-logo {
    height: 50px;
    width: 50px;
    margin-right: 1rem;
}

.movie-label {
    flex: 1;
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
}

/* Hide default checkbox */
.movie-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #fff;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

/* Hover effect */
.movie-item input[type="checkbox"]:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #3b0f0f;
}

/* Checked state */
.movie-item input[type="checkbox"]:checked {
    background-color: #3b0f0f;
    border-color: #3b0f0f;
}

/* Optional: checkmark */
.movie-item input[type="checkbox"]:checked::after {
    content: '✔';
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type="checkbox"] {
    transform: scale(1.5);
    cursor: pointer;
}

.web-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 140px;
    padding-top: 36px;
    padding-bottom: 36px;

    /* Glow */
    filter: drop-shadow(0 0 0px rgba(180, 180, 180, 0.6)) drop-shadow(0 0 6px rgba(180, 180, 180, 0.4));

    animation: glowPulse 4.5s infinite ease-in-out;
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 0px rgba(160, 160, 160, 0.3)) drop-shadow(0 0 6px rgba(160, 160, 160, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 6px rgba(200, 200, 200, 0.7)) drop-shadow(0 0 12px rgba(200, 200, 200, 0.5));
    }

    100% {
        filter: drop-shadow(0 0 0px rgba(160, 160, 160, 0.3)) drop-shadow(0 0 6px rgba(160, 160, 160, 0.2));
    }
}

@media (min-width: 992px) {
    .movie-container {
        gap: 1rem;
    }

    .movie-item {
        flex: 1;
        margin: 0;
    }
}

@media (max-width: 991px) {
    .movie-desc {
        font-size: 12px !important;
        color: grey !important;
    }
}

/* Large devices (desktops, >=1200px) */
@media (min-width: 1200px) {
    .movie-logo {
        height: 50px;
        width: 50px;
    }

    .movie-label {
        font-size: 1.3rem;
    }
}

/* Medium devices (tablets, 768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .movie-logo {
        height: 25px;
        width: 25px;
    }

    .movie-label {
        font-size: 1.1rem;
    }

    input[type="checkbox"] {
        transform: scale(1.25);
        cursor: pointer;
    }
}

/* Small devices (mobile, <768px) */
@media (max-width: 767px) {
    .movie-desc {
        font-size: 10px !important;
        color: grey !important;
    }


    body {
        background-color: #0a0000 !important;
        background: linear-gradient(to right, #161614, #42110d) !important;
    }

    .movie-logo {
        height: 20px;
        width: 20px;
    }

    .movie-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 460px) {
    .movie-container {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
        margin-top: 0.5rem !important;
    }

    input[type="checkbox"] {
        transform: scale(1.0);
        cursor: pointer;
    }

    .movie-label {
        font-size: 0.75rem;
    }
}


@media (max-width: 768px) {
    .movie-scroll-btn {
        display: none !important;
    }
}

.movie-item-builder {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 2rem;

    overflow-x: auto;
    /* horizontal scroll */
    overflow-y: hidden;
    white-space: nowrap;

    -webkit-overflow-scrolling: touch;
    /* smooth iOS scroll */
    scrollbar-width: none;
    /* Firefox hide scrollbar */
}

.movie-item-builder::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari hide scrollbar */
}

.movie-item-container {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    cursor: pointer;
}

.movie-item-image {
    height: 170px;
    width: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.movie-item-title {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    font-weight: 300;
    color: #fff;
    width: 120px !important;
    white-space: normal;
    word-break: break-word;
}

.order-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.top-image {
    height: 30vh;
    width: 100%;
    object-fit: cover;
}

.icon-back {
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin: 10px 10px 0px 10px;
    padding: 8px;
}

.top-title {
    color: white;
    font-size: 14px;
    font-weight: 14px;
    margin: 18px 0px 18px 18px;
}

.screen {
    margin: 18px 18px 4px 18px;
    text-align: center;
    color: grey;
    font-size: 13px;
    position: relative;
}

.screen::before {
    content: "";
    display: block;
    height: 6px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    border-radius: 50%;
    margin-bottom: 6px;
}

.times {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    /* horizontal scroll */
    overflow-y: hidden;
    white-space: nowrap;

    -webkit-overflow-scrolling: touch;
    /* smooth iOS scroll */
    scrollbar-width: none;
    /* Firefox hide scrollbar */
    width: 100%;
    padding: 10px 10px 10px 18px;
}

.time {
    font-size: 14px;
    font-weight: 14px;
    padding: 2px 16px;
    color: grey;
    margin-right: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.seats_vip {
    display: grid;
    grid-template-columns: repeat(2, 50px);
    /* 2 items per row, fixed width */
    gap: 10px;
    /* space between items */
    justify-content: center;
    /* center items horizontally */
    padding: 10px;
    /* optional padding around grid */
}

/* Seats row layout */
.seat_vip {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
    border: 2px solid rgba(101, 255, 204, 0.3);
}


.seats {
    display: grid;
    grid-template-columns: repeat(2, 32px) 50px repeat(3, 32px);
    gap: 12px;
    justify-content: center;
    margin: 14px auto;
}

/* Seats row layout */
.seat {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
    border: 2px solid rgba(101, 255, 204, 0.3);
}

/* Booked seat */
.seat.booked {
    background: #c50102;
    cursor: not-allowed;
    border: none;
}

.seat_vip.booked {
    background: #c50102;
    cursor: not-allowed;
    border: none;
}

.time.booked {
    background: #c50102;
    cursor: pointer;
    border: none;
    color: white;
}

.time.active {
    background: rgba(101, 255, 204, 1.0);
    box-shadow: 0 0 10px rgba(101, 255, 204, 0.7);
    color: black;
}

@media (max-width: 480px) {
    .seat {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 360px) {
    .seats {
        grid-template-columns: repeat(2, 22px) 40px repeat(3, 22px);
    }

    .seat {
        width: 22px;
        height: 22px;
    }
}

/* All form inputs */
input,
textarea,
select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    outline: none;

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.gradient-custom {
    /* fallback for old browsers */
    background: #6a11cb;

    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right, #161614, #42110d) !important;

    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to right, #161614, #42110d) !important;
}

/* Autofill fix for Chrome / Edge / Safari */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill,
input:-webkit-autofill:hover,
textarea:-webkit-autofill:hover,
select:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow:
        0 0 0px 1000px rgba(255, 255, 255, 0.2) inset,
        0 4px 30px rgba(0, 0, 0, 0.1);
    box-shadow:
        0 0 0px 1000px rgba(255, 255, 255, 0.2) inset,
        0 4px 30px rgba(0, 0, 0, 0.1);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background-color 5000s ease-in-out 0s;
}

/* Placeholder color */
input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Focus effect */
input:focus,
textarea:focus,
select:focus {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

/* Disabled */
input:disabled,
textarea:disabled,
select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.input-container {
    margin: 18px 18px;
}

.seat {
    cursor: pointer;
}

.seat.selected {
    background: rgba(101, 255, 204, 1.0);
    box-shadow: 0 0 10px rgba(101, 255, 204, 0.7);
}

.seat_vip {
    cursor: pointer;
}

.seat_vip.selected {
    background: rgba(101, 255, 204, 1.0);
    box-shadow: 0 0 10px rgba(101, 255, 204, 0.7);
}


.btn-loader {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    background: #111;
    color: #fff;
    padding: 24px;
    border-radius: 14px;
    width: 90%;
    max-width: 360px;
    text-align: center;
    animation: popupIn 0.3s ease;
}

.popup-box h3 {
    margin-bottom: 10px;
    color: #c50102;
}

.popup-box button {
    margin-top: 18px;
    background: #c50102;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}

@keyframes popupIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.qpay-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 30px;
}

.qpay-item {
    width: 120px;
    border: 1.5px solid rgba(197, 1, 2, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.qpay-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(197, 1, 2, .5);
}

.qpay-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 8px;
}

.qpay-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.qpay-content {
    padding: 12px;
    text-align: center;
}

.loading {
    text-align: center;
    margin-top: 40px;
    color: #aaa;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn .3s;
    z-index: 9999;
}

.popup-box {
    background: #111;
    color: #fff;
    padding: 26px;
    border-radius: 14px;
    text-align: center;
    animation: scaleIn .3s;
}

.popup-box button {
    margin-top: 15px;
    background: #c50102;
    border: none;
    color: #fff;
    padding: 10px 24px;
    border-radius: 24px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes scaleIn {
    from {
        transform: scale(.8)
    }

    to {
        transform: scale(1)
    }
}

.showbox-download {
    text-align: center;
}

.download-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.store-buttons img {
    height: 48px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-buttons img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.qr-section {
    margin-top: 12px;
}

.qr-text {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.qr-image {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 18px rgba(180, 180, 180, 0.4);
}

.qr-link {
    display: block;
    margin-top: 10px;
    color: #aaa;
    font-size: 13px;
    text-decoration: none;
}

.qr-link:hover {
    color: #fff;
    text-decoration: underline;
}

.seat-legend {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #ccc;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical center */
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-box {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

/* Seat colors */
.legend-box.available {
    background: rgba(255, 255, 255, 0.2);
    /* green */
}

.legend-box.booked {
    background: #c50102;
    /* grey */
}

.legend-box.yours {
    background: rgba(101, 255, 204, 1.0);
    /* blue */
}

.contact-section {
    padding: 2rem 1rem;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-info {
    padding: 1.75rem;
    border-radius: 20px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(13, 110, 253, 0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item .content strong {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.contact-item .content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
}

/* 📱 Mobile */
@media (max-width: 1400px) {
    .contact-container {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .contact-map iframe {
        min-height: 220px;
    }
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    flex-shrink: 0;
}

/* Phone */
.icon.phone {
    background: rgba(13, 110, 253, 0.15);
}

/* Facebook */
.icon.facebook {
    background: #1877f2;
}

.time.locked {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Instagram (official gradient) */
.icon.instagram {
    background: linear-gradient(45deg,
            #f58529,
            #dd2a7b,
            #8134af,
            #515bd4);
}

/* Location */
.icon.location {
    background: rgba(13, 110, 253, 0.15);
}

.contact-item {
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item:hover .icon {
    filter: brightness(1.15);
}

.partner-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.partner-card {
    width: 100%;
    max-width: 1100px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(223deg, rgba(255, 255, 255, 0.04) 0%, #121111 64%);
    color: #fff;
    padding: 28px;
    box-sizing: border-box;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    transform: translateY(0);
    transition: transform .25s ease, box-shadow .25s ease;
}

.partner-card::before {
    content: "";
    position: absolute;
    inset: -120px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .18), transparent 55%),
        radial-gradient(circle at 80% 30%, rgba(232, 76, 61, .30), transparent 55%),
        radial-gradient(circle at 50% 90%, rgba(255, 255, 255, .10), transparent 60%);
    filter: blur(0px);
    animation: partnerGlow 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes partnerGlow {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: .9;
    }

    50% {
        transform: translate3d(10px, -8px, 0) scale(1.02);
        opacity: 1;
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: .9;
    }
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.partner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.partner-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.partner-badge {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    font-family: GIP, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: .2px;
    animation: popIn .55s ease both;
}

@keyframes popIn {
    from {
        transform: translateY(6px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.partner-title {
    font-family: GIP, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(18px, 2.4vw, 28px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    animation: slideIn .65s .05s ease both;
}

@keyframes slideIn {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.partner-desc {
    margin: 0;
    font-family: GIP, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: clamp(13px, 1.6vw, 16px);
    font-weight: 500;
    opacity: .92;
    line-height: 1.35;
    max-width: 520px;
    animation: slideIn .65s .12s ease both;
}

.partner-logo {
    width: 86px;
    height: 86px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .20);
    flex: 0 0 auto;
    animation: floaty 3.2s ease-in-out infinite;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.partner-logo img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    display: block;
}

.partner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
    animation: slideIn .65s .18s ease both;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .20);
    backdrop-filter: blur(10px);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
    font-family: GIP, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    user-select: none;
}

.store-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .28);
}

.store-btn:active {
    transform: translateY(0px) scale(.98);
}

.store-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(0, 0, 0, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.store-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.store-small {
    font-size: 11px;
    font-weight: 500;
    opacity: .9;
}

.store-big {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .2px;
}

.partner-title-icon {
    display: none;
}


/* small screens */
/* ===== MOBILE UX FIX ===== */
@media (max-width: 700px) {
    .partner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    /* hide big floating logo on mobile */
    .partner-logo {
        display: none;
    }

    /* title row with icon */
    .partner-title-row {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .partner-title-icon {
        animation: floaty 3.2s ease-in-out infinite;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(255, 255, 255, .95);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
        flex-shrink: 0;
    }

    .partner-title-icon img {
        width: 70%;
        height: 70%;
        object-fit: contain;
    }
}

/* Prevent any overflow on tiny phones */
.partner-card, .partner-inner, .partner-left {
  min-width: 0;
}

/* Badge wrap + never overflow */
.partner-badge{
  max-width: 100%;
  white-space: normal;           /* allow wrap */
  overflow-wrap: anywhere;       /* break long Mongolian/words */
}

/* Title wrap nicely */
.partner-title{
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Buttons row: allow wrapping */
.partner-actions{
  max-width: 100%;
}

/* ✅ EXTRA SMALL phones (320px–360px) */
@media (max-width: 380px){
  .partner-card{
    padding: 16px;               /* smaller padding */
    border-radius: 16px;
  }

  /* Title + icon row must wrap */
  .partner-title-row{
    flex-wrap: wrap;
    gap: 10px;
  }

  .partner-title-icon{
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  /* ✅ stack store buttons vertically */
  .partner-actions{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .store-btn{
    width: 100%;
    justify-content: flex-start;
    padding: 12px 12px;
    border-radius: 14px;
  }

  .store-icon{
    width: 32px;
    height: 32px;
    border-radius: 12px;
  }

  .store-big{
    font-size: 13px;
  }
}