:root {
  --bg: #050508;
  --bg-alt: #090910;
  --accent: #ff1b1b;
  --accent-soft: #b3142b;
  --text: #e6e6e6;
  --muted: #8b8b8b;
  --card-bg: rgba(10, 10, 15, 0.95);
  --border: rgba(255, 255, 255, 0.08);
  --shadow-strong: 0 0 40px rgba(255, 0, 0, 0.35);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 999px;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  background: radial-gradient(circle at top, #15000a 0, #050508 40%, #000 100%);
  color: var(--text);
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

/* Noise overlay */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  z-index: 1;
}

/* Fog */
.fog {
  position: fixed;
  width: 160%;
  height: 50vh;
  top: -10vh;
  left: -30%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.06),
    transparent 60%
  );
  opacity: 0.3;
  filter: blur(10px);
  animation: fogMove 40s infinite linear alternate;
  z-index: 0;
}

.fog-2 {
  top: auto;
  bottom: -10vh;
  animation-duration: 55s;
  opacity: 0.18;
}

@keyframes fogMove {
  from {
    transform: translateX(-8%);
  }
  to {
    transform: translateX(8%);
  }
}

/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.96),
    rgba(0, 0, 0, 0.7)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 0.7rem;
}

.brand-logo {
  height: 38px;
  width: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-family: "Russo One", system-ui;
  letter-spacing: 3px;
  font-size: 1.1rem;
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.85rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.nav-cta {
  border-color: rgba(255, 0, 0, 0.5) !important;
  color: var(--accent) !important;
}

/* MAIN WRAPPER */
main {
  position: relative;
  z-index: 2;
}

/* HERO BASE */
.hero {
  position: relative;
  max-width: 1150px;
  margin: 2.4rem auto 2.2rem;
  padding: 0 1.2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 24px;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(1.3);
  transform: scale(1.05);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top,
      rgba(255, 0, 0, 0.45),
      transparent 50%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.88),
      rgba(0, 0, 0, 0.96),
      #000
    );
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  padding: 2rem 2rem 2.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  background: radial-gradient(circle at top, #1a0006 0, #050508 50%);
}
/* HERO LEFT SIDE */
.hero-logo-wrap {
  margin-bottom: 0.8rem;
}

.hero-logo {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.45);
}

.glitch {
  font-family: "Russo One", system-ui;
  font-size: 3.2rem;
  letter-spacing: 4px;
  position: relative;
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
}

.glitch::before {
  color: rgba(255, 0, 0, 0.7);
  transform: translate(3px, -2px);
  animation: glitch1 1.6s infinite alternate;
}

.glitch::after {
  color: rgba(255, 0, 0, 0.9);
  transform: translate(-3px, 2px);
  animation: glitch2 1.6s infinite alternate-reverse;
}

@keyframes glitch1 {
  0% { clip-path: inset(0 0 40% 0); }
  100% { clip-path: inset(60% 0 0 0); }
}

@keyframes glitch2 {
  0% { clip-path: inset(40% 0 0 0); }
  100% { clip-path: inset(0 0 60% 0); }
}

.hero-tagline {
  margin-top: 0.8rem;
  color: #e1e1e1;
  font-size: 1.05rem;
  max-width: 420px;
  line-height: 1.55;
}

.hero-tagline span {
  color: var(--accent);
  font-weight: bold;
}

.hero-tamil {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #c8c8c8;
  max-width: 420px;
  opacity: 0.85;
}

.hero-tags {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 480px;
}

.hero-tags span {
  background: rgba(255, 0, 0, 0.18);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--accent);
  border: 1px solid rgba(255, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}

/* BUTTONS */
.btn {
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-block;
  transition: 0.2s ease;
  text-align: center;
}

.btn.primary {
  background: var(--accent);
  color: #000;
  box-shadow: var(--shadow-strong);
}

.btn.primary:hover {
  background: #ff3d3d;
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.9rem;
}

/* HERO NOTE */
.hero-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 420px;
}

/* HERO RIGHT SIDE CARDS */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

.hero-card h2,
.hero-card h3 {
  margin-bottom: 0.4rem;
  color: #fff;
}

.hero-card p {
  font-size: 0.9rem;
  color: #d0d0d0;
}

.hero-card .small {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  opacity: 0.8;
}

.hero-warning {
  border-color: rgba(255, 0, 0, 0.4);
  background: rgba(40, 0, 0, 0.7);
}

/* SECTION DIVIDER */
.streak-wrap {
  margin-top: 1.8rem;
  text-align: center;
}

.streak-divider {
  width: 220px;
  opacity: 0.8;
  filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.5));
}
/* GENERIC SECTIONS */
.section {
  max-width: 1150px;
  margin: 2.8rem auto;
  padding: 0 1.2rem;
}

.section-title {
  font-family: "Russo One", system-ui;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.section-title.center {
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
}

/* STORY / SPLIT LAYOUT */
.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.section-left p {
  font-size: 0.9rem;
  color: #d5d5d5;
  margin-bottom: 0.6rem;
}

.section-highlight {
  background: radial-gradient(circle at top, rgba(255, 0, 0, 0.18), #08060a);
  padding: 1.1rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}

.section-highlight h3 {
  margin-bottom: 0.6rem;
}

.bullet-list {
  list-style: none;
  padding-left: 0;
}

.bullet-list li {
  font-size: 0.88rem;
  color: #e0e0e0;
  margin-bottom: 0.45rem;
}

.section-tagline {
  margin-top: 0.7rem;
  font-size: 0.86rem;
  color: #ffb3b3;
}

/* FEATURES GRID */
.grid {
  display: grid;
  gap: 1rem;
}

.features-grid {
  margin-top: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-icon {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-bottom: 0.6rem;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at top,
    rgba(255, 0, 0, 0.22),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h3 {
  font-size: 0.96rem;
  margin-bottom: 0.45rem;
}

.feature-card p {
  font-size: 0.83rem;
  color: var(--muted);
}

/* ROADMAP / TIMELINE */
.section-dark {
  background: radial-gradient(
      circle at center,
      rgba(255, 0, 0, 0.08),
      transparent 60%
    )
    fixed;
}

.timeline {
  margin-top: 1.5rem;
  border-left: 1px dashed rgba(255, 255, 255, 0.18);
  padding-left: 1.2rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.2rem;
  padding-left: 0.2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item .dot {
  position: absolute;
  left: -1.6rem;
  top: 0.25rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.8);
}

.timeline-item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.timeline-item p {
  font-size: 0.83rem;
  color: var(--muted);
}
/* DISCORD SECTION */
.section-discord {
  margin-top: 3rem;
  text-align: center;
}

.discord-card {
  background: var(--card-bg);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.25);
  max-width: 700px;
  margin: 0 auto;
}

.discord-card h2 {
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

.discord-card p {
  margin-bottom: 1rem;
  color: #dcdcdc;
}

.btn.large {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* DONATION SECTION */
.section-donate {
  margin-top: 3rem;
}

.donate-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  max-width: 700px;
  margin: 0 auto;
}

.donate-inner {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.donate-qr {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
}

.donate-text p {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.donate-upi {
  font-weight: bold;
  color: var(--accent);
  font-size: 1.05rem;
}

.donate-small {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* FOOTER */
.footer {
  margin-top: 3rem;
  padding: 1.4rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .section-split {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .donate-inner {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .glitch {
    font-size: 2.3rem;
  }

  .hero-logo {
    width: 75px;
    height: 75px;
  }

  .donate-qr {
    width: 130px;
    height: 130px;
  }
}
/* SNEAK PEEK SECTION */
.section-sneak {
  margin-top: 3rem;
}

.sneak-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.sneak-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  background: #000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sneak-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.sneak-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* MOBILE VIEW */
@media (max-width: 900px) {
  .sneak-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sneak-card img {
    height: 170px;
  }
}

@media (max-width: 600px) {
  .sneak-grid {
    grid-template-columns: 1fr;
  }

  .sneak-card img {
    height: 180px;
  }
}
