/* Global Styles */
:root {
    --primary-red: #ef4444;
    /* Vivid Red matching logo vibes */
    --primary-blue: #3b82f6;
    /* Bright Blue matching logo vibes */
    --dark-bg: #0f172a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow-1,
.glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: drift 10s infinite alternate ease-in-out;
}

.glow-1 {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--primary-red), transparent 70%);
}

.glow-2 {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--primary-blue), transparent 70%);
    animation-delay: -5s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Container & Card */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.content-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
    padding: 20px;
    /* Added padding as requested */
}

.logo {
    max-width: 180px;
    height: auto;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    /* Since the logo probably has a white background, let's make it look integrated 
       if it's a JPG, we might want a white container or blend mode. 
       Assuming standard JPG with white bg, let's give it a clean white container circle/rounded rect */
    /* If the user image has white bg, removing it via css is hard. 
       Let's assume it looks okay, or add a slight white glow/bg if it's rectangular. */
    mix-blend-mode: lighten;
    /* Experimental: might help if logic is black on white, but logo has colors. */
    /* Reset mix-blend-mode if it looks bad. Let's try standard first. */
    mix-blend-mode: normal;
}

/* Typography */
.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    line-height: 1.2;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.description strong {
    color: #fff;
    font-weight: 600;
}



/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    z-index: 1;
    padding-bottom: 20px;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

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

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

/* Responsive */
@media (max-width: 640px) {
    .content-card {
        padding: 40px 24px;
        margin: 20px 0;
    }

    .title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    button {
        width: 100%;
    }

    .staff-login {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Staff Login Link */
.staff-login {
    position: absolute;
    top: 25px;
    right: 30px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    /* Pill shape */
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    z-index: 10;
}

.staff-login:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}