/* ORBITRUSH - Dark Aggressive Affiliate Marketing */

:root {
    --black: #000000;
    --white: #FFFFFF;
    --red: #FF0000;
    --dark-red: #CC0000;
    --grey: #1A1A1A;
    --light-grey: #808080;
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

html {
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

/* Custom Cursor */
.custom-cursor {
    width: 10px;
    height: 10px;
    background: var(--red);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid var(--red);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 0.5;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader-text {
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    animation: pulse 1s infinite;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--grey);
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--red);
    animation: load 2s ease-out forwards;
}

.loader-percent {
    margin-top: 20px;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
}

@keyframes load {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 40px;
    mix-blend-mode: difference;
}

@media (max-width: 480px) {
    .nav {
        padding: 15px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .nav-status {
        display: none;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
}

.accent {
    color: var(--red);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 2px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.menu-trigger {
    width: 40px;
    height: 40px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.menu-trigger span {
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
}

.menu-trigger span:first-child {
    top: 14px;
}

.menu-trigger span:last-child {
    bottom: 14px;
}

.menu-trigger.active span:first-child {
    transform: translateX(-50%) rotate(45deg);
    top: 19px;
}

.menu-trigger.active span:last-child {
    transform: translateX(-50%) rotate(-45deg);
    bottom: 19px;
}

/* Full Menu */
.full-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.full-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-link {
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -3px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.menu-link::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--red);
    overflow: hidden;
    width: 0;
    transition: width 0.3s ease;
}

.menu-link:hover::after {
    width: 100%;
}

.menu-footer {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.menu-social {
    display: flex;
    gap: 30px;
}

.menu-social a {
    color: var(--light-grey);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.menu-social a:hover {
    color: var(--red);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background Effects */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.noise-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,0,0,0.03) 2px, rgba(255,0,0,0.03) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255,0,0,0.02) 2px, rgba(255,0,0,0.02) 4px);
    animation: noiseShift 8s linear infinite;
}

@keyframes noiseShift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-5px, 5px); }
    50% { transform: translate(5px, -5px); }
    75% { transform: translate(-5px, -5px); }
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,0,0,0.5), transparent);
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% { top: -2px; }
    100% { top: 100%; }
}

#particleCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.energy-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.grid-line {
    position: absolute;
    background: var(--red);
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
    top: 0;
}

.grid-line.vertical:nth-child(1) { left: 20%; }
.grid-line.vertical:nth-child(2) { left: 50%; }
.grid-line.vertical:nth-child(3) { left: 80%; }

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    left: 0;
}

.grid-line.horizontal:nth-child(4) { top: 30%; }
.grid-line.horizontal:nth-child(5) { top: 70%; }

/* Hero Content */
.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--light-grey);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

/* Glitch Effects */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.3s infinite;
    color: var(--red);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.3s infinite;
    color: var(--white);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(40% 0 20% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(60% 0 10% 0); transform: translate(-1px, 1px); }
    80% { clip-path: inset(80% 0 0 0); transform: translate(1px, -1px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(100% 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 20% 0); transform: translate(2px, -1px); }
    40% { clip-path: inset(20% 0 40% 0); transform: translate(-2px, 1px); }
    60% { clip-path: inset(10% 0 60% 0); transform: translate(1px, -2px); }
    80% { clip-path: inset(0 0 80% 0); transform: translate(-1px, 2px); }
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    16% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

.glitch-heavy::before,
.glitch-heavy::after {
    animation-duration: 0.2s;
    animation-iteration-count: infinite;
}

/* Hero Title */
.hero-title {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -5px;
    margin-bottom: 40px;
}

.hero-title .line {
    display: block;
    overflow: visible;
    position: relative;
}

.hero-title .word {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-title .line:hover .word:nth-child(1) {
    transform: translateX(-10px) rotateZ(-2deg);
}

.hero-title .line:hover .word:nth-child(2) {
    transform: translateX(10px) rotateZ(2deg);
}

.distort {
    transition: all 0.3s ease;
}

.distort:hover {
    transform: skewX(-5deg);
    filter: blur(0.5px);
}

.accent-line {
    color: var(--red);
    position: relative;
    text-shadow: 0 0 20px rgba(255,0,0,0.5);
}

/* Enhanced Stats */
.hero-stats {
    display: flex;
    gap: 80px;
    justify-content: center;
    margin: 60px 0;
}

.pulse-stat {
    position: relative;
    text-align: left;
    padding: 20px;
}

.stat-bg {
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,0,0,0.05), transparent);
    transform: skewX(-10deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pulse-stat:hover .stat-bg {
    opacity: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -2px;
    display: block;
    text-shadow: 0 0 30px rgba(255,0,0,0.3);
}

.stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--light-grey);
    margin-top: 5px;
    display: block;
}

.stat-label .slash {
    color: var(--red);
    font-weight: bold;
}

.stat-label .blood {
    color: var(--dark-red);
    font-weight: bold;
}

.stat-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 1px solid var(--red);
    border-radius: 50%;
    opacity: 0;
    animation: statPulse 2s ease-out infinite;
}

@keyframes statPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Hero CTA */
.hero-cta {
    margin-top: 60px;
}

.massacre-btn {
    background: transparent;
    border: 2px solid var(--red);
    color: var(--white);
    padding: 20px 40px;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 900;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.massacre-btn:hover {
    color: var(--black);
    transform: scale(1.05);
}

.massacre-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--red);
    transition: left 0.3s ease;
    z-index: -1;
}

.massacre-btn:hover::before {
    left: 0;
}

.btn-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, var(--red), transparent);
    opacity: 0;
    pointer-events: none;
}

.massacre-btn:hover .btn-glitch {
    animation: btnGlitch 0.3s ease;
}

@keyframes btnGlitch {
    0%, 100% { opacity: 0; transform: translateX(0); }
    50% { opacity: 0.5; transform: translateX(-100%); }
}

.warning-text {
    margin-top: 20px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--dark-red);
    opacity: 0.7;
}

.flicker {
    animation: flicker 3s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.3; }
}

/* Enhanced Hero Visual */
.hero-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.orbit-container {
    width: 600px;
    height: 600px;
    position: relative;
}

.orbit {
    position: absolute;
    border: 1px solid var(--red);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255,0,0,0.2);
}

.orbit-1 {
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
    border-style: dashed;
}

.orbit-2 {
    width: 400px;
    height: 400px;
    animation: rotate 30s linear infinite reverse;
    opacity: 0.5;
}

.orbit-3 {
    width: 600px;
    height: 600px;
    animation: rotate 40s linear infinite;
    opacity: 0.3;
    border-style: dotted;
}

.energy-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
}

.core-inner {
    width: 100%;
    height: 100%;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 40px var(--red);
    animation: corePulse 2s ease-in-out infinite;
}

.core-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--red);
    border-radius: 50%;
    animation: coreExpand 2s ease-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px var(--red); }
    50% { transform: scale(1.3); box-shadow: 0 0 60px var(--red); }
}

@keyframes coreExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--red), transparent);
    opacity: 0.3;
}

.data-stream.left {
    left: 100px;
    top: 50%;
    animation: streamUp 3s linear infinite;
}

.data-stream.right {
    right: 100px;
    top: 50%;
    animation: streamDown 3s linear infinite;
}

@keyframes streamUp {
    0% { transform: translateY(100px); }
    100% { transform: translateY(-100px); }
}

@keyframes streamDown {
    0% { transform: translateY(-100px); }
    100% { transform: translateY(100px); }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--light-grey);
    display: block;
    margin-bottom: 10px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--red), transparent);
    margin: 0 auto;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { height: 20px; }
    50% { height: 40px; }
}

.scroll-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--red);
    margin: 10px auto 0;
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Blood drip animation */
@keyframes bloodDrip {
    0% {
        transform: translateY(0) scaleY(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(200px) scaleY(2);
        opacity: 0;
    }
}

/* Screen shake */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

/* Distortion effect */
@keyframes distort {
    0%, 100% { filter: hue-rotate(0deg) saturate(100%) brightness(100%); }
    25% { filter: hue-rotate(-10deg) saturate(150%) brightness(110%); }
    50% { filter: hue-rotate(10deg) saturate(200%) brightness(120%); }
    75% { filter: hue-rotate(-5deg) saturate(150%) brightness(105%); }
}

/* Typewriter effect */
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

/* Warning pulse */
@keyframes warningPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Number glitch */
@keyframes numberGlitch {
    0%, 100% { 
        transform: translateX(0);
        filter: blur(0);
    }
    20% { 
        transform: translateX(-2px);
        filter: blur(1px);
    }
    40% { 
        transform: translateX(2px);
        filter: blur(0.5px);
    }
    60% { 
        transform: translateX(-1px);
        filter: blur(0);
    }
}

@keyframes fadeOut {
    from { 
        opacity: 1;
        transform: scale(1);
    }
    to { 
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Blood drip effect */
.blood-drip {
    position: absolute;
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: bloodDrip 3s ease-in infinite;
    pointer-events: none;
}

/* Warning signs */
.warning-sign {
    position: fixed;
    color: var(--red);
    font-size: 24px;
    animation: warningPulse 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 50;
    opacity: 0.3;
    display: none; /* Hide on mobile by default */
}

.warning-sign.top-left { top: 100px; left: 50px; }
.warning-sign.top-right { top: 100px; right: 50px; }
.warning-sign.bottom-left { bottom: 100px; left: 50px; }
.warning-sign.bottom-right { bottom: 100px; right: 50px; }

/* Show warning signs only on desktop */
@media (min-width: 769px) {
    .warning-sign {
        display: block;
    }
}

/* Glitching numbers */
.glitch-number {
    animation: numberGlitch 0.3s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 0.1s);
}

/* Typewriter text */
.typewriter-text {
    overflow: hidden;
    white-space: nowrap;
    animation: typewriter 3s steps(40) 1s forwards;
    border-right: 3px solid var(--red);
    animation-fill-mode: both;
}

/* Method card distortion */
.method-step:hover {
    animation: distort 0.5s ease;
}

/* Screen shake trigger */
.shake-screen {
    animation: shake 0.5s ease;
}

/* Blood splatter background */
.blood-splatter {
    position: fixed;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--red) 0%, transparent 70%);
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}


/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 120px 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}

.title-number {
    font-size: 14px;
    color: var(--red);
    letter-spacing: 2px;
}

.title-text {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
}

/* Manifesto */
.manifesto {
    border-top: 1px solid var(--border);
}

.large-text {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 40px;
    font-weight: 300;
}

.large-text.accent {
    color: var(--red);
    font-weight: 500;
}

.strike {
    text-decoration: line-through;
    opacity: 0.5;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.manifesto-item {
    padding: 40px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.manifesto-item:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}

.item-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.manifesto-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.manifesto-item p {
    color: var(--light-grey);
    line-height: 1.6;
}

/* Numbers */
.numbers {
    background: var(--grey);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    margin-bottom: 80px;
}

.number-block {
    background: var(--grey);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.number-value {
    font-size: 64px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -3px;
}

.number-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--light-grey);
    margin-top: 10px;
}

.number-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease;
}

.number-block:hover .number-bar {
    transform: scaleX(1);
}

/* Case Study */
.case-study {
    background: var(--black);
    padding: 60px;
    border: 1px solid var(--border);
}

.case-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.case-label {
    color: var(--red);
    font-size: 12px;
    letter-spacing: 2px;
}

.case-date {
    color: var(--light-grey);
    font-size: 12px;
    letter-spacing: 2px;
}

.case-content h3 {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.case-stat {
    border-left: 2px solid var(--red);
    padding-left: 20px;
}

.stat-big {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -2px;
}

.stat-desc {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--light-grey);
    margin-top: 10px;
}

/* Method */
.method {
    border-top: 1px solid var(--border);
}

.method-steps {
    display: grid;
    gap: 60px;
}

.method-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.method-step:last-child {
    border-bottom: none;
}

.step-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -3px;
    opacity: 0.3;
}

.step-content h3 {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.step-content p {
    font-size: 18px;
    color: var(--light-grey);
    line-height: 1.6;
}


/* Contact - Redesigned */
.contact {
    background: var(--black);
    border-top: 1px solid var(--border);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Contact Background Effects */
.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contact-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,0,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

#contactParticles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.contact-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,0,0,0.1) 0%, transparent 70%);
    animation: contactPulse 4s ease-in-out infinite;
}

@keyframes contactPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.1; }
}

/* Contact Content */
.contact-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 80px;
}

.contact-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.9;
    margin-bottom: 30px;
}

.contact-title .line-1 {
    display: block;
    margin-bottom: 10px;
}

.contact-title .line-2 {
    display: block;
    font-size: 1.2em;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--light-grey);
    letter-spacing: 1px;
}

/* Telegram Zone */
.telegram-zone {
    position: relative;
    margin: 80px 0;
}

.telegram-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(255,0,0,0.3) 0%, transparent 60%);
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 30px 60px;
    background: transparent;
    border: 3px solid var(--red);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.telegram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255,0,0,0.3);
    border-color: var(--white);
    color: var(--black);
}

.telegram-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--red);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.telegram-button:hover::before {
    left: 0;
}

.tg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg-text {
    flex: 1;
}

.tg-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.telegram-button:hover .tg-arrow {
    transform: translateX(5px);
}

.button-scan {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--red);
    opacity: 0;
    animation: scanButton 3s linear infinite;
}

@keyframes scanButton {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
}

/* Telegram Info */
.telegram-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.info-badge {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--red);
    font-weight: 700;
    padding: 8px 16px;
    border: 1px solid rgba(255,0,0,0.3);
    background: rgba(255,0,0,0.05);
}

.info-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--light-grey);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0,255,0,0.5);
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Contact Stats */
.contact-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 80px 0 60px;
    padding: 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--light-grey);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.contact-warning {
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--light-grey);
    opacity: 0.7;
    animation: warningFade 3s ease-in-out infinite;
}

@keyframes warningFade {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.4; }
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.footer-left p {
    color: var(--light-grey);
    font-size: 12px;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--light-grey);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-copy {
    color: var(--light-grey);
    font-size: 12px;
    letter-spacing: 1px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    /* General adjustments for tablets */
    .container {
        padding: 0 30px;
    }
    
    section {
        padding: 80px 0;
    }
    
    /* Hero adjustments */
    .hero-title {
        font-size: clamp(70px, 9vw, 100px);
    }
    
    .orbit-container {
        width: 400px;
        height: 400px;
    }
    
    .orbit-1 { width: 150px; height: 150px; }
    .orbit-2 { width: 300px; height: 300px; }
    .orbit-3 { width: 400px; height: 400px; }
    
    /* Section titles */
    .title-text {
        font-size: 36px;
    }
    
    /* Manifesto grid - 2 columns on tablet */
    .manifesto-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Numbers grid - 2x2 on tablet */
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .number-value {
        font-size: 48px;
    }
    
    /* Method steps */
    .step-number {
        font-size: 60px;
    }
    
    .step-content h3 {
        font-size: 28px;
    }
    
    /* Contact tablet */
    .contact-title {
        font-size: 72px;
    }
    
    .telegram-button {
        padding: 25px 50px;
        font-size: 16px;
    }
    
    .contact-stats {
        gap: 30px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Fix hero header overlap on mobile */
    .hero {
        padding-top: 80px;
        padding-bottom: 20px;
        min-height: 100vh;
        height: auto;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    /* Adjust nav for better mobile visibility */
    .nav {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 15px 20px;
        mix-blend-mode: normal;
    }
    
    /* Reduce hero label spacing */
    .hero-label {
        font-size: 10px;
        margin-bottom: 20px;
    }
    
    /* Smaller hero title on mobile */
    .hero-title {
        font-size: clamp(48px, 12vw, 60px);
        margin-bottom: 20px;
        letter-spacing: -3px;
    }
    
    /* Compact stats for mobile */
    .hero-stats {
        flex-direction: row;
        gap: 20px;
        margin: 30px 0;
        justify-content: center;
    }
    
    .pulse-stat {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    /* Smaller CTA section */
    .hero-cta {
        margin-top: 30px;
    }
    
    .massacre-btn {
        padding: 15px 30px;
        font-size: 12px;
    }
    
    .warning-text {
        font-size: 9px;
        margin-top: 15px;
    }
    
    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }
    
    /* Hide orbits on mobile to save space */
    .hero-visual {
        display: none;
    }
    
    .menu-link {
        font-size: 36px;
        letter-spacing: -2px;
    }
    
    /* Container padding for mobile */
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Section titles mobile */
    .section-title {
        margin-bottom: 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .title-text {
        font-size: 28px;
        line-height: 1.1;
    }
    
    /* Manifesto mobile */
    .large-text {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 30px;
    }
    
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .manifesto-item {
        padding: 25px;
    }
    
    .item-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .manifesto-item h3 {
        font-size: 16px;
    }
    
    .manifesto-item p {
        font-size: 14px;
    }
    
    /* Numbers mobile */
    .numbers-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
    
    .number-block {
        padding: 40px 20px;
    }
    
    .number-value {
        font-size: 42px;
    }
    
    /* Case study mobile */
    .case-study {
        padding: 30px 20px;
    }
    
    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .case-content h3 {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 1.2;
    }
    
    .case-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-big {
        font-size: 36px;
    }
    
    /* Method mobile */
    .method-steps {
        gap: 40px;
    }
    
    .method-step {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 40px;
    }
    
    .step-number {
        font-size: 48px;
        opacity: 0.2;
    }
    
    .step-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .step-content p {
        font-size: 16px;
    }
    
    /* Contact mobile */
    .contact {
        min-height: 100vh;
        padding: 80px 0;
    }
    
    .contact-title {
        font-size: 36px;
        letter-spacing: -2px;
    }
    
    .contact-title .line-2 {
        font-size: 1.1em;
    }
    
    .contact-subtitle {
        font-size: 14px;
    }
    
    .telegram-button {
        padding: 20px 30px;
        font-size: 14px;
        gap: 15px;
    }
    
    .tg-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .telegram-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .contact-warning {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 40px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    /* Menu overlay mobile */
    .full-menu {
        padding: 20px;
    }
    
    .menu-footer {
        left: 20px;
        bottom: 20px;
    }
}

/* Very small screens - prevent horizontal scroll */
@media (max-width: 375px) {
    /* Prevent overflow on tiny screens */
    body {
        overflow-x: hidden;
    }
    
    /* Even smaller adjustments for very small phones */
    .hero-title {
        font-size: 40px;
        letter-spacing: -2px;
    }
    
    .hero-title .line {
        word-break: break-word;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .massacre-btn {
        padding: 12px 24px;
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .title-text {
        font-size: 24px;
        word-wrap: break-word;
    }
    
    .large-text {
        font-size: 18px;
    }
    
    .cta-title {
        font-size: 32px;
        word-wrap: break-word;
    }
    
    .number-value {
        font-size: 36px;
    }
    
    .case-content h3 {
        font-size: 20px;
    }
    
    .stat-big {
        font-size: 32px;
    }
}