:root {
    --bg-color: #050711;
    --text-main: #ffffff;
    --text-muted: #8b92a5;
    --accent-orange: #ff6b35;
    --accent-blue: #2d55ff;
    --surface: rgba(20, 24, 40, 0.6);
}

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

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

/* Background Effects */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out alternate;
}

.glow-orb.orange {
    width: 400px;
    height: 400px;
    background: var(--accent-orange);
    top: -100px;
    left: 10%;
}

.glow-orb.blue {
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
    bottom: -150px;
    right: 5%;
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(30px) scale(1.1); }
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo-container img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: none; /* Hidden when actual logo is loaded */
}

.logo-r { color: var(--text-main); }
.logo-ai { color: var(--accent-orange); }

/* Content */
.content {
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(45, 85, 255, 0.15);
    border: 1px solid rgba(45, 85, 255, 0.3);
    color: #8cb4ff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.tagline .brand-orange {
    color: var(--accent-orange);
}

.tagline .brand-silver {
    color: #e2e8f0;
    text-shadow: 0 0 8px rgba(226, 232, 240, 0.3);
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Notification Form */
.notify-container {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.notify-container:focus-within {
    border-color: rgba(45, 85, 255, 0.5);
    box-shadow: 0 0 20px rgba(45, 85, 255, 0.2);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.notify-btn {
    background: linear-gradient(135deg, var(--accent-orange), #ff4500);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Footer */
footer {
    margin-top: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-out 1s both;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 600px) {
    .headline { font-size: 2rem; }
    .content { padding: 40px 20px; }
    .notify-container { flex-direction: column; border-radius: 16px; padding: 10px; background: transparent; border: none; }
    .email-input { padding: 15px; background: rgba(0,0,0,0.3); border-radius: 12px; margin-bottom: 10px; border: 1px solid rgba(255, 255, 255, 0.1); }
    .notify-btn { border-radius: 12px; padding: 15px; }
}

/* Creator Card */
.creator-card {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(20, 24, 40, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 53, 0.25);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 1.2s both;
    font-family: 'Inter', sans-serif;
}

.creator-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.creator-name {
    color: #E2E8F0;
    font-weight: 600;
    letter-spacing: 0.5px;
}
