/* BleachByPass - Neon Green Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(122, 211, 80, 0.16) 0%,
      rgba(122, 211, 80, 0.06) 30%,
      rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(135deg, #000503 0%, #07140d 40%, #020202 100%);
}

:root {
  --primary-dark: #000503;
  --primary: #07140d;
  --primary-light: #0f2a1a;

  --secondary: #7ad350;
  --secondary-dark: #4bbd2a;
  --accent: #b9ff9f;
  --accent-dark: #3fae1f;

  --text-primary: #eaffdf;
  --text-secondary: rgba(234, 255, 223, 0.72);
  --text-light: rgba(234, 255, 223, 0.52);

  --background: #070707;
  --background-alt: #0f0f0f;

  --border: rgba(234, 255, 223, 0.12);

  --shadow: rgba(0, 0, 0, 0.45);
  --shadow-hover: rgba(0, 0, 0, 0.65);

  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;

  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  --transition: all 0.25s ease;
  --transition-slow: all 0.5s ease;

  --gradient-primary: linear-gradient(
    135deg,
    #000503 0%,
    #0b2d18 30%,
    #7ad350 60%,
    #0b2d18 85%,
    #000503 100%
  );
  --gradient-glow: linear-gradient(
    135deg,
    rgba(122, 211, 80, 0.22) 0%,
    rgba(185, 255, 159, 0.12) 100%
  );
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: inherit;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 2.25rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-width: 200px;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: translateX(-120%);
  transition: var(--transition-slow);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 50px rgba(122, 211, 80, 0.32),
    0 4px 16px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 255, 159, 0.35);
  box-shadow:
    0 26px 70px rgba(122, 211, 80, 0.45),
    0 10px 24px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(
    135deg,
    rgba(0, 5, 3, 0.98) 0%,
    rgba(7, 20, 13, 0.94) 45%,
    rgba(122, 211, 80, 0.3) 100%
  );
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 40px rgba(122, 211, 80, 0.18);
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 1rem;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.08);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(122, 211, 80, 0.25);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  font-weight: 650;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: rgba(185, 255, 159, 0.95);
  transition: var(--transition);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
  box-shadow: 0 0 10px rgba(122, 211, 80, 0.45);
}

.nav-link.download-btn {
  background: rgba(185, 255, 159, 0.12);
  border: 1px solid rgba(185, 255, 159, 0.25);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: var(--transition);
}

/* Hero */
.hero {
  padding: 140px 0 3.5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0.35;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(
      rgba(185, 255, 159, 0.18) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(185, 255, 159, 0.18) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-icon {
  margin-bottom: 1.5rem;
  animation: floaty 6s ease-in-out infinite;
}

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

.app-icon {
  width: 112px;
  height: 112px;
  border-radius: 1.5rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.app-icon:hover {
  transform: scale(1.06) rotate(3deg);
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.gradient-text {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(235, 255, 235, 0.95) 35%,
    var(--accent) 55%,
    var(--secondary) 70%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 30rem;
}

.hero-cta {
  margin-top: 1.5rem;
}

.hero-screenshots {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.main-screenshot {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.main-screenshot:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(234, 255, 223, 0.72);
  font-size: 1.125rem;
}

.features,
.screenshots,
.privacy-content,
.download {
  position: relative;
}

.features {
  padding: 4rem 0;
  background: #070707;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(122, 211, 80, 0.08) 0%,
    rgba(0, 0, 0, 0) 40%
  );
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(15, 15, 15, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.25rem;
  border-radius: 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  cursor: default;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.6);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.screenshots {
  padding: 4rem 0;
  background: rgba(15, 15, 15, 0.75);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.screenshot {
  text-align: center;
  transition: var(--transition);
}

.screenshot img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.screenshot img:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Download */
.download {
  padding: 4rem 0;
  background: var(--gradient-primary);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.download::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0.25;
}

.download .container {
  position: relative;
  z-index: 1;
}

.download h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.download p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.download-btn {
  text-decoration: none;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.download-btn:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.5));
}

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  min-width: 180px;
  border: 1px solid rgba(185, 255, 159, 0.2);
  transition: var(--transition);
}

.store-button:hover {
  border-color: rgba(185, 255, 159, 0.35);
  background: #0a0a0a;
}

.store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.store-icon svg {
  width: 24px;
  height: 24px;
  fill: #7ad350;
}

.store-label {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-name {
  font-size: 16px;
  font-weight: 700;
}

/* Footer */
.footer {
  background: rgba(15, 15, 15, 0.8);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  text-align: center;
}

.footer-tagline {
  margin-bottom: 2rem;
}

.footer-tagline p {
  font-size: 1.75rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  color: rgba(234, 255, 223, 0.72);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.separator {
  color: rgba(234, 255, 223, 0.52);
}

.footer-note {
  color: rgba(234, 255, 223, 0.52);
  font-size: 0.875rem;
}

/* Privacy / Terms pages */
.privacy-content {
  padding: 120px 0 3rem;
  background: var(--background);
  min-height: 100vh;
}

.privacy-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.back-link {
  display: inline-block;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 650;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--secondary-dark);
}

.privacy-header h1 {
  margin-bottom: 0.5rem;
}

.last-updated {
  color: rgba(234, 255, 223, 0.52);
  font-size: 0.875rem;
}

.privacy-body {
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.75;
  padding: 0 1.5rem;
}

.privacy-body h2 {
  color: var(--text-primary);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.privacy-body h3 {
  color: var(--text-primary);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.privacy-body p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.privacy-body ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.privacy-body li {
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.privacy-body a {
  color: var(--secondary);
  text-decoration: none;
}

.privacy-body a:hover {
  text-decoration: underline;
  color: var(--secondary-dark);
}

/* Disclaimer Page Specific Styles */
.disclaimer-notice {
  background: linear-gradient(
    135deg,
    rgba(122, 211, 80, 0.18) 0%,
    rgba(185, 255, 159, 0.12) 100%
  );
  border: 2px solid rgba(122, 211, 80, 0.35);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.disclaimer-notice h2 {
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.disclaimer-notice p {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0;
}

.disclaimer-footer {
  background: rgba(15, 15, 15, 0.75);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-top: 2.5rem;
  text-align: center;
  border: 1px solid var(--border);
}

.disclaimer-footer p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Image loading (avoid layout flash) */
img {
  opacity: 0;
  transition: opacity 0.25s ease;
}

img.loaded {
  opacity: 1;
}

/* Active nav link */
.nav-link.active {
  color: #fff !important;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.nav-link.active::after {
  width: 100%;
  background: var(--secondary);
  box-shadow: 0 0 14px rgba(122, 211, 80, 0.5);
}

/* Mobile Menu */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    text-align: center;
    padding: 120px 0 2.5rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .download-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .separator {
    display: none;
  }

  .privacy-body {
    padding: 0 1rem;
  }

  .privacy-content {
    padding: 100px 0 2.5rem;
  }
}

.nav-menu.active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    135deg,
    rgba(0, 5, 3, 0.98) 0%,
    rgba(7, 20, 13, 0.95) 45%,
    rgba(122, 211, 80, 0.35) 100%
  );
  backdrop-filter: blur(22px);
  box-shadow: 0 12px 50px rgba(122, 211, 80, 0.22);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid rgba(122, 211, 80, 0.75);
  outline-offset: 2px;
}

