html, body, * {
    cursor: url('cursor.cur'), auto;
}

.center-wrapper {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.container {
    pointer-events: auto;
    margin: 0;
    top: unset;
    left: unset;
    transform: none;
}
.links a {
    display: inline-block;
    margin: 0 8px;
    color: #fff;
    background: none;
    border: none;
    padding: 0;
    border-radius: 50%;
    transition: filter 0.2s, box-shadow 0.2s, transform 0.2s;
    font-size: 0;
    outline: none;
    box-shadow: none;
    vertical-align: middle;
}
.links a img {
    display: block;
    width: 32px;
    height: 32px;
    transition: filter 0.2s, box-shadow 0.2s, transform 0.2s;
    filter: brightness(0) saturate(100%) invert(1);
}
.links a:hover img {
    transform: scale(1.2);
    filter: brightness(0) saturate(100%) drop-shadow(0 0 12px #d40000) drop-shadow(0 0 8px #fff);
}
.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    transition: filter 0.2s, box-shadow 0.2s, transform 0.2s;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.667));
}
.profile-pic:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 16px #d40000) drop-shadow(0 0 8px #fff);
}


* {
    font-family: 'Quicksand', Arial, sans-serif;
    font-weight: 700;
    box-sizing: border-box;
}

#vanta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}


.container {
    max-width: 400px;
    background: rgba(10, 10, 20, 0.82);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.32);
    padding: 32px;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    backdrop-filter: blur(2px);
}

#overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#enter-popup {
    background: none;
    border: none;
    color: #fff;
    font-size: 2em;
    font-family: 'Quicksand', Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    margin-top: 2em;
    text-shadow: 0 0 8px #ff0000, 0 0 2px #fff;
    transition: text-shadow 0.2s, filter 0.2s;
    filter: brightness(1);
    outline: none;
    box-shadow: none;
    padding: 0;
}
#enter-popup:hover {
    text-shadow: 0 0 16px #ff0000, 0 0 8px #fff;
    filter: brightness(1.2);
}
#enter-popup.clicked {
    text-shadow: 0 0 32px #fff, 0 0 24px #d40000, 0 0 8px #fff;
    filter: brightness(1.5);
}

h1 {
    margin: 0 0 8px 0;
    color: #ffffff;
    font-size: 2em;
}
h2 {
    margin: 0 0 16px 0;
    color: #d1d1d1;
    font-weight: 400;
}
.bio {
    color: #d8d8d8;
    margin-bottom: 24px;
}
.links a {
    display: inline-block;
    margin: 0 8px;
    color: #ffffff;
    background: none;
    border: none;
    padding: 0;
    border-radius: 50%;
    transition: filter 0.2s, box-shadow 0.2s;
    font-size: 0;
    outline: none;
    box-shadow: none;
    vertical-align: middle;
}
.links a svg {
    display: block;
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.667)) drop-shadow(0 0 2px #ffffffaa);
    transition: filter 0.2s;
    fill: #fff;
    color: #fff;
}
.links a:hover svg {
    filter: drop-shadow(0 0 8px #ffffff) drop-shadow(0 0 4px #ffffff);
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
}
.link-text a {
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s, text-shadow 0.2s;
    text-shadow:
        0 0 4px #ff7b7b,
        0 0 8px #ff7b7b,
        0 0 12px #222,
        2px 2px 0 #222,
        -2px -2px 0 #222,
        2px -2px 0 #222,
        -2px 2px 0 #222;
    padding: 2px 10px;
    border-radius: 6px;
    outline: none;
}
.link-text a:hover,
.link-text a:focus {
    color: #ff0000;
    text-shadow:
        0 0 10px #fff,
        0 0 18px #d40000,
        2px 2px 0 #222,
        -2px -2px 0 #222,
        2px -2px 0 #222,
        -2px 2px 0 #222;
}

.section-label {
    color: #ff7b7b;
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.3em;
    margin-top: 1em;
    text-shadow: 0 2px 8px #222;
    text-align: center;
}