:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #3b82f6;
    --secondary-text: #a1a1aa;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
    padding: 4rem 1rem;
}

/* Animated Background */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(80px);
}

.blob {
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    opacity: 0.1;
    animation: move 20s infinite alternate;
}

.blob-1 {
    background: var(--accent-color);
    top: -10%;
    left: -10%;
}

.blob-2 {
    background: #8b5cf6;
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(10%, 10%) scale(1.1); }
}

/* Main Content Structure */
main {
    text-align: center;
    z-index: 1;
    max-width: 700px;
    width: 100%;
}

.image-container {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.content {
    padding: 0 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--secondary-text);
    font-weight: 300;
}

.divider {
    height: 1px;
    width: 40px;
    background: var(--glass-border);
    margin: 2rem auto;
}

.tagline {
    font-size: 1.1rem;
    color: var(--secondary-text);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.tagline span {
    color: var(--text-color);
    font-weight: 600;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

footer {
    margin-top: 4rem;
    color: #4b5563;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 640px) {
    h1 { font-size: 2rem; }
    body { padding: 2rem 1rem; }
}
