:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ffffff;
    --accent-color: #0066cc;
    --hover-color: #413a68;
}

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

html, body {
    height: 100%;
}

body {
    font-family: monospace;
    background: linear-gradient(135deg, #3d3d3d 0%, #101010 100%);
    color: #ffffff;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.content {
    text-align: center;
    /* background: var(--secondary-color);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
    max-width: 400px;
    width: 100%;
    animation: fadeIn 0.6s ease-out;
}

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

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.tagline {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 40px;
    font-weight: 400;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    /* border-radius: 50%;
    background: var(--accent-color); */
    color: var(--secondary-color);
    font-size: 4rem;
    text-decoration: none;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3); */
}

.social-link:hover {
    background: var(--hover-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 68, 153, 0.4);
}

.social-link:active {
    transform: translateY(-2px) scale(1.05);
}

/* Responsive design */
@media (max-width: 600px) {
    .content {
        padding: 40px 30px;
        border-radius: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 360px) {
    .content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.6rem;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
