/* ========================================
    CSS VARIABLES
======================================== */
:root {
    --color-primary: #00bfff;
    --color-primary-dark: #00bbfa;
    --color-bg-light: #f5f5f5;
    --color-bg-overlay: rgba(0, 0, 0, 0.75);
    --color-text-dark: #333333;
    --color-text-light: #ffffff;
    --color-text-muted: #666666;
    --color-border: #dddddd;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: 0.3s ease;
    --border-radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background: #1a1a1a;
    max-width: 720px;
    margin: auto;
}


/* ========================================
    MODAL (BEM)
======================================== */
.modal {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
/*     padding: 2rem; */
}

.modal__container {
    max-width: 600px;
    width: 100%;
    background: transparent;
    border: 2px solid var(--color-text-light);
    border-radius: 8px;
    padding: 4rem 3rem;
    text-align: center;
}

.modal__title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text-light);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.modal__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal__button {
    min-width: 160px;
    padding: 1rem 3rem;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border-radius: var(--border-radius);
    position: relative;
}

.modal__button-text {
    position: relative;
    z-index: 1;
}

.modal__button--yes {
    background: var(--color-primary);
    color: var(--color-text-light);
	border: 0.5px solid var(--color-text-light);
	box-shadow: 0 8px 24px rgba(0, 191, 255, 0.4);
}

.modal__button--yes:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.modal__button--no {
    background: transparent;
    color: var(--color-text-light);
    border-color: var(--color-text-light);
}

.modal__button--no:hover {
    background: rgba(255, 255, 255, 0.1);
}



/* Background with blur */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%),
        url('data:image/svg+xml,<svg width="800" height="600" xmlns="http://www.w3.org/2000/svg"><defs><filter id="blur"><feGaussianBlur stdDeviation="8"/></filter></defs><rect width="800" height="600" fill="%23444"/><circle cx="200" cy="150" r="80" fill="%23666" filter="url(%23blur)"/><circle cx="600" cy="400" r="100" fill="%23555" filter="url(%23blur)"/><circle cx="400" cy="300" r="60" fill="%23777" filter="url(%23blur)"/></svg>'); */
    background-image: url("../../img/finalpage2.png");
    background-size: cover;
    background-position: center;
/*     filter: blur(4px); */
}

/* .background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
} */

.container {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Header Card */
.header-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #00bfff, #0099ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 191, 255, 0.4);
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: white;
}

.header-text h1 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    line-height: 1.3;
}

.header-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

/* Main Content */
.main-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-heading {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.main-heading-highlight {
    font-size: 28px;
    font-weight: 800;
    color: #00bfff;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 191, 255, 0.5);
}

.subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 400;
}

/* Phone Input */
.phone-section {
    margin-bottom: 24px;
}

.phone-input-wrapper {
    display: flex;
    background: white;
    border: 3px solid #00bfff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.phone-input-wrapper:focus-within {
    border-color: #00bfff;
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.3);
}

.country-code {
    padding: 18px 20px;
    background: #f5f5f5;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    border-right: 2px solid #e0e0e0;
    flex-shrink: 0;
}

.phone-input-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.phone-input {
    width: 100%;
    padding: 18px 60px 18px 20px;
    border: none;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    background: white;
}

.phone-input:focus {
    outline: none;
}

.phone-input::placeholder {
    color: #999;
    font-weight: 500;
}

.check-icon {
    position: absolute;
    right: 16px;
    width: 32px;
    height: 32px;
    /* background: #10b981; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background-image: url('../../img/check_circle.svg');
}
.check-icon-backup {
    position: absolute;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.check-icon.show {
    transform: scale(1);
}

/* .check-icon::after {
    content: '✓';
    color: white;
    font-size: 20px;
    font-weight: 700;
} */

.sms-instruction {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

/* CTA Button */
.cta-button {
    width: 100%;
    max-width: 500px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #00bfff, #0099ff);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 191, 255, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin: 0 auto 16px;
    display: block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.6);
}

.cta-button:active {
    transform: translateY(0);
}

.subscription-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

/* Rating */
.rating-section {
    /* background: rgba(0, 0, 0, 0.4);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: inline-block;
    width: 100%;
    max-width: 500px; */
    margin-top: 8rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.rating-text {
    font-size: 14px;
    font-weight: 400;
    color: #ccc;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    color: #fbbf24;
    font-size: 22px;
}

/* Description */
.description {
    background: rgba(0, 50, 80, 0.5);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.description p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 12px;
}

.description p:last-child {
    margin-bottom: 0;
}

.terms-link {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: flex;
    gap: 12px;
    font-size: 13px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00bfff;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

.language-selector {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (min-width: 640px) {
    .header-card {
        padding: 24px 28px;
    }

    .main-heading {
        font-size: 38px;
    }

    .main-heading-highlight {
        font-size: 42px;
    }

}

@media (min-width: 768px) {
    .main-heading {
        font-size: 44px;
    }

    .main-heading-highlight {
        font-size: 48px;
    }

    .header-text h1 {
        font-size: 22px;
    }

    .header-text p {
        font-size: 14px;
    }
}

#languageSelector {
    background-color: white;
    color: black; 
}
.subscriptionInfo {
	color: rgba(255, 255, 255, 0.8);
}