/* Custom Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

/* --- Colors --- */
/* Deep Purple Background: #1C0F3D */
/* Neon Pink Accent: #FF69B4 */
/* Neon Blue Accent: #00FFFF */
/* Main Purple Accent: #6A0DAD */

/* General Styling and Reset */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1C0F3D; /* Deep Dark Purple */
    color: #f0f0f0; /* Light text */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
    overflow: hidden; /* Important for background effects */
}

.container {
    max-width: 600px;
    width: 100%;
    z-index: 10; /* Ensures content is above background effects */
}

/* Background Effect (Optional: For a subtle space/digital look) */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle radial gradient to make the center lighter */
    background: radial-gradient(circle at center, rgba(106, 13, 173, 0.2) 0%, rgba(28, 15, 61, 1) 70%);
    z-index: 1;
}

/* Logo */
.logo-area {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
    max-width: 50px;
    height: auto;
    align-content: center;
    filter: drop-shadow(0 0 5px rgba(255, 105, 180, 0.5)); /* Neon glow effect on logo */
}
.logo-title {
    max-width: 250px;
    height: auto;
    align-content: center;
    filter: drop-shadow(0 0 5px rgba(255, 105, 180, 0.5)); /* Neon glow effect on logo */
}

/* Main Content Card (The purple bordered box) */
.main-card {
    background: rgba(0, 0, 0, 0.3); /* Slightly transparent dark background */
    padding: 40px 30px;
    border-radius: 15px;
    /* Neon Border Effect */
    border: 3px solid #6A0DAD;
    box-shadow: 
        0 0 15px rgba(106, 13, 173, 0.8), /* Main glow */
        0 0 30px rgba(0, 255, 255, 0.2); /* Secondary glow */
    margin-bottom: 30px;
}

/* Typography */
.main-title {
    font-size: 3.5em;
    font-weight: 800;
    color: #FF69B4; /* Neon Pink */
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.7);
}

.subtitle {
    font-size: 1.2em;
    font-weight: 400;
    color: #c0c0c0;
    margin-bottom: 25px;
}

.cta-heading {
    font-size: 1.5em;
    font-weight: 600;
    color: #00FFFF; /* Neon Blue/Cyan */
    margin-top: 15px;
    margin-bottom: 20px;
}

/* Signup Form */
#notifyForm {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

#emailInput {
    padding: 12px 18px;
    border: 1px solid #6A0DAD;
    border-radius: 8px;
    flex-grow: 1;
    max-width: 280px;
    font-size: 1em;
    background-color: rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
    outline: none;
    transition: border-color 0.3s ease;
}

#emailInput::placeholder {
    color: #ccc;
}

#emailInput:focus {
    border-color: #FF69B4;
    box-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
}

.cta-button {
    background-color: #FF69B4; /* Neon Pink Button */
    color: #1C0F3D;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: #FFB6C1; /* Lighter Pink on hover */
    box-shadow: 0 0 10px rgba(255, 105, 180, 1);
}

/* Message Display */
.message {
    font-style: italic;
    color: #90EE90; /* Light green for success */
    min-height: 1.2em; 
    margin-top: 5px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    font-size: 1.8em;
    color: #00FFFF; /* Neon Blue for icons */
    transition: color 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}

.social-links a:hover {
    color: #FF69B4; /* Pink on hover */
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 500px) {
    .main-card {
        padding: 30px 20px;
    }
    
    .main-title {
        font-size: 2.5em;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .cta-heading {
        font-size: 1.2em;
    }
    
    #notifyForm {
        flex-direction: column;
        gap: 15px;
    }
    
    #emailInput, .cta-button {
        max-width: 100%;
        width: 100%;
    }
}