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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0c;
    color: #e0ddd8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

/* ===========================
   STARFIELD
   =========================== */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(220, 215, 230, 0.6);
    border-radius: 50%;
    animation: twinkle var(--dur) ease-in-out infinite;
}

.star-1  { top: 8%;  left: 12%; --dur: 3s; }
.star-2  { top: 15%; left: 45%; --dur: 4.5s; animation-delay: 0.5s; }
.star-3  { top: 5%;  left: 78%; --dur: 3.2s; animation-delay: 1s; }
.star-4  { top: 22%; left: 88%; --dur: 5s; animation-delay: 0.3s; }
.star-5  { top: 35%; left: 5%;  --dur: 4s; animation-delay: 1.5s; }
.star-6  { top: 40%; left: 30%; --dur: 3.8s; animation-delay: 0.8s; width: 1px; height: 1px; }
.star-7  { top: 45%; left: 65%; --dur: 4.2s; animation-delay: 2s; }
.star-8  { top: 55%; left: 18%; --dur: 3.5s; animation-delay: 0.2s; }
.star-9  { top: 60%; left: 50%; --dur: 5.5s; animation-delay: 1.2s; width: 3px; height: 3px; }
.star-10 { top: 65%; left: 82%; --dur: 3.1s; animation-delay: 0.7s; }
.star-11 { top: 72%; left: 8%;  --dur: 4.8s; animation-delay: 1.8s; }
.star-12 { top: 78%; left: 40%; --dur: 3.6s; animation-delay: 0.4s; width: 1px; height: 1px; }
.star-13 { top: 85%; left: 70%; --dur: 4.1s; animation-delay: 1.1s; }
.star-14 { top: 90%; left: 25%; --dur: 5.2s; animation-delay: 0.6s; }
.star-15 { top: 95%; left: 55%; --dur: 3.3s; animation-delay: 2.2s; }
.star-16 { top: 12%; left: 32%; --dur: 4.7s; animation-delay: 1.4s; width: 1px; height: 1px; }
.star-17 { top: 28%; left: 60%; --dur: 3.9s; animation-delay: 0.9s; }
.star-18 { top: 33%; left: 92%; --dur: 5.1s; animation-delay: 1.7s; width: 3px; height: 3px; }
.star-19 { top: 48%; left: 42%; --dur: 3.4s; animation-delay: 0.1s; }
.star-20 { top: 52%; left: 75%; --dur: 4.4s; animation-delay: 2.5s; }
.star-21 { top: 18%; left: 55%; --dur: 3.7s; animation-delay: 1.3s; width: 1px; height: 1px; }
.star-22 { top: 38%; left: 15%; --dur: 4.9s; animation-delay: 0.6s; }
.star-23 { top: 68%; left: 35%; --dur: 3.0s; animation-delay: 2.1s; width: 3px; height: 3px; }
.star-24 { top: 75%; left: 60%; --dur: 5.3s; animation-delay: 0.3s; }
.star-25 { top: 82%; left: 90%; --dur: 3.8s; animation-delay: 1.6s; }
.star-26 { top: 3%;  left: 95%; --dur: 4.3s; animation-delay: 0.9s; width: 1px; height: 1px; }
.star-27 { top: 42%; left: 85%; --dur: 3.6s; animation-delay: 2.3s; }
.star-28 { top: 58%; left: 3%;  --dur: 5.0s; animation-delay: 0.5s; }
.star-29 { top: 88%; left: 48%; --dur: 3.2s; animation-delay: 1.9s; width: 1px; height: 1px; }
.star-30 { top: 25%; left: 72%; --dur: 4.6s; animation-delay: 0.2s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.15; }
    50%      { opacity: 0.9; }
}

/* ===========================
   CARD
   =========================== */
.container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    z-index: 1;
}

.card {
    text-align: center;
    padding: 2rem;
    max-width: 480px;
}

.name {
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #f0ede8;
    line-height: 1.2;
}

.alias {
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #7a6b8a;
    margin-top: 0.5rem;
    font-weight: 500;
}

.tagline {
    margin-top: 1.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #9a958d;
    font-weight: 300;
}

.tagline a {
    color: #c4b5d4;
    text-decoration: none;
    border-bottom: 1px solid rgba(196, 181, 212, 0.3);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.tagline a:hover {
    color: #e0d4ee;
    border-color: rgba(196, 181, 212, 0.7);
}

.links {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.link-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #b0aaa2;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    padding: 0.55rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    transition: all 0.3s ease;
    min-width: 240px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
}

.link-item:hover {
    color: #e0ddd8;
    border-color: rgba(196, 181, 212, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.link-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.7;
}

.link-item:hover svg {
    opacity: 1;
}

/* ===========================
   SMALL SCREENS
   =========================== */
@media (max-width: 520px) {
    .name {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .link-item {
        min-width: 200px;
        font-size: 0.85rem;
    }
}
