/* === NEEDY GIRL OVERDOSE STYLE === */
body {
    background-color: #0a0a14;
    font-family: 'Courier New', monospace;
    color: #ff66b2;
    margin: 0;
    padding: 20px;
    overflow-x: hidden;
}

/* GLITCH TITLE EFFECT (≧∇≦)ﾉ */
.glitch-container {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.glitch {
    font-size: 4rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    color: #ff66b2;
    text-shadow: 3px 3px 0 #6df7d2, -3px -3px 0 #6df7d2;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: #6df7d2;
    animation: glitch-effect 3s infinite;
}

.glitch::after {
    color: #9d7cff;
    animation: glitch-effect 2s infinite reverse;
}

.glow {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 10px #ff66b2, 0 0 20px #ff66b2;
    animation: pulse 1.5s infinite alternate;
}

/* PHOTO CARDS GRID (。-`ω´-) */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    position: relative;
    border: 2px solid #ff66b2;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #ff66b2;
}

.card img {
    width: 100%;
    display: block;
    filter: grayscale(30%);
    transition: filter 0.3s;
}

.card:hover img {
    filter: grayscale(0%);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover .card-overlay {
    opacity: 1;
}

.card-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    background: #ff66b2;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background 0.3s;
}

.card-link:hover {
    background: #9d7cff;
}

/* FOOTER ٩(◕‿◕｡)۶ */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 10px;
    font-size: 0.8rem;
}

.pink {
    color: #ff66b2;
}

/* ANIMATIONS ┗|｀O′|┛ */
@keyframes glitch-effect {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

@keyframes pulse {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

/* CRT SCANLINES (optional!) */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%,
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
}
