@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

:root {
    --bg-color: #050505;
    --text-color: #dcdcdc;
    --accent: #ffffff;
    --danger: #ff0000;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Special Elite', monospace;
    text-shadow: 0 0 2px rgba(200, 200, 200, 0.3);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.noise-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.08;
    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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    animation: noise-animation 0.2s steps(1) infinite;
}

@keyframes noise-animation {
    0% { transform: translate(0,0); }
    10% { transform: translate(-5%,-5%); }
    20% { transform: translate(-10%,5%); }
    30% { transform: translate(5%,-10%); }
    40% { transform: translate(-5%,15%); }
    50% { transform: translate(-10%,5%); }
    60% { transform: translate(15%,0); }
    70% { transform: translate(0,10%); }
    80% { transform: translate(-15%,0); }
    90% { transform: translate(10%,5%); }
    100% { transform: translate(5%,0); }
}

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

.container {
    width: 90%;
    max-width: 500px;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

h1 {
    font-size: 42px;
    text-align: center;
    border: 4px solid var(--text-color);
    padding: 15px;
    margin-bottom: 40px;
    text-transform: uppercase;
    background: #000;
    box-shadow: 10px 10px 0 #222;
    mix-blend-mode: exclusion;
    letter-spacing: 6px;
}

.bio-box {
    background: #111;
    border: 4px double #333;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 5px 5px 0px #222;
}

.link-btn {
    display: block;
    background: #000;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.2s;
    position: relative;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    border-radius: 0;
}

.link-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.02);
}

.insta-danger {
    position: relative;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.insta-danger:hover {
    background: linear-gradient(90deg, #000 0%, #800 25%, #f00 50%, #800 75%, #000 100%);
    background-size: 200% 100%;
    color: #fff !important;
    border-color: #f00 !important;
    animation: blood-flow 2s linear infinite;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    text-shadow: 0 0 5px #f00;
}

@keyframes blood-flow {
    0% { background-position: 0% 0; }
    100% { background-position: -200% 0; }
}

.insta-danger::after {
    content: "WARNING : DANGEROUS_SOCIAL_NETWORK";
    display: block;
    font-family: 'VT323', monospace;
    font-size: 14px;
    color: #f00;
    text-shadow: none;
    letter-spacing: 1px;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin-top 0.3s ease-out;
}

.insta-danger:hover::after {
    max-height: 40px;
    opacity: 1;
    margin-top: 10px;
}

.footer {
    font-family: 'VT323', monospace;
    color: #555;
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 14px;
}

.viewport {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.world-container {
    display: flex;
    width: 200vw;
    height: 100vh;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    position: relative;
}

.slide-active {
    transform: translateX(-100vw);
}

.disco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 80%;
    max-width: 900px;
    margin-top: 50px;
    padding-bottom: 100px;
}

.album-card {
    border: 2px solid #333;
    background: #0a0a0a;
    padding: 15px;
    transition: 0.2s;
}

.album-card:hover {
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 5px 5px 0px #333;
}

.album-img {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #222;
    margin-bottom: 15px;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 10px;
}

.album-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.album-desc {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Special Elite', monospace;
    z-index: 100;
}
.back-btn:hover { background: #fff; color: #000; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #000; border-left: 1px solid #333; }
::-webkit-scrollbar-thumb { background: #444; border: 1px solid #000; }
::-webkit-scrollbar-thumb:hover { background: #fff; }

.back-link {
    position: absolute; top: 20px; left: 20px;
    color: #555; text-decoration: none; z-index: 100;
}

.vignette {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    box-shadow: inset 0 0 150px rgba(0,0,0,1);
    pointer-events: none;
    z-index: 900;
}

.jumpscare-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 99999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    border: none;
}

.jumpscare-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    color: transparent;
}