:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --accent-blue: #007aff;
    --accent-cyan: #00f2ff;
    --metallic-silver: #c0c0c0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
}

/* Container */
.container {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.logo-container {
    opacity: 0;
    transform: scale(0.95);
    animation: zoomIn 1.5s forwards cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.cursor-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: translate(-50%, -50%);
}

.logo {
    max-width: 600px;
    width: 90%;
    height: auto;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.6s ease, transform 0.1s linear;
    /* Faster transform for smooth tilt */
    cursor: pointer;
}

.logo:hover {
    filter: brightness(1.2) contrast(1.2);
}

.logo-container:hover .cursor-glow {
    opacity: 1;
}

.content {
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.8s ease-out;
}

/* Coming Soon Badge - Larger & Premium */
.badge {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 1.5rem;
    /* Larger */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: transparent;
    background-image: linear-gradient(135deg, #fff 0%, var(--accent-cyan) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 350px;
    }

    .badge {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        letter-spacing: 0.2em;
    }

    .container {
        gap: 2rem;
    }
}