:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #e50914;
    /* Potentially red, or maybe gold/silver depending on logo. Let's go with a neutral metallic for now, maybe updating later based on logo colors if I could see them. For now, a sleek silver/gold. */
    --accent-glow: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000000 100%);
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Background effects */
.container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.content-wrapper {
    text-align: center;
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    max-width: 600px;
    width: 100%;
    animation: fadeIn 1.5s ease-out;
}

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

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

.logo-container {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.logo {
    max-width: 200px;
    /* Adjust size as needed */
    height: auto;
    border-radius: 50%;
    /* Optional: if the logo is circular or looks better circular */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

h1.title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.newsletter {
    margin-top: 2rem;
}

.notify-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #888;
}

.signup-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

input[type="email"] {
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    width: 60%;
    font-family: var(--font-main);
    outline: none;
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

button {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    background: white;
    color: black;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
    h1.title {
        font-size: 2.5rem;
    }

    .content-wrapper {
        padding: 2rem;
    }

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

    input[type="email"] {
        width: 100%;
    }

    button {
        width: 100%;
    }
}