:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-orange: #ff5500;
    --accent-purple: #8800ff;
    --font-heading: 'Creepster', system-ui;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 3rem;
}

/* Spooky glow background */
.background-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 50%, rgba(136, 0, 255, 0.15) 0%, rgba(5, 5, 5, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1100px;
    /* Widened for 2 columns */
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.top-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1.5s ease-out;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 210px;
    filter: drop-shadow(0 0 15px rgba(255, 85, 0, 0.5));
    animation: float 6s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.spooky-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #ffffff;
    text-transform: lowercase;
    text-shadow: 0 0 5px rgba(255, 85, 0, 1), 0 0 15px rgba(255, 85, 0, 0.8), 2px 2px 0px rgba(0, 0, 0, 1);
    letter-spacing: 3px;
    animation: pulseGlow 3s infinite alternate;
    margin: 0;
    /* Remove default margin */
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    from {
        text-shadow: 0 0 5px rgba(255, 85, 0, 1), 0 0 10px rgba(255, 85, 0, 0.8), 2px 2px 0px rgba(0, 0, 0, 1);
    }

    to {
        text-shadow: 0 0 10px rgba(255, 85, 0, 1), 0 0 20px rgba(255, 85, 0, 0.8), 0 0 30px rgba(255, 85, 0, 0.6), 2px 2px 0px rgba(0, 0, 0, 1);
    }
}

/* Video Embed section */
.video-section {
    flex: 1.2;
    /* Allows video to take slightly more space if needed, or equal to 1 */
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(136, 0, 255, 0.4);
    border: 2px solid rgba(136, 0, 255, 0.3);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-section:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(136, 0, 255, 0.6);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Signup Form overrides */
.signup-section {
    width: 100%;
    max-width: 600px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(255, 255, 255, 0.02);
    margin: 0 auto;
    /* Center alignment */
}

#mc_embed_signup {
    background: transparent !important;
    color: #fff !important;
    font-family: var(--font-body) !important;
    width: 100% !important;
    padding: 0 !important;
}

#mc_embed_signup h2 {
    font-family: var(--font-heading) !important;
    font-size: 2.5rem !important;
    color: var(--accent-purple) !important;
    text-align: center;
    padding-bottom: 1rem !important;
    font-weight: normal;
    text-shadow: 0 0 15px rgba(136, 0, 255, 0.6);
    line-height: 1.2;
}

#mc_embed_signup .indicates-required {
    text-align: right;
    margin-bottom: 0.5rem;
    color: #999 !important;
    font-size: 0.9rem;
}

#mc_embed_signup .mc-field-group {
    padding-bottom: 1rem !important;
    width: 100% !important;
    margin-bottom: 0.5rem;
}

#mc_embed_signup .mc-field-group label {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem;
    display: block;
    color: #ddd;
    font-weight: 600;
}

#mc_embed_signup input.text,
#mc_embed_signup input.email {
    width: 100% !important;
    padding: 1rem 1.2rem !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

#mc_embed_signup input.text:focus,
#mc_embed_signup input.email:focus {
    outline: none !important;
    border-color: var(--accent-purple) !important;
    box-shadow: 0 0 20px rgba(136, 0, 255, 0.4), inset 0 2px 5px rgba(0, 0, 0, 0.5) !important;
    background: rgba(0, 0, 0, 0.8) !important;
}

#mc_embed_signup .clear {
    margin-top: 1rem;
}

#mc_embed_signup .button {
    width: 100% !important;
    padding: 1.2rem !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    background: linear-gradient(45deg, var(--accent-orange), #ff2a00) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    height: auto !important;
    letter-spacing: 2px !important;
    box-shadow: 0 5px 20px rgba(255, 85, 0, 0.5) !important;
    font-family: var(--font-heading) !important;
}

#mc_embed_signup .button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.7) !important;
    background: linear-gradient(45deg, #ff2a00, var(--accent-orange)) !important;
}

#mc_embed_signup .response {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 600;
}

#mce-error-response {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: #ff6b6b;
}

#mce-success-response {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid rgba(0, 255, 0, 0.5);
    color: #8ce99a;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .top-row {
        flex-direction: column;
        gap: 2rem;
    }

    .hero {
        align-items: center;
        text-align: center;
    }

    .spooky-text {
        font-size: 3rem;
    }

    .logo {
        width: 220px;
    }

    .signup-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .spooky-text {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .logo {
        width: 180px;
    }

    #mc_embed_signup h2 {
        font-size: 2rem !important;
    }
}