@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Inter:wght@300;400;600;800&family=Oswald:wght@500;700&display=swap');

:root {
  --bg-color: #050505;
  --bg-dark-purple: #1B0B2A;
  --bg-gradient: radial-gradient(circle at 50% 0%, #3a0000 0%, #1B0B2A 40%, #050505 80%);
  --text-primary: #f8f8f8;
  --text-secondary: #b0b0b0;
  --accent-red: #8B0000;
  --accent-red-glow: rgba(139, 0, 0, 0.8);
  --accent-neon-crimson: #ff003c;
  --accent-neon-glow: rgba(255, 0, 60, 0.6);
  --card-bg: rgba(15, 10, 15, 0.85);
  --card-border: rgba(255, 0, 60, 0.2);
  
  --font-horror: 'Creepster', cursive;
  --font-cinematic: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Custom Cursor */
body {
  background-color: var(--bg-color);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
  cursor: none; /* Hide default cursor */
}

.cursed-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 24px; height: 24px;
  background: radial-gradient(circle, #ff003c 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: transform 0.1s ease;
  box-shadow: 0 0 15px var(--accent-neon-glow);
}

.cursed-cursor::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 12px;
  background: #000;
  border-radius: 50%;
}

/* Floating Particles & Smoke */
.smoke-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.015" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(#noiseFilter)" opacity="0.05"/></svg>');
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
  animation: smokeMove 20s linear infinite alternate;
}

@keyframes smokeMove {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-2%, -2%); }
}

/* Base Styles */
h1, h2, h3, h4 {
  font-family: var(--font-cinematic);
  text-transform: uppercase;
  letter-spacing: 1px;
}

a { color: var(--accent-neon-crimson); text-decoration: none; cursor: none; }
a:hover { color: #ff3366; text-shadow: 0 0 10px var(--accent-neon-glow); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; position: relative; }

/* Preloader */
#preloader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: #000; z-index: 10000;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  transition: opacity 1s ease;
}
.cursed-symbol {
  font-family: var(--font-horror);
  font-size: 5rem; color: var(--accent-neon-crimson);
  animation: flicker 2s infinite;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; text-shadow: 0 0 20px var(--accent-neon-glow); }
  20%, 22%, 24%, 55% { opacity: 0; text-shadow: none; }
}

/* Warning Banner */
.warning-banner {
  background: #2a0000; color: #ff8888; text-align: center; padding: 0.8rem;
  font-weight: 600; letter-spacing: 1px; font-size: 0.9rem;
  border-bottom: 1px solid var(--accent-red);
}

/* Hero Section */
.hero {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6rem 0; gap: 4rem;
}

.hero-content { flex: 1; }
.hero-image { flex: 1; text-align: center; position: relative; }
.hero-image img { max-width: 100%; border-radius: 20px; box-shadow: 0 0 50px var(--accent-red-glow); animation: floatImage 6s ease-in-out infinite; }

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.h1-horror {
  font-family: var(--font-horror);
  font-size: 4.5rem; color: #fff;
  text-shadow: 2px 2px 0px #000, 0 0 20px var(--accent-neon-glow);
  line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: 3px;
}

.hero-intro { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 500px; }

.ratings-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.6); padding: 0.5rem 1rem; border-radius: 4px;
  border: 1px solid #333; margin-bottom: 2rem; font-weight: 600;
}
.stars { color: #ffc107; text-shadow: 0 0 5px rgba(255,193,7,0.5); }

.download-cta {
  display: inline-block;
  background: linear-gradient(90deg, #660000, #ff003c);
  color: #fff; padding: 1.2rem 3rem; font-size: 1.3rem; font-family: var(--font-cinematic);
  border-radius: 4px; border: 2px solid var(--accent-neon-crimson);
  box-shadow: 0 0 20px var(--accent-neon-glow);
  text-transform: uppercase; cursor: none; position: relative; overflow: hidden;
  transition: all 0.3s ease;
}
.download-cta:hover { transform: scale(1.05); box-shadow: 0 0 40px var(--accent-neon-crimson); }
.download-cta::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: rgba(255,255,255,0.1); transform: rotate(45deg) translateY(-100%);
  animation: buttonGlitch 3s infinite;
}
@keyframes buttonGlitch {
  0%, 90% { transform: rotate(45deg) translateY(-100%); }
  100% { transform: rotate(45deg) translateY(100%); }
}

.apk-tags { margin-top: 1rem; font-size: 0.85rem; color: #888; display: flex; gap: 1rem; }
.apk-tags span { background: #111; padding: 0.3rem 0.6rem; border-radius: 3px; border: 1px solid #333; }

/* Main Content Layout */
.content-wrapper { display: flex; gap: 3rem; margin: 4rem 0; align-items: flex-start; }

.sidebar { flex: 0 0 300px; position: sticky; top: 2rem; }
.toc {
  background: var(--card-bg); border: 1px solid var(--card-border);
  padding: 1.5rem; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.toc h3 { color: var(--accent-neon-crimson); margin-bottom: 1rem; font-size: 1.4rem; }
.toc ul { list-style: none; }
.toc li { margin-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 0.5rem; }
.toc a { color: var(--text-secondary); font-size: 0.95rem; }
.toc a:hover { color: #fff; padding-left: 5px; }

.main-article { flex: 1; }
.main-article section { margin-bottom: 4rem; }
.main-article h2 {
  font-size: 2.2rem; color: #fff; margin-bottom: 1.5rem;
  border-left: 5px solid var(--accent-neon-crimson); padding-left: 1rem;
}
.main-article p { margin-bottom: 1.2rem; font-size: 1.1rem; }
.main-article img { max-width: 100%; border-radius: 8px; border: 1px solid #333; margin: 1rem 0; box-shadow: 0 0 20px rgba(0,0,0,0.5); }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.feature-card {
  background: var(--card-bg); border: 1px solid #333; padding: 2rem; border-radius: 8px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0;
  background: var(--accent-neon-crimson); transition: height 0.3s ease;
}
.feature-card:hover { border-color: var(--card-border); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.feature-card:hover::before { height: 100%; }
.feature-card h3 { color: #fff; margin-bottom: 1rem; font-size: 1.3rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Testimonials / Social Proof */
.testimonials { display: grid; gap: 1.5rem; }
.testimonial-card {
  background: rgba(0,0,0,0.5); border-left: 3px solid var(--accent-red); padding: 1.5rem; font-style: italic;
}

/* Floating Elements */
.fake-popup {
  position: fixed; bottom: 2rem; left: 2rem;
  background: rgba(10,0,0,0.9); border: 1px solid var(--accent-neon-crimson);
  padding: 1rem; border-radius: 4px; box-shadow: 0 0 15px var(--accent-neon-glow);
  transform: translateY(150%); transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000; display: flex; align-items: center; gap: 1rem; font-size: 0.9rem;
}
.fake-popup.show { transform: translateY(0); }

/* Download Page */
.download-screen {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
}
.creepy-timer {
  font-family: var(--font-horror); font-size: 8rem; color: #fff;
  text-shadow: 0 0 30px var(--accent-red); margin: 2rem 0; line-height: 1;
}

/* Footer */
footer {
  margin-top: 5rem; padding: 4rem 2rem; background: #020202; text-align: center; position: relative;
  border-top: 1px solid #222;
}
.footer-glow-line {
  position: absolute; top: -1px; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-neon-crimson), transparent);
  box-shadow: 0 0 10px var(--accent-neon-glow);
}
.footer-intro { color: #777; max-width: 600px; margin: 0 auto 2rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.social-handles { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; }
.social-handles a {
  width: 40px; height: 40px; border: 1px solid #333; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.creepy-eye-footer { font-size: 1.5rem; margin-top: 2rem; animation: flicker 4s infinite; }

.pros-cons-container { display: flex; gap: 2rem; margin-top: 1rem; }

@media (max-width: 900px) {
  .content-wrapper { flex-direction: column; }
  .sidebar { position: static; width: 100%; }
  .hero { flex-direction: column; text-align: center; padding: 4rem 0; gap: 2rem; }
  .h1-horror { font-size: 3.5rem; }
  .fake-popup { bottom: 1rem; left: 1rem; right: 1rem; }
}

@media (max-width: 600px) {
  .h1-horror { font-size: 2.2rem; letter-spacing: 1px; }
  .h1-horror span { font-size: 1.5rem !important; }
  .hero-intro { font-size: 1rem; }
  .container { padding: 0 1rem; }
  .download-cta { padding: 1rem 1.5rem; font-size: 1.1rem; width: 100%; text-align: center; box-sizing: border-box; }
  .apk-tags { flex-wrap: wrap; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .pros-cons-container { flex-direction: column; gap: 1rem; }
  .cursed-cursor { display: none !important; } /* Hide custom cursor on mobile touch */
  .fake-popup { display: none; } /* Hide popup to save screen space */
}
