/* =========================
   Base Styles
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --soft-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--soft-white);
}

body {
    background: #0a0a0a;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.logo {
    height: 40px;
    width: auto;
    margin-bottom: 2rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 1;
}

h1 {
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    gap: 0;
    padding: 0;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: var(--soft-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    overflow: hidden;
    position: relative;
}

.social-links a:hover {
    width: auto;
    min-width: 40px;
    padding: 0 10px;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.social-links a span { 
    display: none;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 400;
}

.social-links a:hover span { 
    display: inline-block;
    opacity: 1;
    transform: translateX(0);
}

.social-links a i { 
    font-size: 1.1rem; 
    line-height: 1;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.social-links a:hover i {
    transform: scale(1.1);
}

/* Mobile Styles */
@media (max-width: 767px) {
    .logo {
        height: 32px;
        margin-bottom: 1.5rem;
    }
    
    h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .container {
        padding: 1.5rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1rem;
    }
    
    .social-links a:hover {
        width: auto;
        min-width: 48px;
        padding: 0 14px;
        gap: 8px;
    }
    
    .social-links a span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.25rem;
    }
}
