:root {
    --bg-color: #0c0c0c;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --accent-color: #ff3399; /* Vibrant Pink */
    --font-main: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-slow: 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

/* Subtle Animated Background Gradient */
body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(255, 51, 153, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.container {
    max-width: 800px;
    padding: 2rem;
    position: relative;
}

h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.2s;
}

p {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: var(--text-secondary);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
    letter-spacing: 0.05em;
}

/* Elegant Developer Signature */
footer {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeIn 2s forwards 1.2s;
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
}

.signature-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin: 0 8px;
    vertical-align: middle;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsiveness */
@media (max-width: 480px) {
    footer {
        bottom: 2rem;
    }
}
