:root {
    --bg-color: #0f172a;
    --text-color: #e2e8f0;
    --accent-color: #38bdf8;
    --secondary-accent: #818cf8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(at 0% 0%, rgba(56, 189, 248, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(129, 140, 248, 0.15) 0px, transparent 50%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

#bg-3d {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0.95;
    display: block;
}

@media (max-width: 760px) {
    #bg-3d {
        z-index: 0;
        opacity: 0.9;
    }
}

/* Background decorative blobs */
body::before, body::after {
    content: '';
    position: absolute;
    filter: blur(80px);
    z-index: -3;
    opacity: 0.6;
    animation: float 10s ease-in-out infinite;
}

body::before {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: -100px;
    left: -100px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

body::after {
    width: 300px;
    height: 300px;
    background: var(--secondary-accent);
    bottom: -50px;
    right: -50px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: -5s;
}

.container {
    padding: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: translateY(0);
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 30%, var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

h2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 2rem;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

.description {
    max-width: 460px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
    color: #94a3b8;
    font-size: 1.1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: var(--accent-color);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
}

.dot {
    height: 8px;
    width: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--accent-color);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.links a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
}

.links a:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(56, 189, 248, 0.3);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(0.8); }
}

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

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-color);
    opacity: 0.6;
}

.particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation: particleFloat1 15s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation: particleFloat2 18s ease-in-out infinite;
    background: var(--secondary-accent);
    box-shadow: 0 0 20px var(--secondary-accent);
}

.particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation: particleFloat3 20s ease-in-out infinite;
}

.particle:nth-child(4) {
    top: 75%;
    left: 30%;
    animation: particleFloat1 22s ease-in-out infinite;
    animation-delay: -5s;
    background: var(--secondary-accent);
    box-shadow: 0 0 20px var(--secondary-accent);
}

.particle:nth-child(5) {
    top: 10%;
    left: 70%;
    animation: particleFloat2 16s ease-in-out infinite;
    animation-delay: -8s;
}

/* Rotating Geometric Shapes */
.rotating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border: 2px solid;
    filter: blur(1px);
    animation: rotateShape 20s linear infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(56, 189, 248, 0.15);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 10%;
    animation: morphShape1 25s ease-in-out infinite, rotateShape 30s linear infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(129, 140, 248, 0.12);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: 10%;
    right: 10%;
    animation: morphShape2 30s ease-in-out infinite, rotateShape 40s linear infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    border-color: rgba(56, 189, 248, 0.1);
    border-radius: 50% 50% 30% 70% / 30% 70% 70% 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: morphShape3 20s ease-in-out infinite, rotateShape 25s linear infinite;
}

/* Particle Animations */
@keyframes particleFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(100px, -80px) scale(1.5);
        opacity: 0.8;
    }
    50% {
        transform: translate(50px, -150px) scale(1);
        opacity: 0.4;
    }
    75% {
        transform: translate(-50px, -100px) scale(1.3);
        opacity: 0.7;
    }
}

@keyframes particleFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(-120px, 100px) scale(1.4);
        opacity: 0.8;
    }
    50% {
        transform: translate(-60px, 180px) scale(1.1);
        opacity: 0.5;
    }
    75% {
        transform: translate(80px, 120px) scale(1.6);
        opacity: 0.7;
    }
}

@keyframes particleFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translate(150px, 80px) scale(1.5) rotate(120deg);
        opacity: 0.8;
    }
    66% {
        transform: translate(-100px, 150px) scale(1.2) rotate(240deg);
        opacity: 0.5;
    }
}

/* Shape Morph Animations */
@keyframes morphShape1 {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
    }
    50% {
        border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
    }
    75% {
        border-radius: 40% 60% 60% 40% / 60% 30% 30% 70%;
    }
}

@keyframes morphShape2 {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 70% 70% 30% / 40% 60% 40% 60%;
    }
    50% {
        border-radius: 70% 30% 50% 50% / 30% 70% 70% 30%;
    }
    75% {
        border-radius: 50% 50% 60% 40% / 50% 50% 30% 70%;
    }
}

@keyframes morphShape3 {
    0%, 100% {
        border-radius: 50% 50% 30% 70% / 30% 70% 70% 30%;
    }
    33% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    66% {
        border-radius: 30% 70% 50% 50% / 50% 30% 50% 70%;
    }
}   

@keyframes rotateShape {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    h1 { font-size: 2.5rem; }
    .content { padding: 2.5rem 1.5rem; }
    .links { flex-direction: column; gap: 0.8rem; }
    .links a { width: 100%; }
}