body {
    font-family: 'Hanken Grotesk', sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-size: 16px;
    font-style: normal;
    color: lavender;
    background: radial-gradient(circle at top, #1a1b3a, #0b0b16 80%);
    overflow-x: hidden;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

/* * {
    border: 1px dotted red;
} */

header {
    display: flex;
    flex-direction: column;
}

.social-hshot {
    width: 250px;
    /* min-width: 100%; */
    height: auto;
    align-self: center;
    border-left: 8px solid black;
    border-right: 8px solid black;
    margin-top: 36px;

}

h1 {
    margin: 8px 0;
    text-align: center;
    font-weight: 200;
    font-size: 73px;
}

h2 {
    font-family: 'Xanh Mono', monospace;
    font-weight: 200;
    font-size: 30px;
    text-align: left;
    margin: 10px 0 8px 15px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

ul {
    list-style: none;
    padding: 0;

}

li {
    /* list-style-type: "+"; */
    text-align: right;
}

a {
    text-decoration: none;
    color: lavender;
    font-size: 30px;
    font-weight: 100;
    /* justify-content: right; */
}

.social-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 500px;
    margin: auto;
}

.social-nav ul li {
    margin: 10px;
    padding: 20px;
    border: 2px dotted hotpink; /* #FF69B4 */
    border-radius: 10px;
    /* Mobile-friendly touch targets - minimum 44px height */
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Visual depth and clickability cues */
    background: rgba(255, 105, 180, 0.05);
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;
    /* Make it feel more button-like */
    position: relative;
    overflow: hidden;
}

/* Hover state for desktop */
.social-nav ul li:hover {
    background: rgba(255, 105, 180, 0.15);
    border-color: hotpink;
    border-style: solid;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

/* Active/pressed state for mobile touch feedback */
.social-nav ul li:active {
    transform: translateY(0px) scale(0.98);
    background: rgba(255, 105, 180, 0.25);
    box-shadow: 0 1px 4px rgba(255, 105, 180, 0.2);
}

/* Link styling improvements */
.social-nav ul li a {
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

/* Subtle glow effect on links */
.social-nav ul li:hover a {
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
    color: #ffb3d9; /* Lighter lavender for better visibility */
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    .social-nav ul li {
        margin: 12px 16px;
        padding: 18px 24px;
        /* Larger touch targets on mobile */
        min-height: 56px;
    }
    
    .social-nav ul li a {
        font-size: 24px;
    }
    
    /* Better spacing between links on mobile */
    .social-nav ul {
        width: 100%;
        max-width: 100%;
    }
}

/* .xanh-mono-regular {
    font-family: "Xanh Mono", monospace;
    font-weight: 400;
    font-style: normal;
}
  
.xanh-mono-regular-italic {
    font-family: "Xanh Mono", monospace;
    font-weight: 400;
    font-style: italic;
} */
  

/* .hanken-grotesk-<uniquifier> {
    font-family: "Hanken Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  } */

.stars {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.stars span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation:
        twinkle 2s infinite ease-in-out alternate,
        driftUp 12s infinite linear;
}

/* simple twinkle */
@keyframes twinkle {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.8); }
}

@keyframes driftUp {
    0%   { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1); }
}

/* Subtle pulse animation to draw attention to links */
@keyframes subtlePulse {
    0%, 100% { 
        box-shadow: 0 2px 8px rgba(255, 105, 180, 0.1);
    }
    50% { 
        box-shadow: 0 2px 12px rgba(255, 105, 180, 0.2);
    }
}

/* Apply pulse animation on mobile for first few seconds */
@media (max-width: 768px) {
    .social-nav ul li {
        animation: subtlePulse 3s ease-in-out 2;
    }
}

footer {
    margin-bottom: 400px;
    font-size: 14px;
    font-weight: 200;
    align-self: center;
}

footer p a {
    font-size: 14px;
    font-weight: 200;
}