/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E50914;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #ffffff;
    --gray-text: #9ca3af;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-hover: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, #1a0000 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    z-index: -2;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(229, 9, 20, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(229, 9, 20, 0.03) 50%, transparent 70%);
    animation: shimmer 20s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 20s infinite linear;
    -webkit-user-select: none;
    user-select: none;
}

.icon:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
.icon:nth-child(2) { left: 20%; animation-delay: 3s; animation-duration: 20s; }
.icon:nth-child(3) { left: 35%; animation-delay: 7s; animation-duration: 28s; }
.icon:nth-child(4) { left: 50%; animation-delay: 5s; animation-duration: 23s; }
.icon:nth-child(5) { left: 65%; animation-delay: 1s; animation-duration: 26s; }
.icon:nth-child(6) { left: 75%; animation-delay: 8s; animation-duration: 21s; }
.icon:nth-child(7) { left: 85%; animation-delay: 4s; animation-duration: 24s; }
.icon:nth-child(8) { left: 95%; animation-delay: 6s; animation-duration: 27s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(229, 9, 20, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Content */
.content {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.tagline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #e50914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.badge-text {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-red);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(229, 9, 20, 0.6);
    }
}

.description {
    font-size: 1.25rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    background: var(--card-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(229, 9, 20, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(0.2);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--light-text);
}

.feature p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Email Signup */
.signup-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.signup-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #e50914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-subtitle {
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.08);
}

.email-input::placeholder {
    color: var(--gray-text);
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background: #c50711;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
}

.submit-btn:active {
    transform: scale(0.98);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 20px;
}

.form-message.success {
    color: #4ade80;
}

.form-message.error {
    color: #f87171;
}

.form-message.info {
    color: #60a5fa;
}

/* Social Links */
.social-links {
    margin-top: 4rem;
}

.social-text {
    color: var(--gray-text);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--gray-text);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
    border-color: var(--primary-red);
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-fade-in-delay-4 {
    animation: fadeIn 1s ease-out 0.8s both;
}

.animate-fade-in-delay-5 {
    animation: fadeIn 1s ease-out 1s both;
}

.animate-fade-in-delay-6 {
    animation: fadeIn 1s ease-out 1.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .logo {
        width: 200px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .input-group {
        flex-direction: column;
    }

    .email-input,
    .submit-btn {
        width: 100%;
    }

    .signup-section {
        padding: 2rem 1.5rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .floating-icons {
        display: none;
    }
}