.membership-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Inter', sans-serif;
    background: rgba(58, 12, 163, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(114, 9, 183, 0.3);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(114, 9, 183, 0.2);
}

.promo-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(58, 12, 163, 0.15);
    border-radius: 1rem;
}

.promo-header h2 {
    font-size: 2.2rem;
    color: var(--highlight);
    margin-bottom: 1rem;
}

.promo-header .tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.urgent-message {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(247, 37, 133, 0.1);
    border-radius: 0.5rem;
    border: 1px solid var(--highlight);
}

.tier-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.signup-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Countdown Timer Styles */
.countdown-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 1rem;
    color: var(--text-light);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 0.5rem;
    min-width: 80px;
}

.countdown-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Referral Counter Styles */
.referral-counter-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(58, 12, 163, 0.3) 0%, rgba(114, 9, 183, 0.3) 100%);
    border-radius: 1rem;
    border: 2px solid var(--highlight);
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.2);
}

.referral-counter-section h1 {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.counter-container {
    margin: 2rem 0;
}

.counter-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.counter-target {
    color: var(--text-light);
    opacity: 0.9;
}

.progress-bar {
    height: 12px;
    background: rgba(58, 12, 163, 0.3);
    border-radius: 6px;
    overflow: hidden;
    margin: 1rem auto;
    max-width: 600px;
    border: 1px solid var(--accent);
    position: relative;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--highlight) 100%);
    width: 0%;
    transition: width 1s ease-in-out;
    position: relative;
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.counter-message {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Signup Form Styles */
.signup-section {
    text-align: center;
    margin-bottom: 3rem;
}

.email-form {
    max-width: 500px;
    margin: 2rem auto;
}

.input-group {
    display: flex;
    gap: 1rem;
}

#email-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--accent);
    background: rgba(58, 12, 163, 0.15);
    color: var(--text-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#email-input:focus {
    border-color: var(--highlight);
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.2);
}

#email-input::placeholder {
    color: rgba(248, 249, 250, 0.6);
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--highlight) 100%);
    color: var(--text-light);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(247, 37, 133, 0.4);
}

.submit-button i {
    font-size: 1.1rem;
}

/* Share Section Styles */
.share-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(58, 12, 163, 0.15);
    border-radius: 1rem;
    border: 1px solid var(--primary);
}

.share-options {
    margin-top: 1.5rem;
}

.referral-link {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

#referral-link {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--accent);
    background: rgba(58, 12, 163, 0.15);
    color: var(--text-light);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    cursor: text;
}

.copy-button {
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: var(--text-light);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.copy-button:hover {
    background: var(--highlight);
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.share-button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-button:hover {
    transform: translateY(-2px);
}

.facebook {
    background: #1877f2;
}

.twitter {
    background: #1da1f2;
}

.whatsapp {
    background: #25d366;
}

.telegram {
    background: #0088cc;
}

/* Features Preview Styles */
.features-preview {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 2rem;
    background: rgba(58, 12, 163, 0.15);
    border-radius: 1rem;
    border: 1px solid var(--primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--highlight);
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 1rem;
    }

    .countdown-value {
        font-size: 2rem;
        min-width: 60px;
    }

    .input-group {
        flex-direction: column;
    }

    .submit-button {
        width: 100%;
    }

    .referral-link {
        flex-direction: column;
    }

    .copy-button {
        width: 100%;
    }

    .tier-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .current-price {
        flex-direction: column;
        gap: 0.3rem;
    }

    .price-value {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.membership-container > * {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Message Styles */
.message.success {
    background-color: var(--success);
    color: var(--text-light);
}

.message.error {
    background-color: var(--highlight);
    color: var(--text-light);
}

/* Add body background to match main app */
body {
    background: var(--background);
    color: var(--text-light);
    line-height: 1.6;
}

/* Return to Homepage Button */
.return-homepage {
    display: block;
    width: fit-content;
    margin: 3rem auto;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    text-align: center;
}

.return-homepage:hover {
    background: var(--highlight);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(247, 37, 133, 0.4);
}

/* Pricing Tiers */
.pricing-tiers {
    margin-bottom: 3rem;
    text-align: center;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tier-item {
    background: rgba(58, 12, 163, 0.15);
    border: 2px solid var(--primary);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-item.active {
    border-color: var(--highlight);
    background: rgba(247, 37, 133, 0.1);
}

.tier-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--highlight));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-item:hover::before {
    opacity: 1;
}

.tier-header {
    margin-bottom: 1rem;
}

.tier-header h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tier-header .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.tier-progress {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Current Price Display */
.current-price {
    background: rgba(58, 12, 163, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.price-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

.price-value {
    color: var(--highlight);
    font-size: 1.8rem;
    font-weight: 700;
}

.price-period {
    color: var(--text-light);
    opacity: 0.8;
}

/* Next Tier Message */
.next-tier {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 500;
} 

.limited-time-opportunity {
    text-align: center; /* Center text */
    background: rgba(58, 12, 163, 0.15); /* Background color */
    border: 1px solid rgba(114, 9, 183, 0.3); /* Border */
    border-radius: 12px; /* Rounded corners */
    padding: 2rem; /* Padding for spacing */
    margin: 2rem auto; /* Center the section with auto margins */
    max-width: 600px; /* Limit the width */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.limited-time-opportunity h2 {
    color: var(--accent); /* Accent color for the heading */
    margin-bottom: 1rem; /* Space below the heading */
}

.limited-time-opportunity p {
    color: var(--text-light); /* Light text color */
    font-size: 1.1rem; /* Slightly larger font size */
}
.return-home-container {
    text-align: center; /* Center the text */
    margin-top: 2rem; /* Add some space above */
}

.return-home-link {
    color: var(--text-light); /* Text color */
    text-decoration: none; /* Remove underline */
    font-size: 1rem; /* Font size */
    padding: 0.8rem 1.5rem; /* Padding for the link */
    border-radius: 30px; /* Rounded corners */
    transition: all 0.3s ease; /* Smooth transition */
    background: rgba(58, 12, 163, 0.15); /* Background color */
    border: 1px solid var(--accent); /* Border */
}

.return-home-link:hover {
    background: rgba(76, 201, 240, 0.1); /* Change background on hover */
    transform: translateY(-2px); /* Lift effect on hover */
}