/* --- SILV'S NEON PINK & BLACK NEOCITIES LAYOUT --- */

:root {
    --neon-pink: #ff007f;
    --dark-bg: #000000;
    --card-bg: #000000;
    --text-color: #ffffff;
    --border-style: 10px groove #ff007f;
}

/* Global Background and Typography */
body {
    background-color: #000000;
    background-image: url("https://i.redd.it/is-there-a-name-for-this-type-of-visual-i-notice-it-was-v0-zvriuxv1dbq91.jpg?width=1024&format=pjpg&auto=webp&s=4059e719a30ac508133a5e63657e6801432f768b");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-color);
    font-family: "Courier New", Courier, monospace;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    cursor: url("cursor4.png"), auto;
}

a, button, input[type="submit"], [role="button"] {
  cursor: url('cursorhand2.png'), pointer;
}

.box, header, .marquee-wrapper {
  background-color: rgba(0, 0, 0, 0);
  
}

::selection {
  background-color:#ff007f;
  color:#000000;

}

::moz-selection {
  background-color:#ff007f;
  color:#000000;

}

/* Core Layout Wrapper */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    background-color: var(--card-bg);
    border: var(--border-style);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 5px 5px 0px #000000;
}

/* Layout Columns */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

/* Content Boxes */
.box {
    background-color: var(--card-bg);
    border: var(--border-style);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 5px 5px 0px #000000;
}

/* Headers and Links */
h1, h2, h3 {
    color: var(--neon-pink);
    text-shadow: 2px 2px #000000;
    text-transform: lowercase;
    margin-top: 0;
}

a {
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
    background: var(--neon-pink);
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.quote {
    color: #ffffff;
}

/* Authentic 2000s Blink Effect */
.blink {
    animation: blinker 1.5s linear infinite;
    color: var(--neon-pink);
    font-weight: bold;
}

@keyframes blinker {
    50% { opacity: 0; }
}

/* CURSOR SPARKLE STYLING */
.star-sparkle {
    position: absolute;
    pointer-events: none; /* Keeps the sparkles from blocking mouse clicks */
    background: var(--neon-pink);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    box-shadow: 0 0 8px var(--neon-pink);
    transform: translate(-50%, -50%);
    animation: fallAndFade 1s linear forwards;
}

@keyframes fallAndFade {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, calc(-50% + 50px)) scale(0) rotate(180deg);
        /* --- BLINKIES & RETRO BUTTONS STYLING --- */

}}.blinkies-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: #000000;
    padding: 10px;
    border: 1px dashed var(--neon-pink);
    border-radius: 4px;
}

}.blinkies-container img {
    max-width: 150px; /* Keeps traditional blinkie size */
    image-rendering: optimizespeed; /* Keeps that crisp, retro look */
}

.web-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 5px;
}

.web-buttons img {
    width: 88px;
    height: 31px;
}

.marquee-wrapper {
    background: rgba(0, 0, 0, 0);
    border: 0;
    border-radius: 0;
    padding: 5px;
    margin-bottom: 5px;
    color: var(--neon-pink);
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

/* --- GUESTBOOK & COMMENTS STYLING --- */
.guestbook-section {
    margin-top: 20px;
}

.guestbook-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.guestbook-form input, 
.guestbook-form textarea {
    background: #000000;
    border: 1px solid var(--neon-pink);
    color: #ffffff;
    font-family: "Courier New", Courier, monospace;
    padding: 8px;
    border-radius: 4px;
}

.guestbook-form input:focus, 
.guestbook-form textarea:focus {
    outline: 2px solid var(--neon-pink);
}

.guestbook-form button {
    background: var(--neon-pink);
    color: #000000;
    border: none;
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    text-transform: lowercase;
    transition: 0.2s ease;
}

.guestbook-form button:hover {
    background: #ffffff;
    box-shadow: 0 0 10px var(--neon-pink);
}

.neon-divider {
    border: 0;
    border-top: 1px dashed var(--neon-pink);
    margin: 20px 0;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment {
    background: #000000;
    border-left: 4px solid var(--neon-pink);
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
}

.comment-meta {
    margin: 0 0 5px 0;
    color: var(--neon-pink);
    font-size: 13px;
}

.comment-text {
    margin: 0;
    font-size: 14px;
}

        opacity: 0;
    }
}
