/* Global Styles */
body {
    background-color: black;
    color: red;
    font-family: 'Courier New', Courier, monospace; /* "Hacker" / "Edgy" vibe */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a {
    color: red;
    text-decoration: none;
    transition: text-shadow 0.3s ease;
}

a:hover {
    text-shadow: 0 0 10px red;
    cursor: pointer;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    border-bottom: 1px solid red;
    background-color: rgba(20, 0, 0, 0.8);
}

nav a {
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 1s ease;
}

#overlay-content {
    text-align: center;
    animation: pulse 2s infinite;
}

#overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

#overlay p {
    font-size: 1.2rem;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Main Content */
main {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid red;
    display: inline-block;
    padding-bottom: 0.5rem;
}

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

li {
    margin: 1rem 0;
}

.user-link {
    font-size: 1.5rem;
    display: block;
    padding: 1rem;
    border: 1px solid red;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.user-link:hover {
    background-color: rgba(255, 0, 0, 0.1);
}

/* Profile Picture Styles */
.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid red;
    box-shadow: 0 0 15px red;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.rank {
    font-size: 1.2rem;
    color: red;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: -1.5rem; /* Pull it closer to the name */
    margin-bottom: 2rem;
    text-shadow: 0 0 5px red;
}

/* Clips Section */
#clips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.clip-placeholder {
    border: 1px solid red;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    background: rgba(50, 0, 0, 0.2);
}

@keyframes pulse {
    0% { opacity: 0.8; text-shadow: 0 0 5px red; }
    50% { opacity: 1; text-shadow: 0 0 20px red; }
    100% { opacity: 0.8; text-shadow: 0 0 5px red; }
}
