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

:root {
    --bg: #030707;
    --card: rgba(7, 20, 20, 0.78);
    --cyan: #00f5ff;
    --cyan-soft: #7ffcff;
    --text: #f5ffff;
    --muted: #9fb7b7;
}

body {
    min-height: 100vh;
    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,10,10,.80)
        ),
        url("../assets/images/profile.png")
        center center / cover
        fixed no-repeat;
    color: var(--text);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding: 40px 18px;
    overflow-x: hidden;
}

.background-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.25;
    background:
        radial-gradient(circle at 50% 20%, rgba(0, 245, 255, 0.08), transparent 28%),
        radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.05), transparent 25%);
}

.container {
    position: relative;
    width: 100%;
    max-width: 460px;
    z-index: 1;
}

.hero {
    text-align: center;
    margin-bottom: 28px;
}

.logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--cyan);
    background: #000;

    box-shadow:
        0 0 12px rgba(0,245,255,.8),
        0 0 35px rgba(0,245,255,.25);

    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 20%;
    border-radius:50%;
}

.logo span {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--cyan-soft);
    text-shadow:
        0 0 8px var(--cyan),
        0 0 18px var(--cyan);
}

h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.1;
    color: var(--cyan-soft);
    text-shadow:
        0 0 8px rgba(0, 245, 255, 0.9),
        0 0 22px rgba(0, 245, 255, 0.45);
}

.subtitle {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

.links {
    display: grid;
    gap: 15px;
}

.link-card {
    display: block;
    width: 100%;
    padding: 17px 20px;
    border: 1px solid rgba(0, 245, 255, 0.75);
    border-radius: 16px;
    background: var(--card);
    color: var(--cyan-soft);
    text-decoration: none;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow:
        0 0 10px rgba(0, 245, 255, 0.12),
        inset 0 0 12px rgba(0, 245, 255, 0.03);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    background: rgba(0, 245, 255, 0.12);
    box-shadow:
        0 0 14px rgba(0, 245, 255, 0.45),
        0 0 28px rgba(0, 245, 255, 0.18);
}

.link-card:active {
    transform: scale(0.98);
}

footer {
    text-align: center;
    margin-top: 30px;
    color: #6f8c8c;
    font-size: 0.85rem;
}

@media (max-width: 480px) {
    body {
        padding-top: 28px;
    }

    .logo {
        width: 105px;
        height: 105px;
    }

    .link-card {
        padding: 15px 16px;
    }
}
