:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-color: #ffffff;
    --secondary-text: #a0a0a0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --hover-bg: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.1);
    --glow-color: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo-img {
    width: 75px;
    height: 75px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--glow-color);
    animation: float 6s ease-in-out infinite;
    object-fit: cover;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.link-item:hover {
    background-color: var(--hover-bg);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.link-item i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    margin-right: 1rem;
    color: var(--accent-color);
}

.link-item span {
    font-weight: 500;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer {
    margin-top: 4rem;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
        box-shadow: 0 0 30px var(--glow-color);
    }

    50% {
        transform: translateY(-10px);
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.25);
    }

    100% {
        transform: translateY(0px);
        box-shadow: 0 0 30px var(--glow-color);
    }
}

/* Responsive */
@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .logo-img {
        width: 120px;
        height: 120px;
    }

    .container {
        padding: 1.5rem;
    }

    .link-item {
        padding: 1rem;
    }
}