:root {
    --primary: #FF9933; /* Deep Saffron */
    --secondary: #2D2D2D; /* Dark Charcoal */
    --accent: #D4AF37; /* Gold */
    --text: #F5F5F5;
    --text-muted: #B0B0B0;
    --bg-gradient: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: var(--bg-gradient);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
}

/* Background Elements */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.3;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -50px;
    right: -50px;
}

/* Landing Card */
.landing-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 153, 51, 0.3));
    animation: pulse 3s infinite ease-in-out;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #FF9933, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.coming-soon-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 153, 51, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Interactive Elements */
.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.5rem;
    width: 100%;
    max-width: 400px;
}

input {
    background: transparent;
    border: none;
    padding: 0.8rem 1rem;
    color: white;
    width: 100%;
    outline: none;
}

button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 153, 51, 0.4);
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    h1 { font-size: 2.5rem; }
    .landing-card { padding: 3rem 1.5rem; }
}
