/* Modern Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0d14;
    --card-bg: rgba(22, 27, 38, 0.65);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --facebook-color: #1877f2;
    --instagram-color: #e4405f;
    --linkedin-color: #0a66c2;
    --radius-lg: 24px;
    --radius-md: 14px;
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Cairo', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 1.5rem;
}

/* Background Atmosphere Glows */
.background-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

/* Main Container & Card */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Header Text Above Logo */
.official-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    max-width: 100%;
    text-align: center;
}

/* Logo Styling */
.logo-wrapper {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 260px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

/* Coming Soon & Gear Below Logo */
.coming-soon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #d1d5db;
    margin-bottom: 1.25rem;
}

.gear-icon {
    width: 22px;
    height: 22px;
    color: #10b981;
    animation: spin 5s linear infinite;
}

/* Social Buttons Grid */
.social-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-btn .icon {
    width: 22px;
    height: 22px;
    transition: transform var(--transition-fast);
}

/* Hover States & Brand Colors */
.social-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: rgba(24, 119, 242, 0.4);
    color: #60a5fa;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.2);
    transform: translateY(-2px);
}

.social-btn.instagram:hover {
    background: rgba(228, 64, 95, 0.15);
    border-color: rgba(228, 64, 95, 0.4);
    color: #f472b6;
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.2);
    transform: translateY(-2px);
}

.social-btn.linkedin:hover {
    background: rgba(10, 102, 194, 0.15);
    border-color: rgba(10, 102, 194, 0.4);
    color: #38bdf8;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.2);
    transform: translateY(-2px);
}

.social-btn:hover .icon {
    transform: scale(1.15);
}

.social-btn:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive adjustments */
@media (max-width: 480px) {
    .card {
        padding: 2rem 1.5rem;
    }
    
    .logo {
        max-width: 210px;
    }
}
