* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: rgba(15, 23, 42, 0.98);
}

.coming-soon-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.coming-soon-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}

.title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #06b6d4, #10b981);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease-in-out infinite;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.subtitle {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 500;
    color: #60a5fa;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.coming-soon-text {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.status-badge {
    margin-top: 0.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4ade80;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.1);
}

#shieldswap-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#shieldswap-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (max-width: 768px) {
    .coming-soon-content {
        padding: 1rem;
    }
}
