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

:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --text-color: #1a1a1a;
    --text-light: #666666;
    --bg-color: #ffffff;
    --border-color: #d0d0d0;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    animation: fadeIn 1s ease-in;
}

.content {
    background: var(--bg-color);
    padding: 3rem 2.5rem;
    border-radius: 2px;
    box-shadow: var(--shadow);
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out 0.2s both;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Main Content */
.main-content {
    margin-bottom: 2.5rem;
    animation: fadeInDown 1s ease-out 0.4s both;
}

.heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out 0.8s both;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 2px;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    animation: fadeInDown 1s ease-out 1s both;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .content {
        padding: 2rem 1.5rem;
    }

    .logo {
        font-size: 2rem;
    }

    .heading {
        font-size: 1.5rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 0.85rem;
    }
}

