/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Coming soon content */
.coming-soon-content {
    text-align: center;
    padding: 60px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.logo h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.coming-soon-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.coming-soon-text p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.countdown {
    margin-bottom: 40px;
}

.launch-date {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
}

/* Form styles */
.notify-form {
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    flex-direction: column;
}

.form-group>div {
    display: flex;
}

/* Alternative SMS signup */
.alternative-signup {
    margin-top: 25px;
    text-align: center;
}

.alternative-signup p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.sms-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sms-link:hover {
    background: rgba(52, 152, 219, 0.2);
    border-color: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.sms-link i {
    font-size: 1rem;
}

input[type="email"] {
    flex: 1;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 30px 0 0 30px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

input[type="email"]:focus {
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

input[type="email"].error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.3) !important;
}

input[type="email"]::placeholder {
    color: #666;
}

.btn {
    padding: 15px 25px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* Social links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #3498db;
    transform: translateY(-3px);
}

/* Footer */
.copyright {
    width: 100%;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #3498db;
}

/* Success and Error messages */
.success-message {
    margin-top: 10px;
    color: #2ecc71 !important;
    font-weight: 500;
    padding: 10px;
    border-radius: 20px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.error-message {
    margin-top: 10px;
    color: #e74c3c !important;
    font-weight: 500;
    padding: 10px;
    border-radius: 20px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.form-message {
    text-align: center;
    font-size: 0.9rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SMS Page Specific Styles */
.sms-page .container {
    max-width: 900px;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
}

.sms-subscription-content {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    padding: 40px;
}

.sms-header {
    text-align: center;
    margin-bottom: 40px;
}

.sms-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.sms-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.sms-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.sms-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group-half {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sms-form .form-group {
    display: flex;
    flex-direction: column;
}

.sms-form label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff;
    font-size: 1rem;
}

.sms-form input[type="text"],
.sms-form input[type="tel"] {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
}

.sms-form input[type="text"]:focus,
.sms-form input[type="tel"]:focus {
    border-color: #3498db;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.3);
    transform: translateY(-2px);
}

.form-help {
    margin-top: 5px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Consent Section */
.consent-section {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consent-checkbox {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.consent-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.consent-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1.4;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #3498db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.consent-checkbox input[type="checkbox"]:checked+label .checkmark {
    background: #3498db;
    border-color: #3498db;
}

.consent-checkbox input[type="checkbox"]:checked+label .checkmark:after {
    content: "✓";
    color: white;
    font-weight: bold;
    font-size: 16px;
}

/* Agreement Policy */
.agreement-policy {
    margin-top: 20px;
}

.agreement-policy h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.policy-content {
    max-height: 300px;
    overflow-y: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content h4 {
    color: #fff;
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

.policy-content h4:first-child {
    margin-top: 0;
}

.policy-content ul {
    margin: 10px 0 15px 20px;
    color: rgba(255, 255, 255, 0.9);
}

.policy-content li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.policy-content p {
    margin: 15px 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
}

/* SMS Submit Button */
.sms-submit-btn {
    margin-top: 30px;
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
}

.sms-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.sms-submit-btn i {
    font-size: 1.2rem;
}

/* Back to Home */
.back-to-home {
    margin-top: 40px;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: #3498db;
}

.back-link i {
    font-size: 0.9rem;
}

/* Responsive for SMS page */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 3rem;
    }

    .coming-soon-text h2 {
        font-size: 2.5rem;
    }

    .coming-soon-text p {
        font-size: 1rem;
    }

    .form-group>div {
        flex-direction: column;
    }

    input[type="email"] {
        border-radius: 30px;
        margin-bottom: 10px;
        border: 2px solid transparent;
    }

    .btn {
        border-radius: 30px;
    }

    /* SMS page responsive */
    .sms-page .container {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .sms-subscription-content {
        padding: 25px 20px;
        margin: 0 10px;
    }

    .sms-header h2 {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group-half {
        margin-bottom: 20px;
    }

    .consent-checkbox label {
        font-size: 1rem;
    }

    .policy-content {
        max-height: 250px;
        padding: 15px;
    }

    .sms-submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2.5rem;
    }

    .coming-soon-text h2 {
        font-size: 2rem;
    }

    .launch-date {
        font-size: 1.2rem;
        padding: 12px 20px;
    }

    .coming-soon-content {
        padding: 40px 15px;
    }

    /* SMS page mobile */
    .sms-subscription-content {
        padding: 20px 15px;
        margin: 0 5px;
    }

    .sms-header h2 {
        font-size: 1.8rem;
    }

    .sms-header p {
        font-size: 1rem;
    }

    .consent-section {
        padding: 20px 15px;
    }

    .policy-content {
        max-height: 200px;
        padding: 12px;
        font-size: 0.9rem;
    }
}