:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-pink: #ff7eb3;
    --accent-dark-pink: #ff00ff;
    --accent-blood: #8a0303;
    --accent-cyan: #00ffff;
    --font-mono: 'Courier Prime', monospace;
    --font-pixel: 'VT323', monospace;
    --font-hand: 'Zen Kurenaido', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: crosshair;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-mono);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Effects */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0) 50%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.2));
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 10;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9;
    opacity: 0.4;
}

.container {
    width: 90%;
    max-width: 600px;
    border: 1px solid var(--accent-pink);
    padding: 20px;
    box-shadow: 0 0 15px var(--accent-pink), inset 0 0 20px rgba(255, 0, 255, 0.1);
    background: rgba(10, 10, 10, 0.8);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(2px);
}

/* Header */
header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px dashed var(--accent-pink);
    padding-bottom: 15px;
}

h1.glitch {
    font-family: var(--font-pixel);
    font-size: 4rem;
    color: var(--accent-pink);
    position: relative;
    text-shadow: 2px 2px var(--accent-cyan);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

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

h1.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--accent-blood);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

h1.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--accent-cyan);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

.status-bar {
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: var(--accent-cyan);
}

.blink {
    animation: blink 1s infinite;
}

/* Content */
.card {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #333;
    background: rgba(0, 0, 0, 0.5);
}

h2 {
    font-family: var(--font-hand);
    font-size: 2rem;
    color: var(--accent-pink);
    margin-bottom: 10px;
    text-align: center;
}

.profile-pic-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border: 2px solid var(--accent-pink);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.ghost {
    position: relative;
    width: 60px;
    height: 70px;
    background: #fff;
    border-radius: 30px 30px 0 0;
    animation: float 3s ease-in-out infinite;
}

.ghost .eyes {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
}

.ghost .eye {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}

.ghost .mouth {
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    margin: 5px auto;
}

.bio p {
    margin-bottom: 8px;
    line-height: 1.4;
    text-align: center;
}

.highlight {
    color: var(--accent-pink);
    font-weight: bold;
}

.scary-text {
    font-family: var(--font-hand);
    color: var(--accent-blood);
    font-size: 1.2rem;
    transform: rotate(-1deg);
}

.interest-list {
    list-style: none;
    padding-left: 20px;
}

.interest-list li {
    margin-bottom: 5px;
    font-family: var(--font-pixel);
    font-size: 1.2rem;
}

.interest-list li:hover {
    color: var(--accent-pink);
    text-decoration: line-through;
}

.bullet {
    color: var(--accent-cyan);
    margin-right: 10px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
    border-top: 1px dashed var(--accent-pink);
    padding-top: 15px;
}

.heart {
    color: var(--accent-pink);
}

.blood {
    color: var(--accent-blood);
    font-weight: bold;
}

.links {
    margin-top: 10px;
}

.btn {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    text-decoration: none;
    font-family: var(--font-pixel);
    transition: all 0.3s;
}

.btn:hover {
    background: var(--accent-pink);
    color: #000;
    box-shadow: 0 0 10px var(--accent-pink);
}

/* Animations */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glitch-anim {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(10px, 9999px, 30px, 0);
    }

    20% {
        clip: rect(80px, 9999px, 100px, 0);
    }

    40% {
        clip: rect(40px, 9999px, 60px, 0);
    }

    60% {
        clip: rect(120px, 9999px, 140px, 0);
    }

    80% {
        clip: rect(20px, 9999px, 50px, 0);
    }

    100% {
        clip: rect(90px, 9999px, 110px, 0);
    }
}

/* Floating elements container */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-item {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.5;
    animation: floatUp 10s linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* 3D Cube */
.cube-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    perspective: 600px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.scene {
    width: 100px;
    height: 100px;
    perspective: 600px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(-50px);
    transition: transform 0.1s;
}

.cube__face {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent-pink);
    line-height: 100px;
    font-size: 20px;
    font-weight: bold;
    color: var(--accent-cyan);
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    font-family: var(--font-pixel);
    box-shadow: 0 0 10px var(--accent-pink) inset;
}

.cube__face--front {
    transform: rotateY(0deg) translateZ(50px);
}

.cube__face--right {
    transform: rotateY(90deg) translateZ(50px);
}

.cube__face--back {
    transform: rotateY(180deg) translateZ(50px);
}

.cube__face--left {
    transform: rotateY(-90deg) translateZ(50px);
}

.cube__face--top {
    transform: rotateX(90deg) translateZ(50px);
}

.cube__face--bottom {
    transform: rotateX(-90deg) translateZ(50px);
}

/* Pixel Art Enhancement */
* {
    image-rendering: pixelated;
}

body {
    background-color: #000;
    /* Darker black */
}

.container {
    border-width: 2px;
    border-style: dashed;
    /* Lesbian Flag Gradient Border */
    border-image: linear-gradient(to bottom, #d52d00, #ef7627, #ff9a56, #ffffff, #d162a4, #b55690, #a30262) 1;
}

/* Marquee */
.marquee-container {
    background: #000;
    border: 1px solid var(--accent-pink);
    color: var(--accent-cyan);
    font-family: var(--font-pixel);
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding: 5px;
}

/* Shrine Grid */
.shrine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.shrine-item {
    border: 1px solid #333;
    padding: 5px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.shrine-img {
    max-width: 100%;
    height: auto;
    image-rendering: pixelated;
    margin-bottom: 5px;
}

.placeholder-gif {
    height: 80px;
    border: 1px dashed var(--accent-blood);
    color: var(--accent-blood);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Banners */
.banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
}

.banners img {
    width: 88px;
    height: 31px;
    image-rendering: pixelated;
    border: 1px solid #fff;
}

.custom-banner {
    width: 88px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-pixel);
    font-size: 12px;
    border: 1px solid #fff;
}

.lesbian-banner {
    background: linear-gradient(to bottom, #d52d00, #ef7627, #ff9a56, #ffffff, #d162a4, #b55690, #a30262);
    color: #fff;
    text-shadow: 1px 1px 0 #000;
}