/* Design System & Variables */
:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-yellow: #facc15;
    --accent-yellow-glow: rgba(250, 204, 21, 0.15);
    --surface-color: rgba(255, 255, 255, 0.04);
    --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Background Effects */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.8;
}

.yellow-glow {
    width: 500px;
    height: 500px;
    background: var(--accent-yellow-glow);
    top: -200px;
    left: -200px;
    animation: float 12s ease-in-out infinite alternate;
}

.white-glow {
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    bottom: -300px;
    right: -200px;
    animation: float 18s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 80px); }
}

/* Layout Container */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Logo Styling */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0px;
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.logo svg {
    margin-right: -4px;
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1;
}

/* Typography & Content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    background: linear-gradient(
        to right,
        #a1a1aa 20%,
        #ffffff 40%,
        #ffffff 60%,
        #a1a1aa 80%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.6;
    font-weight: 300;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 100px;
    color: var(--accent-yellow);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: -0.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link:hover {
    color: var(--bg-color);
    background: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
    font-weight: 300;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive Adjustments */
@media (max-width: 640px) {
    .container { padding: 1.5rem; gap: 3rem; }
    .title { font-size: 2.75rem; }
    .subtitle { font-size: 1.1rem; }

}
