@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;700;900&display=swap');

:root {
    --bg-color: #050505;
    --text-main: #fff;
    --accent: #ff0055;
    --accent-blue: #00f0ff;
    --accent-yellow: #ffea00;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Systems */
.background-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.3) contrast(1.2);
}

/* Base fixed background */
.bg-main {
    position: fixed;
    background-image: url('assets/backgrounds/hf_20260324_234320_3cd11aa9-3c04-4529-9c04-2d4e5cff4d9e.jpeg');
    z-index: -3;
}

/* Section specific background */
.bg-lore {
    background-image: url('assets/backgrounds/hf_20260324_234328_63e6db63-7f59-44c9-aa45-4969ad364d61.jpeg');
    filter: brightness(0.4) saturate(1.5);
    opacity: 0.8;
}

.bg-vram {
    background-image: url('assets/backgrounds/hf_20260324_234328_63e6db63-7f59-44c9-aa45-4969ad364d61.jpeg');
    filter: brightness(0.5) contrast(1.2);
    opacity: 0.6;
}

/* VHS Overlays */
.vhs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-linear-gradient(
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.2) 3px,
        rgba(0, 0, 0, 0.2) 6px
    );
    z-index: 100;
    pointer-events: none;
    opacity: 0.3;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    z-index: 101;
    pointer-events: none;
    opacity: 0.5;
}

/* Sticker System */
.sticker {
    position: absolute;
    pointer-events: auto;
    filter: drop-shadow(8px 8px 0px rgba(0,0,0,1));
    will-change: transform;
    z-index: 90;
    cursor: pointer;
    transition: filter 0.2s;
}

.sticker:hover {
    filter: drop-shadow(15px 15px 0px rgba(255,0,85,1));
    z-index: 99;
}

/* Layout Elements */
main {
    position: relative;
    z-index: 10;
}

section {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 0;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--accent);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    object-fit: cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 1000px;
    padding: 20px;
}

.hero-logo {
    max-width: 450px;
    width: 90%;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.4));
    margin-bottom: 10px;
    animation: float-logo 4s ease-in-out infinite;
}

@keyframes float-logo {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.title-slop {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 5.5vw, 6rem);
    line-height: 1.1;
    color: var(--accent-yellow);
    text-shadow: 5px 5px 0px #000, -2px -2px 0px var(--accent);
    text-transform: uppercase;
    margin: 0;
    padding: 0 10px;
    white-space: nowrap;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent);
    color: #fff;
    padding: 10px 20px;
    border: 3px solid #000;
    box-shadow: 5px 5px 0px #000;
    margin-top: 10px;
    transform: rotate(1deg);
}

/* CA Section */
.ca-container {
    display: flex;
    align-items: center;
    background: #000;
    border: 4px solid var(--accent-blue);
    padding: 15px;
    margin: 30px 0;
    box-shadow: 8px 8px 0px var(--accent-blue);
    max-width: 100%;
    overflow-wrap: break-word;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    z-index: 100;
}

.ca-label {
    font-weight: 900;
    color: var(--accent-blue);
    font-size: 1.5rem;
}

.ca-address {
    font-family: monospace;
    font-size: 1.3rem;
    word-break: break-all;
}

.copy-btn {
    background: var(--accent-blue);
    color: #000;
    border: 2px solid #000;
    padding: 10px 20px;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.1s;
    box-shadow: 3px 3px 0px #000;
}

.copy-btn:active {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px 0px #000;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    z-index: 100;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    border: 3px solid #000;
    box-shadow: 5px 5px 0px #000;
    transition: all 0.1s;
    letter-spacing: 1px;
}

.btn:active {
    transform: translate(5px, 5px);
    box-shadow: 0px 0px 0px #000;
}

.btn-buy {
    background: var(--accent);
    color: #fff;
}

.btn-buy:hover {
    background: #ff3377;
}

.btn-social {
    background: #fff;
    color: #000;
}

.btn-social:hover {
    background: #e0e0e0;
}

.large {
    font-size: 3rem;
    padding: 20px 60px;
}

/* Typography & Titles */
.section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 30px;
    color: var(--text-main);
    text-shadow: 4px 4px 0px var(--accent);
    letter-spacing: 2px;
}

/* Lore Section */
.slop-lore {
    color: #fff;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    min-height: 60vh;
    justify-content: center;
}

.lore-content {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.7);
    padding: 50px;
    border: 4px solid var(--accent-blue);
    box-shadow: 10px 10px 0px #000;
    max-width: 900px;
}

.lore-text {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.6;
    text-shadow: 2px 2px 0px #000;
}

.lore-text p {
    margin-bottom: 20px;
}

/* Transmission Section */
.transmission-section {
    background: rgba(10,0,5,0.9);
    min-height: 80vh;
}

.transmission-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 10;
}

.transmission-item {
    flex: 1;
    min-width: 350px;
    background: #000;
    padding: 20px;
    border: 5px solid var(--accent);
    box-shadow: 12px 12px 0px #000;
    position: relative;
    transform: rotate(calc(var(--rot, 0) * 1deg));
}

.transmission-item:nth-child(1) { --rot: -2; }
.transmission-item:nth-child(2) { --rot: 2; }

.transmission-item video {
    width: 100%;
    display: block;
    border: 3px solid #333;
}

.slop-label {
    font-family: monospace;
    color: #fff;
    margin-top: 15px;
    font-size: 1.4rem;
    background: #222;
    padding: 8px 15px;
    display: inline-block;
    border: 1px solid #444;
}

/* CTA Section */
.cta-section {
    background: var(--accent-yellow);
    color: #000;
    min-height: 50vh;
    justify-content: center;
    border-top: 5px solid #000;
}

.cta-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 40px;
    text-shadow: 4px 4px 0px #fff;
}

@media (max-width: 900px) {
    .ca-container { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .hero-logo { width: 90%; }
    .lore-text { font-size: 1.4rem; }
    .lore-content { padding: 30px 15px; }
}