:root {
    --primary-blue: #00AEFF;
    --accent-orange: #FF6B00;
    --deep-purple: #8A2BE2;
    --bg-dark: #0F1219;
    --text-white: #F8FAFC;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

/* Animated gradient glow inspired by your logo's vortex */
.background-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-blue) 0%, var(--deep-purple) 30%, transparent 70%);
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1) translate(-10%, -10%);
    }

    to {
        transform: scale(1.2) translate(10%, 10%);
    }
}

.container {
    text-align: center;
    max-width: 500px;
    padding: 20px;
}

.logo-wrapper {
    width: 100%;
    /* Spans the full width of the screen */
    display: flex;
    /* Enables Flexbox */
    justify-content: center;
    /* Centers the logo horizontally */
    align-items: center;
    /* Centers the logo vertically (if needed) */
    padding: 20px 0;
    /* Adds some breathing room */
}

.logo {
    width: 100%;
    max-width: 500px;
    /* Keeps it from getting too big */
    height: auto;
    /* Maintains aspect ratio */
    display: block;
    /* Removes bottom whitespace gap */
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    /* For Safari/Chrome */
    background-clip: text;
    /* The standard property */
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-link {
    font-size: 2.5rem;
    color: var(--text-white);
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary-blue);
    transform: translateY(-5px);
}

.footer {
    position: absolute;
    bottom: 30px;
    font-size: 0.8rem;
    opacity: 0.4;
}