/* Basic Reset and Dark Background */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000; /* Super dark background */
    color: #fff; /* White text */
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

/* Header Styling (Left-Aligned Logo) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: flex-start; /* Keeps content (logo) aligned to the left */
    align-items: center;
    border-bottom: 1px solid #333;
    z-index: 100;
    background-color: #000;
}

.logo {
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

/* Main Content Styling (Centered) */
.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding-top: 60px; /* Push content down past the fixed header */
}

/* Main Logo Styling (Pulsing Effect) */
.main-logo {
    width: 80px; 
    height: auto;
    margin-bottom: 20px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.4); 
    border-radius: 50%;
    animation: glow-pulse 3s infinite alternate ease-in-out; 
}

/* NEWSLETTER STYLES (Custom styling for the embedded Mailchimp form) */
.newsletter-container {
    max-width: 350px; /* Reduced width for better look */
    width: 100%;
    margin-top: 10px;
}

/* FIX: Hides the "Email Address" label, required text, and asterisk */
#mc_embed_signup label,
.indicates-required, 
.asterisk { 
    display: none !important;
}

/* Hides Mailchimp's referral badge and its containing paragraph to remove the vertical gap */
.refferal_badge,
.optionalParent > p { 
    display: none !important;
}

/* Styles Mailchimp's heading */
#mc_embed_signup h2 {
    font-size: 1.8em;
    margin-bottom: 5px;
    text-align: center;
    color: #fff;
}

.subtitle {
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 25px;
    display: block; 
}

/* Styles the input field */
#mc-embedded-subscribe-form input.email {
    width: 90%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #444;
    background-color: #111;
    color: #fff;
    font-size: 1em;
    text-align: center;
}

/* Styles the submit button */
#mc-embedded-subscribe-form .button {
    width: 100%;
    padding: 15px 12px; /* Increased padding to make the button taller */
    background-color: #fff; /* White button */
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.2s;
    font-size: 1em; 
}

#mc-embedded-subscribe-form .button:hover {
    background-color: #ddd;
}

/* Styles custom agreement text */
.agreement-text {
    font-size: 0.6em; /* Reduced font size for single line */
    white-space: nowrap; /* Forces text to stay on one line */
    color: #888;
    margin-top: 10px;
    display: block;
}


/* Footer Styling (Fixed Bottom) */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 30px;
    text-align: center;
    font-size: 0.65em; 
    border-top: 1px solid #333;
    background-color: #000;
}

/* Social Icons Styling (Centered & Equidistant) */
.social-icons {
    margin-bottom: 5px; 
    text-align: center; 
}

.social-icons a {
    color: #fff; 
    text-decoration: none;
    font-size: 1.5em; 
    margin: 0 15px; 
    display: inline-block;
}

/* ANIMATION KEYFRAMES */
@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.4), 0 0 10px rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.3);
    }
}
