/* ============================================================
   NEOCREATOR — FUTURISTIC DARK UI
   Dark theme · Neon accents · Glassmorphism · Animations
   ============================================================ */

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --cyan:        #00f5ff;
  --cyan-dim:    #00c4cc;
  --cyan-dark:   #003a40;
  --purple:      #a855f7;
  --purple-dim:  #8b3ee8;
  --purple-dark: #2d1b4e;
  --pink:        #ff0080;
  --pink-dim:    #cc0066;
  --pink-dark:   #3d001f;

  --bg:          #050810;
  --bg-2:        #080d1a;
  --bg-3:        #0d1326;
  --surface:     rgba(255,255,255,0.04);
  --surface-2:   rgba(255,255,255,0.07);
  --border:      rgba(255,255,255,0.08);
  --border-2:    rgba(255,255,255,0.12);

  --text:        #e8eaf6;
  --text-2:      #9ca3c4;
  --text-3:      #5a6285;

  --font-display: 'Orbitron', monospace;
  --font-body:    'Inter', sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   30px;

  --shadow-cyan:   0 0 30px rgba(0,245,255,0.25);
  --shadow-purple: 0 0 30px rgba(168,85,247,0.25);
  --shadow-pink:   0 0 30px rgba(255,0,128,0.25);

  --trans: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ─── CURSOR GLOW ───────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,245,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.3s;
}

/* ─── PARTICLES CANVAS ──────────────────────────────────── */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ─── UTILITY: NEON TEXT ────────────────────────────────── */
.neon-cyan   { color: var(--cyan); text-shadow: 0 0 20px rgba(0,245,255,0.7), 0 0 40px rgba(0,245,255,0.3); }
.neon-purple { color: var(--purple); text-shadow: 0 0 20px rgba(168,85,247,0.7), 0 0 40px rgba(168,85,247,0.3); }
.neon-pink   { color: var(--pink); text-shadow: 0 0 20px rgba(255,0,128,0.7), 0 0 40px rgba(255,0,128,0.3); }

/* ─── GLASS CARD ────────────────────────────────────────── */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.glass-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  background: var(--surface-2);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.glass-card:hover .card-glow { opacity: 1; }
.cyan-glow   { background: radial-gradient(circle, rgba(0,245,255,0.08) 0%, transparent 60%); }
.purple-glow { background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 60%); }
.pink-glow   { background: radial-gradient(circle, rgba(255,0,128,0.08) 0%, transparent 60%); }

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(5,8,16,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 2px;
  white-space: nowrap;
}
.logo-bracket { color: var(--cyan); }
.logo-accent  { color: var(--cyan); text-shadow: 0 0 15px var(--cyan); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: var(--trans);
  white-space: nowrap;
}
.nav-link:hover { color: var(--cyan); background: rgba(0,245,255,0.07); }
.nav-link i { margin-right: 4px; font-size: 0.8rem; }

.nav-cta {
  text-decoration: none;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #000;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(0,245,255,0.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0,245,255,0.5);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--cyan);
  transition: var(--trans);
}
.btn-ghost:hover {
  background: rgba(0,245,255,0.1);
  box-shadow: 0 0 20px rgba(0,245,255,0.3);
  transform: scale(1.05);
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 120px 2rem 60px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.hero-bg-grid {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(0,245,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease both;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--cyan);
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: 0.6; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease both 0.2s;
}
.title-line {
  display: block;
  position: relative;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  margin-bottom: 2rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease both 0.4s;
}

.typewriter {
  display: inline-block;
  color: var(--cyan);
  font-weight: 600;
  border-right: 2px solid var(--cyan);
  padding-right: 4px;
  animation: blink 0.8s infinite;
}
@keyframes blink { 0%,50% { border-color: var(--cyan); } 51%,100% { border-color: transparent; } }

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease both 0.6s;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease both 0.8s;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(0,245,255,0.5);
}
.stat-unit { font-size: 1rem; color: var(--cyan); font-weight: 700; }
.stat-label { font-size: 0.7rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border-2); }

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeIn 1.2s ease both 0.5s;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-cyan   { width: 300px; height: 300px; background: rgba(0,245,255,0.12); animation-delay: 0s; }
.orb-purple { width: 250px; height: 250px; background: rgba(168,85,247,0.1); animation-delay: -3s; top: -50px; right: -20px; }
.orb-pink   { width: 200px; height: 200px; background: rgba(255,0,128,0.08); animation-delay: -5s; bottom: -30px; left: 20px; }
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(20px,-20px) scale(1.05); }
  66%     { transform: translate(-15px,15px) scale(0.95); }
}

.hero-avatar-ring {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,245,255,0.15), rgba(168,85,247,0.15));
  border: 2px solid rgba(0,245,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--cyan);
  z-index: 5;
  box-shadow: 0 0 40px rgba(0,245,255,0.2);
  position: relative;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.ring-1 { width: 210px; height: 210px; border-color: rgba(0,245,255,0.2); animation: spinRing 12s linear infinite; }
.ring-2 { width: 270px; height: 270px; border-color: rgba(168,85,247,0.15); animation: spinRing 18s linear infinite reverse; }
.ring-3 { width: 330px; height: 330px; border-color: rgba(255,0,128,0.1); animation: spinRing 25s linear infinite; }
@keyframes spinRing { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.orbit-dot {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 6;
  border: 1px solid;
}
.dot-1 { background: rgba(0,245,255,0.15); border-color: rgba(0,245,255,0.4); color: var(--cyan);
  top: 10px; left: 50%; transform: translateX(-50%); animation: dotFloat 3s ease-in-out infinite; }
.dot-2 { background: rgba(255,0,128,0.15); border-color: rgba(255,0,128,0.4); color: var(--pink);
  bottom: 10px; right: 20px; animation: dotFloat 3.5s ease-in-out infinite 0.5s; }
.dot-3 { background: rgba(168,85,247,0.15); border-color: rgba(168,85,247,0.4); color: var(--purple);
  bottom: 10px; left: 20px; animation: dotFloat 4s ease-in-out infinite 1s; }
.dot-4 { background: rgba(0,245,255,0.15); border-color: rgba(0,245,255,0.4); color: var(--cyan);
  top: 50%; right: 5px; transform: translateY(-50%); animation: dotFloat 2.8s ease-in-out infinite 1.5s; }
@keyframes dotFloat {
  0%,100% { transform: translateY(0) translateX(0); }
  50%     { transform: translateY(-8px) translateX(3px); }
}
.dot-1 { animation: dotFloat1 3s ease-in-out infinite; }
@keyframes dotFloat1 {
  0%,100% { top: 10px; }
  50%     { top: 2px; }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-3);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease both 1.5s;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(0); transform-origin: top; } }

/* ─── SECTIONS ──────────────────────────────────────────── */
.section {
  padding: 7rem 0;
  position: relative;
  z-index: 1;
}
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(13,19,38,0.8), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.2);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-2);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── AI TOOLS GRID ─────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tool-card {
  padding: 2rem;
}
.tool-card.featured {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem;
}
.tool-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid;
}
.cyan-icon   { background: rgba(0,245,255,0.1);   border-color: rgba(0,245,255,0.3);   color: var(--cyan); }
.purple-icon { background: rgba(168,85,247,0.1);  border-color: rgba(168,85,247,0.3);  color: var(--purple); }
.pink-icon   { background: rgba(255,0,128,0.1);   border-color: rgba(255,0,128,0.3);   color: var(--pink); }

.tool-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}
.tool-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.tool-card p {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.tag {
  padding: 0.2rem 0.7rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--text-2);
}
.tool-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #fbbf24;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.tool-rating span { color: var(--text-2); margin-left: 4px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--trans);
}
.card-link:hover { gap: 0.7rem; }

/* ─── VIRAL IDEAS ───────────────────────────────────────── */
.viral-ticker {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 3rem;
  overflow: hidden;
}
.ticker-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 1rem;
  border-right: 1px solid var(--border-2);
}
.ticker-track {
  overflow: hidden;
  flex: 1;
}
.ticker-content {
  display: flex;
  gap: 2rem;
  animation: tickerMove 20s linear infinite;
  white-space: nowrap;
}
.ticker-content span {
  color: var(--text-2);
  font-size: 0.82rem;
  font-weight: 500;
  flex-shrink: 0;
  cursor: default;
}
.ticker-content span:hover { color: var(--cyan); }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.viral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.viral-card {
  padding: 2rem;
  position: relative;
}
.big-card { grid-row: span 2; }
.mini-card { padding: 1.5rem; }
.viral-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}
.viral-trend-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(135deg, rgba(255,0,128,0.2), rgba(168,85,247,0.2));
  border: 1px solid rgba(255,0,128,0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.viral-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.viral-card p {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.viral-metrics {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.viral-metrics span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-3);
}
.viral-metrics i { color: var(--cyan); }
.viral-platforms { display: flex; gap: 0.5rem; }
.platform-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 1px solid var(--border-2);
}
.platform-badge.tiktok   { background: rgba(0,0,0,0.3); color: #fff; border-color: rgba(255,255,255,0.2); }
.platform-badge.youtube  { background: rgba(255,0,0,0.1); color: #ff3333; border-color: rgba(255,0,0,0.2); }
.platform-badge.instagram { background: rgba(225,48,108,0.1); color: #e1306c; border-color: rgba(225,48,108,0.2); }
.mini-card h3 { font-size: 0.95rem; }

/* ─── APPS & TRICKS ─────────────────────────────────────── */
.apps-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--cyan);
  color: #000;
  border-color: var(--cyan);
  font-weight: 700;
  box-shadow: 0 0 15px rgba(0,245,255,0.3);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.app-card {
  padding: 1.5rem;
  transition: var(--trans);
}
.app-card.hidden { display: none; }
.app-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  border: 1px solid;
}
.app-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.app-info h4 { font-size: 0.95rem; font-weight: 700; }
.app-category {
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  color: var(--text-3);
}
.app-score {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0,245,255,0.4);
  float: right;
  margin-top: -52px;
  margin-right: -0.5rem;
}
.app-desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 0.8rem;
  clear: both;
}
.app-platforms {
  display: flex;
  gap: 0.5rem;
  color: var(--text-3);
  font-size: 0.8rem;
}

/* ─── CONTENT TIPS ──────────────────────────────────────── */
.tips-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}
.tips-featured {
  padding: 2.5rem;
}
.tips-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0,245,255,0.15), rgba(168,85,247,0.15));
  border: 1px solid rgba(0,245,255,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}
.tips-feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.formula {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.formula-item, .formula-result {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.formula-result {
  background: rgba(0,245,255,0.05);
  border-color: rgba(0,245,255,0.2);
}
.formula-item .tool-icon, .formula-result .tool-icon {
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.formula-item strong, .formula-result strong { display: block; font-size: 0.9rem; margin-bottom: 0.25rem; }
.formula-item p, .formula-result p { font-size: 0.8rem; color: var(--text-2); }
.formula-arrow {
  text-align: center;
  color: var(--cyan);
  font-size: 1rem;
  padding: 0 1rem;
}

.tips-list { display: flex; flex-direction: column; gap: 1rem; }
.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
}
.tip-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.8;
}
.tip-content h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.tip-content p  { font-size: 0.82rem; color: var(--text-2); line-height: 1.5; }
.tip-icon {
  margin-left: auto;
  color: var(--text-3);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── VIDEOS ────────────────────────────────────────────── */
.videos-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.video-card { overflow: hidden; }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  cursor: pointer;
}
.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,0,128,0.15), rgba(168,85,247,0.15));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.2);
  transition: var(--trans);
}
.cyan-thumb   { background: linear-gradient(135deg, rgba(0,245,255,0.15), rgba(0,100,120,0.2)); }
.purple-thumb { background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(80,20,130,0.2)); }
.pink-thumb   { background: linear-gradient(135deg, rgba(255,0,128,0.15), rgba(130,0,60,0.2)); }
.video-overlay-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
}
.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1rem;
  transition: var(--trans);
}
.video-card:hover .video-play-btn { transform: translate(-50%, -50%) scale(1); }
.video-card:hover .video-placeholder { filter: brightness(0.8); }
.video-views-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.video-info {
  padding: 1.25rem 1.25rem 1.5rem;
}
.video-channel-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.channel-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #000;
}
.video-channel-info span { font-size: 0.8rem; color: var(--text-2); }
.verified { color: var(--cyan) !important; font-size: 0.7rem !important; }
.video-info h3 { font-size: 0.92rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.6rem; }
.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: var(--text-3);
}
.video-meta i { margin-right: 0.2rem; color: var(--cyan); }
.featured-video .video-info h3 { font-size: 1.05rem; }
.videos-cta { text-align: center; }

/* ─── PERSONAL BRAND ────────────────────────────────────── */
.brand-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}
.brand-avatar-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.brand-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,245,255,0.15), rgba(168,85,247,0.15));
  border: 3px solid;
  border-image: linear-gradient(135deg, var(--cyan), var(--purple)) 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: var(--cyan);
  box-shadow: 0 0 50px rgba(0,245,255,0.2);
  position: relative;
}
.brand-ring {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px dashed rgba(0,245,255,0.25);
  animation: spinRing 20s linear infinite;
}
.brand-status {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  white-space: nowrap;
}

.brand-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1.25rem;
  font-size: 1.3rem;
}
.brand-badge strong { display: block; font-size: 1rem; font-weight: 700; }
.brand-badge small  { font-size: 0.7rem; color: var(--text-2); }

.brand-bio {
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.brand-bio strong { color: var(--text); }

.brand-skills { margin: 2rem 0; }
.skill-bar { margin-bottom: 1.2rem; }
.skill-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 0.4rem;
  color: var(--text-2);
}
.skill-track {
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}
.cyan-fill   { background: linear-gradient(90deg, var(--cyan-dark), var(--cyan)); box-shadow: 0 0 8px rgba(0,245,255,0.4); }
.purple-fill { background: linear-gradient(90deg, var(--purple-dark), var(--purple)); box-shadow: 0 0 8px rgba(168,85,247,0.4); }
.pink-fill   { background: linear-gradient(90deg, var(--pink-dark), var(--pink)); box-shadow: 0 0 8px rgba(255,0,128,0.4); }

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  transition: var(--trans);
}
.social-btn:hover       { transform: translateY(-3px); }
.social-btn.youtube:hover   { background: rgba(255,0,0,0.15); color: #ff3333; border-color: #ff3333; box-shadow: 0 0 15px rgba(255,0,0,0.3); }
.social-btn.tiktok:hover    { background: rgba(0,245,255,0.1); color: var(--cyan); border-color: var(--cyan); box-shadow: var(--shadow-cyan); }
.social-btn.instagram:hover { background: rgba(225,48,108,0.15); color: #e1306c; border-color: #e1306c; box-shadow: 0 0 15px rgba(225,48,108,0.3); }
.social-btn.twitter:hover   { background: rgba(29,161,242,0.15); color: #1da1f2; border-color: #1da1f2; box-shadow: 0 0 15px rgba(29,161,242,0.3); }
.social-btn.discord:hover   { background: rgba(88,101,242,0.15); color: #5865f2; border-color: #5865f2; box-shadow: 0 0 15px rgba(88,101,242,0.3); }
.social-btn.twitch:hover    { background: rgba(145,70,255,0.15); color: #9146ff; border-color: #9146ff; box-shadow: 0 0 15px rgba(145,70,255,0.3); }

/* ─── NEWSLETTER ────────────────────────────────────────── */
.newsletter-section { padding: 5rem 0; }
.newsletter-box {
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}
.newsletter-orb.orb-cyan   { background: rgba(0,245,255,0.15); top: -100px; left: -100px; }
.newsletter-orb.orb-purple { background: rgba(168,85,247,0.15); bottom: -100px; right: -100px; }
.newsletter-content { position: relative; z-index: 1; }
.newsletter-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0,245,255,0.15), rgba(168,85,247,0.15));
  border: 1px solid rgba(0,245,255,0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--cyan);
  margin: 0 auto 1.5rem;
}
.newsletter-box h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.newsletter-box p {
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.newsletter-form .form-group {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 0.75rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: var(--trans);
}
.newsletter-form input:focus { border-color: var(--cyan); box-shadow: 0 0 15px rgba(0,245,255,0.2); }
.form-note {
  font-size: 0.75rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.newsletter-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.3);
  border-radius: 50px;
  color: var(--cyan);
  font-weight: 600;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-success.show { display: flex; animation: fadeInUp 0.5s ease; }
.newsletter-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}
.nl-stat { text-align: center; }
.nl-stat strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--cyan); }
.nl-stat span   { font-size: 0.78rem; color: var(--text-2); }

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  padding: 4rem 0 2rem;
  position: relative;
  border-top: 1px solid var(--border);
}
.footer-grid-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(0,245,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { padding-right: 2rem; }
.footer-brand .nav-logo { display: inline-block; margin-bottom: 1rem; font-size: 1rem; }
.footer-brand p { color: var(--text-2); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-group a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-2);
  font-size: 0.85rem;
  transition: var(--trans);
}
.footer-links-group a:hover { color: var(--cyan); padding-left: 4px; }
.footer-links-group i { font-size: 0.75rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ─── BACK TO TOP ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.3);
  color: var(--cyan);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--cyan);
  color: #000;
  box-shadow: 0 0 20px rgba(0,245,255,0.4);
}

/* ─── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeIn        { from { opacity: 0; }             to { opacity: 1; } }
@keyframes fadeInUp      { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown    { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft    { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight   { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes zoomIn        { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }

[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-up"]    { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="zoom-in"]    { transform: scale(0.88); }
[data-aos].aos-animated { opacity: 1; transform: none; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1200px) {
  .tools-grid   { grid-template-columns: repeat(2, 1fr); }
  .tool-card.featured { grid-column: 1 / -1; }
  .apps-grid    { grid-template-columns: repeat(3, 1fr); }
  .videos-grid  { grid-template-columns: 1fr 1fr; }
  .footer-top   { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 2rem 60px;
  }
  .hero-visual { order: -1; }
  .hero-avatar-ring { width: 280px; height: 280px; }
  .avatar-placeholder { width: 130px; height: 130px; font-size: 3rem; }
  .ring-1 { width: 170px; height: 170px; }
  .ring-2 { width: 215px; height: 215px; }
  .ring-3 { width: 260px; height: 260px; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }

  .tips-layout  { grid-template-columns: 1fr; }
  .brand-layout { grid-template-columns: 1fr; gap: 3rem; }
  .viral-grid   { grid-template-columns: 1fr; }
  .big-card     { grid-row: auto; }
  .viral-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .nav-links {
    position: fixed;
    top: 65px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(5,8,16,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 0.5rem;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .hamburger { display: flex; }
  .nav-link { padding: 0.75rem 1rem; font-size: 0.9rem; }
}

@media (max-width: 768px) {
  .tools-grid   { grid-template-columns: 1fr; }
  .tool-card.featured { flex-direction: column; gap: 1.5rem; }
  .apps-grid    { grid-template-columns: repeat(2, 1fr); }
  .videos-grid  { grid-template-columns: 1fr; }
  .footer-top   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .newsletter-form .form-group { flex-direction: column; }
  .newsletter-stats { gap: 2rem; }
  .newsletter-box { padding: 2.5rem 1.5rem; }
  .section { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .apps-grid { grid-template-columns: 1fr; }
  .viral-mini-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0.5rem; }
  .stat-num { font-size: 1.4rem; }
  .brand-badges { flex-direction: column; align-items: center; }
  .newsletter-stats { flex-direction: column; gap: 1rem; }
}
