﻿body {
    background: #eeeef6;
    overflow: auto;
}

footer,
header {
    display: none;
}

#mainBody {
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
}

.wrapper {
    margin: 0;
}

.container {
    padding: 0;
}

.main_banner_wrap {
    height: 100vh;
    height: 100dvh;
}

.page-content {
    margin-top: 0;
}

.subscribe-button {
    position: relative;
    text-align: center;
}

.lp-button-wrap {
    position: sticky;
    bottom: 10px;
    left: 0;
    color: #333;
    width: 100%;
    text-align: center;
}

    .lp-button-wrap button {
        background: transparent;
        border: 0;
        width: 80%;
        padding: 0;
        animation: btn-lp 1s ease infinite;
    }

@keyframes btn-lp {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1, 1);
    }
}

.section--subscribe {
    padding: 0 15px 15px;
}

.price {
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.terms-text {
    margin-bottom: 15px;
}

.normal-text ul li {
    text-align: left;
    list-style: disc;
    margin-left: 15px;
    line-height: 18px;
    margin-bottom: 10px;
}

.provider__image {
    padding: 10px;
}

.modal-body {
    text-align: center;
}

.subscribe-banner {
    height: calc(100vh - 100px);
    height: calc(100dvh - 100px);
    width: 100vw;
}

@media (min-width: 768px) {
    .subscribe-banner {
        width: auto;
    }
}

.fade-to-background {
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

/* ============ Landing Page (Index_Payment) ============ */

.lp-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-hero {
    width: 100%;
/*    border-radius: 12px;*/
    overflow: hidden;
    margin: 0 -16px;
    width: calc(100% + 32px);
}

@media (min-width: 1024px) {
    .lp-hero {
        border-radius: 1rem;
    }
}

.lp-hero-img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #e0e0e0;
}

.lp-header {
    text-align: center;
}

.lp-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFFFFF;
/*    margin: 0 0 8px;*/
}

.lp-subtitle {
    font-size: 0.875rem;
    color: #ffe5e5;
    margin: 0;
    line-height: 1.5;
}

.lp-payment-section {
    background: #fff;
    border-radius: 12px;
    padding: 20px 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.lp-payment-label {
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.lp-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    justify-content: center;
}

.payment-method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 1px solid #d9d9d9;
    background: #fff;
    box-sizing: border-box;
    min-height: 100px;
}

.payment-method-card:hover {
    background: rgba(142, 62, 201, 0.08);
    transform: translateY(-2px);
}

.payment-method-card.selected {
    background: rgba(165, 110, 255, 0.15);
    border: 2px solid #a56eff;
    box-shadow: 0 2px 8px rgba(165, 110, 255, 0.25);
}

.payment-logo-card {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.payment-name-card {
    font-weight: 600;
    font-size: 0.8125rem;
    line-height: 1.3;
    color: #616161;
    text-align: center;
}

.payment-method-card.selected .payment-name-card {
    color: #2c2c2c;
}

.lp-card-centered {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
    min-height: auto;
}

.lp-auth-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-auth-hint {
    font-size: 0.75rem;
    color: #ffe5e5;
    text-align: center;
    margin: 0;
}

.lp-google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #333;
    transition: background 0.2s;
    font-family: inherit;
}

.lp-google-btn:hover {
    background: #eee;
}

.lp-google-icon {
    flex-shrink: 0;
}

.lp-divider {
    font-size: 0.75rem;
    color: #ffe5e5;
    text-align: center;
    margin: 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lp-email-input {
    width: 100%;
    padding: 14px 20px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.9375rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

.lp-email-input:focus {
    border-color: #a56eff;
    background: #fff;
}

.lp-email-input::placeholder {
    color: #999;
}

.lp-cta-section {
    display: flex;
    justify-content: center;
    padding: 4px 0;
}

.lp-cta-btn {
    width: 70%;
    padding: 16px 24px;
    background: #29395d;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-family: inherit;
}

.lp-cta-btn:hover {
    background: #1e2d4a;
    transform: translateY(-1px);
}

.lp-cta-btn:active {
    transform: translateY(0);
}

    .lp-cta-btn:disabled {
        cursor: not-allowed;
        transform: none;
        background: #d8d8d8;
        color: #949494;
    }

.lp-cta-btn:disabled:hover {
    transform: none;
}

@media (min-width: 768px) {
    .lp-container {
        padding: 24px 32px 32px;
    }

    .lp-hero {
        margin: 0;
        width: 100%;
    }

    .lp-payment-grid {
        gap: 16px;
    }
}

.modal .btn-cancel {
    margin: 8px 0;
    border-radius: 12px;
}