/* Base Styles */
:root {
  --primary-color: #0ea5e9; /* Sky blue */
  --primary-color-rgb: 14, 165, 233;
  --secondary-color: #06b6d4; /* Cyan/teal */
  --secondary-color-rgb: 6, 182, 212;
  --accent-color: #0284c7; /* Deeper blue */
  --accent-color-rgb: 2, 132, 199;
  --background-color: #0f172a; /* Dark blue background */
  --card-background: rgba(15, 30, 50, 0.7);
  --text-color: #e2e8f0;
  --text-color-secondary: #94a3b8;
  --border-color: rgba(148, 163, 184, 0.1);
  --success-color: #10b981;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #3b82f6;
  --dark-color: #0a0a0a;
  --light-bg: #1c1c1c;
  --text-light: rgba(255, 255, 255, 0.7);
  --glow-color: rgba(255, 77, 79, 0.5);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --header-height: 80px; /* Updated header height */
  --header-height-mobile: 120px; /* Added mobile header height */
  --header-height-small: 100px; /* Added small screen header height */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-left: 1px solid rgba(var(--primary-color-rgb), 0.3);
  border-right: 1px solid rgba(var(--primary-color-rgb), 0.3);
  box-shadow: 
    -5px 0 20px rgba(var(--primary-color-rgb), 0.1),
    5px 0 20px rgba(var(--primary-color-rgb), 0.1);
  background-color: var(--background-color);
}

body::before, body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(var(--primary-color-rgb), 0.7),
    rgba(var(--secondary-color-rgb), 0.7),
    transparent
  );
  z-index: 100; /* Lower than header z-index */
  pointer-events: none;
  animation: borderPulse 4s infinite alternate;
}

body::before {
  left: calc((100% - 1200px) / 2);
  box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.5);
}

body::after {
  right: calc((100% - 1200px) / 2);
  box-shadow: 0 0 15px rgba(var(--secondary-color-rgb), 0.5);
}

@keyframes borderPulse {
  0% { opacity: 0.3; }
  100% { opacity: 0.8; }
}

/* Adjust for smaller screens */
@media (max-width: 1200px) {
  body {
    border-left: none;
    border-right: none;
    box-shadow: none;
  }
  
  body::before,
  body::after {
    display: none;
  }
}

@keyframes borderPulse {
  0% { transform: scale(1); opacity: 0.15; }
  100% { transform: scale(1.5); opacity: 0.1; }
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Global section styling */
section {
  padding: 70px 0;
  position: relative;
}

/* About section */
.about {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.about h2 {
  text-align: center;
  margin-bottom: 40px;
}

.about-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-icon {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrapper {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.icon-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
      45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

.icon-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 120, 255, 0.6));
  transition: all 0.3s ease;
}

.icon-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.icon-wrapper:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 12px rgba(0, 120, 255, 0.8));
}

.about-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Media Queries for About Section */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-text p {
    font-size: 1rem;
  }
  
  .about-icon {
    margin-bottom: 20px;
  }
  
  .icon-wrapper {
    width: 150px;
    height: 150px;
  }
  
  .icon-wrapper img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 60px 0;
  }
  
  .about-text p {
    font-size: 0.95rem;
  }
  
  .icon-wrapper {
    width: 120px;
    height: 120px;
  }
  
  .icon-wrapper img {
    width: 60px;
    height: 60px;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  20%, 100% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* Features section */
.features {
  background-color: rgba(10, 10, 15, 0.95);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* How to Add section */
.how-to-add {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
}

.how-to-add::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(var(--primary-color-rgb), 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(var(--primary-color-rgb), 0.05) 0%, transparent 50%);
  z-index: 0;
}

.how-to-add .container {
  position: relative;
  z-index: 1;
}

.how-to-add h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* Steps section - more compact layout */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin: 40px 0;
  padding: 10px;
}

.steps::-webkit-scrollbar {
  height: 6px;
}

.steps::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.steps::-webkit-scrollbar-thumb {
  background: rgba(var(--primary-color-rgb), 0.3);
  border-radius: 10px;
}

.steps::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--primary-color-rgb), 0.5);
}

.step {
    background: rgba(15, 15, 25, 0.5);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    overflow: hidden;
    z-index: 1;
}

.step-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.step-content h3 {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

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

.step:nth-child(1) {
  --animation-order: 1;
}

.step:nth-child(2) {
  --animation-order: 2;
}

.step:nth-child(3) {
  --animation-order: 3;
}

.step:nth-child(4) {
  --animation-order: 4;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.5), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.2;
  transition: opacity 0.4s ease;
}

.step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(var(--primary-color-rgb), 0.1), transparent 70%);
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step.active {
  opacity: 1;
  transform: translateY(0);
}

.step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(var(--primary-color-rgb), 0.2);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

.step:hover::before {
  opacity: 0.6;
}

.step:hover::after {
  opacity: 1;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.2), rgba(var(--primary-color-rgb), 0.05));
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
  text-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.5);
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
  position: relative;
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 0.95rem;
  flex: 1;
}

.step .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
  z-index: 1;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0), 
    rgba(255, 255, 255, 0.2), 
    rgba(255, 255, 255, 0));
  transition: all 0.6s ease;
  z-index: -1;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.button:hover::before {
  left: 100%;
}

@keyframes button-shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.button .arrow {
  transition: transform 0.3s ease;
}

.button:hover .arrow {
  transform: translateX(4px);
}

/* Screenshots section */
.screenshots {
  background-color: rgba(10, 10, 15, 0.95);
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* FAQ section */
.faq {
  background-color: rgba(15, 15, 20, 0.9);
  padding: 70px 0;
}

/* CTA section */
.cta {
  background-color: rgba(10, 10, 15, 0.95);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Media queries for section padding on smaller screens */
@media (max-width: 768px) {
  section, .about, .features, .how-to-add, 
  .screenshots, .faq, .cta {
    padding: 50px 0;
  }
}

/* Modern Glass Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(var(--primary-color-rgb), 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(var(--primary-color-rgb), 0.3), 
    rgba(var(--secondary-color-rgb), 0.3), 
    transparent
  );
  opacity: 0.5;
}

header.scrolled {
  padding: 15px 0;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(var(--primary-color-rgb), 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Keep the nav content centered within the 1200px container */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Update nav links for modern look */
.nav-links {
  display: flex;
  gap: 5px;
  align-items: center;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  position: relative;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  overflow: hidden;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: white;
}

.nav-links a:hover::before {
  transform: translateX(100%);
}

.nav-links a.active {
  background: linear-gradient(
    120deg,
    rgba(var(--primary-color-rgb), 0.15),
    rgba(var(--secondary-color-rgb), 0.15)
  );
  border-color: rgba(var(--primary-color-rgb), 0.3);
  color: white;
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.1),
    0 0 10px rgba(var(--primary-color-rgb), 0.1);
}

/* Add a new keyframe animation for the logo glow effect */
@keyframes logo-glow {
  0% {
    filter: drop-shadow(0 0 3px rgba(var(--primary-color-rgb), 0.3));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(var(--primary-color-rgb), 0.6));
  }
  100% {
    filter: drop-shadow(0 0 3px rgba(var(--primary-color-rgb), 0.3));
  }
}

/* Update the nav-logo styles for a more beautiful appearance */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
  padding: 10px 18px;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(var(--primary-color-rgb), 0.5));
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
  animation: logo-pulse 3s infinite alternate;
}

.nav-logo span {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.4s ease;
  background: linear-gradient(to right, #ffffff, rgba(var(--primary-color-rgb), 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-logo:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.15),
    0 0 15px rgba(var(--primary-color-rgb), 0.2);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

.nav-logo:hover::before {
  transform: translateX(100%);
}

.nav-logo:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 12px rgba(var(--primary-color-rgb), 0.7));
}

.nav-logo:hover span {
  letter-spacing: 1px;
  background: linear-gradient(to right, #ffffff, rgba(var(--primary-color-rgb), 1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes logo-pulse {
  0% {
    filter: drop-shadow(0 0 5px rgba(var(--primary-color-rgb), 0.3));
  }
  100% {
    filter: drop-shadow(0 0 12px rgba(var(--primary-color-rgb), 0.7));
  }
}

/* Mobile styles for the logo */
@media (max-width: 768px) {
  .nav-logo {
    padding: 8px 14px;
    border-radius: 12px;
  }
  
  .nav-logo img {
    width: 32px;
    height: 32px;
  }
  
  .nav-logo span {
    font-size: 1.2rem;
  }
  
  .nav-logo:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-logo:hover img {
    transform: scale(1.05);
  }
  
  .nav-logo:hover span {
    letter-spacing: 0.5px;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    padding: 6px 12px;
    border-radius: 10px;
  }
  
  .nav-logo img {
    width: 28px;
    height: 28px;
  }
  
  .nav-logo span {
    font-size: 1.1rem;
  }
}

.nav-links {
  display: flex;
  gap: 5px;
  align-items: center;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
  background-color: transparent;
  overflow: hidden;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: #fff;
  background-color: rgba(14, 165, 233, 0.1);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: white;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
  position: relative;
  border: none;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 3px;
  background: white;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Updated Hero Section - adjust padding to account for fixed header */
.hero-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.9), var(--background-color));
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 150px 20px 80px;
  overflow: hidden;
  text-align: center;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.2), transparent 70%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, var(--background-color), transparent);
  z-index: 0;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.hero-logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(var(--primary-color-rgb), 0.2) 0%, transparent 70%);
  z-index: -1;
}

.hero-logo img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 0 10px rgba(var(--primary-color-rgb), 0.5));
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hero-logo:hover img {
  transform: scale(1.05);
}

.hero-logo:hover span {
  letter-spacing: 1px;
  background: linear-gradient(90deg, #fff, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 15px rgba(14, 165, 233, 0.6);
}

.nav-logo span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-logo:hover span::after {
  width: 100%;
}

@media (max-width: 768px) {
  .nav-logo:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 20px rgba(14, 165, 233, 0.25);
  }
  
  .nav-logo:hover img {
    transform: rotate(5deg) scale(1.05);
  }
  
  .nav-logo:hover span {
    letter-spacing: 0.5px;
  }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.5rem;
    background: rgba(15, 15, 20, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.button-ios, .button-android {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
}

.button-ios {
    background: linear-gradient(90deg, #0a84ff, #2d88ff);
}

.button-ios:hover {
    background: linear-gradient(90deg, #0a84ff, #4a9fff);
}

.button-android {
    background: linear-gradient(90deg, #0a3d62, #1e3799);
}

.button-android:hover {
    background: linear-gradient(90deg, #0a3d62, #273c75);
}

.button-ios svg, .button-android svg {
    margin-right: 0.3rem;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 1rem auto;
    }
    
    .button-ios, .button-android {
        width: 100%;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(var(--primary-color-rgb), 0.5), transparent);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Updated h1 styling */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 30%, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-shadow: 0 5px 30px rgba(14, 165, 233, 0.2);
}

h1 .highlight {
    position: relative;
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
    animation: pulse-highlight 3s infinite alternate;
}

@keyframes pulse-highlight {
    0% {
        text-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(14, 165, 233, 0.8), 0 0 30px rgba(14, 165, 233, 0.4);
    }
}

/* Updated tagline styling */
.tagline {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-color-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Updated version styling */
.version {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(var(--primary-color-rgb), 0.15);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 2rem;
    border: 1px solid rgba(var(--primary-color-rgb), 0.2);
    backdrop-filter: blur(5px);
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.version::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: version-shine 3s infinite;
}

@keyframes version-shine {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 100%;
    }
}

/* Updated compatibility styling */
.compatibility {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

/* Updated button styling */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    z-index: 1;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0), 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0));
    transition: all 0.6s ease;
    z-index: -1;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.button:hover::before {
    left: 100%;
}

@keyframes button-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.button .arrow {
    transition: transform 0.3s ease;
}

.button:hover .arrow {
    transform: translateX(4px);
}

/* Global heading styles */
h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    color: #fff;
    letter-spacing: -0.5px;
}

h2 .highlight {
    color: var(--primary-color);
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 12px auto 0;
}

/* About section heading */
.about h2 {
    margin-bottom: 25px;
}

.about p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Features section heading */
.features h2 {
    margin-bottom: 30px;
}

.features h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 10px auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 0;
    padding: 10px 0;
}

.feature-card {
    background: rgba(15, 15, 25, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 320px;
    z-index: 1;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .feature-card {
        min-height: 280px;
        padding: 25px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        padding: 18px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        min-height: 240px;
        padding: 20px;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        margin-top: 10px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        padding: 16px;
        margin-bottom: 15px;
    }
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, var(--primary-color), rgba(var(--primary-color-rgb), 0.5));
  transition: height 0.4s ease;
}

.feature-card.active {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--primary-color-rgb), 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.3);
  background: rgba(30, 30, 45, 0.6);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.2), rgba(var(--primary-color-rgb), 0.05));
  border-radius: 20px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
  transform: translateZ(0);
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.5), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.1) 0%, rgba(var(--primary-color-rgb), 0) 70%);
  z-index: -1;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: translateY(-8px) scale(1.1);
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.3), rgba(var(--primary-color-rgb), 0.1));
  box-shadow: 0 15px 30px rgba(var(--primary-color-rgb), 0.2), inset 0 2px 3px rgba(255, 255, 255, 0.2);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

.feature-card:hover .feature-icon::before {
  opacity: 0.8;
}

.feature-card:hover .feature-icon::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.feature-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(var(--primary-color-rgb), 0.7));
  transition: all 0.4s ease;
  transform: scale(1);
}

.feature-card:hover .feature-icon img {
  filter: drop-shadow(0 0 15px rgba(var(--primary-color-rgb), 0.9));
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.3s ease, background 0.3s ease;
}

.feature-card:hover h3::after {
  width: 100%;
  background: linear-gradient(90deg, var(--primary-color), rgba(var(--primary-color-rgb), 0.5));
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1.05rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-number {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 3.5rem;
  font-weight: 900;
  opacity: 0.08;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 0;
  letter-spacing: -2px;
}

.feature-card:hover .feature-number {
  opacity: 0.15;
  transform: scale(1.15);
  color: var(--primary-color);
}

/* Screenshots section */
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.screenshot {
  background: rgba(15, 15, 25, 0.5);
  border-radius: 16px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.screenshot:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(var(--primary-color-rgb), 0.3);
}

.screenshot img {
  width: 100%;
  border-radius: 16px;
  transition: all 0.3s ease;
  aspect-ratio: 9/16;
  object-fit: cover;
}

.screenshot p {
  display: none;
}

.screenshot-overlay {
  display: none;
}

/* Screenshots section heading */
.screenshots h2 {
  margin-bottom: 30px;
}

/* FAQ section heading */
.faq h2 {
  margin-bottom: 35px;
}

/* CTA section heading */
.cta h2 {
  margin-bottom: 20px;
}

.cta h2::after {
  display: none;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
  color: var(--text-light);
}

.button-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-particles::before,
.cta-particles::after {
  content: '';
  position: absolute;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.1;
}

.cta-particles::before {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  filter: blur(50px);
}

.cta-particles::after {
  width: 250px;
  height: 250px;
  bottom: -100px;
  right: -100px;
  filter: blur(40px);
  background: var(--secondary-color);
}

/* Footer */
footer {
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(15, 15, 25, 0.98) 100%);
  backdrop-filter: blur(20px);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(var(--primary-color-rgb), 0.15);
  position: relative;
  overflow: hidden;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(var(--primary-color-rgb), 0.7), 
    transparent
  );
  animation: borderPulse 3s infinite alternate;
}

footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  position: relative;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 500px;
  position: relative;
  margin: 0 auto;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #fff, var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 15px rgba(var(--primary-color-rgb), 0.6));
  transition: transform 0.4s ease, filter 0.4s ease;
  animation: pulse-logo 3s infinite alternate;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  padding-left: 0;
  border-left: none;
  margin-bottom: 25px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.footer-social a:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
}

.footer-social a:hover::before {
  opacity: 1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.footer-links h4 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 20px 0;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: inline-block;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  opacity: 0.7;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.copyright {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
}

.copyright::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(var(--primary-color-rgb), 0.3), 
    transparent
  );
}

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.copyright-symbol {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-right: 3px;
}

.copyright .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-links-mini {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links-mini a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.3s ease;
  position: relative;
}

.footer-links-mini a:hover {
  color: var(--primary-color);
}

.footer-links-mini a:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -12px;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  
  .footer-logo {
    align-items: center;
    text-align: center;
  }
  
  .footer-logo::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-logo p {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(var(--primary-color-rgb), 0.3);
    padding-top: 15px;
  }
  
  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-links::before {
    display: none;
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .footer-links a:hover {
    transform: none;
  }
  
  .copyright {
    margin-top: 40px;
    padding-top: 20px;
  }
  
  .footer-links-mini {
    gap: 15px;
    margin-top: 5px;
  }
  
  .footer-links-mini a {
    font-size: 0.8rem;
  }
  
  .footer-links-mini a:not(:last-child)::after {
    right: -9px;
  }
  
  .footer-logo-wrapper {
    margin-bottom: 15px;
  }
  
  .footer-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .footer-links-mini {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-links-mini a:not(:last-child)::after {
    display: none;
  }
  
  .footer-logo-wrapper {
    gap: 10px;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
}

/* Cursor Trail */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-color), transparent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: screen;
}

/* Enhanced tech badge styling */
.tech-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(var(--primary-color-rgb), 0.15);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(var(--primary-color-rgb), 0.3);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px rgba(var(--primary-color-rgb), 0.2);
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: rgba(var(--primary-color-rgb), 0.25);
  box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.4);
  transform: translateY(-2px);
}

/* Button Arrow */
.button-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.button:hover .button-arrow {
  transform: translateX(5px);
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: float-particle 15s infinite ease-in-out;
}

.hero-particles::before {
  background: var(--primary-color);
  top: 20%;
  left: 15%;
}

.hero-particles::after {
  background: var(--secondary-color);
  bottom: 20%;
  right: 15%;
  animation-delay: 5s;
}

@keyframes float-particle {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(100px, 50px);
  }
  50% {
    transform: translate(200px, -50px);
  }
  75% {
    transform: translate(100px, -100px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Tech Specs */
.tech-specs {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.spec {
  text-align: center;
}

.spec-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.spec-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 90%;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px;
  }
  
  .step {
    min-width: unset;
    width: 100%;
    min-height: 250px;
    padding: 20px;
  }
  
  .step-content h3 {
    font-size: 1.2rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .step .button {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  /* Mobile header fixes */
  header {
    padding: 15px 0;
    background: rgba(10, 10, 15, 0.6);
  }
  
  header.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.8);
  }
  
  nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
    width: 100%;
  }
  
  .nav-logo {
    margin: 0;
    padding: 6px 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(6, 182, 212, 0.25));
    border: 1px solid rgba(14, 165, 233, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 20px rgba(14, 165, 233, 0.15);
    transform: translateY(0);
  }
  
  .nav-logo img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.5));
  }
  
  .nav-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
  }
  
  .nav-links {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0;
    margin-top: 5px;
    position: relative;
    gap: 8px;
    justify-content: flex-start;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    border: none;
    max-width: 100%;
  }
  
  .nav-links::-webkit-scrollbar {
    display: none;
  }
  
  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 0.9rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    margin-right: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
    min-width: auto;
  }
  
  .nav-links a.active {
    background: linear-gradient(
      120deg,
      rgba(var(--primary-color-rgb), 0.2),
      rgba(var(--secondary-color-rgb), 0.2)
    );
    transform: translateY(-1px);
  }
  
  .nav-links .download-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    border: none;
    margin-left: 5px;
  }
  
  /* Remove ALL pseudo-elements to avoid conflicts */
  .nav-links::after,
  .nav-links::before {
    display: none !important;
  }
  
  /* Add scroll behavior to header when scrolling the page */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    transition: transform 0.3s ease;
  }
  
  header.scrolled {
    padding: 12px 0;
    background-color: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  header.scroll-down {
    transform: translateY(-100%);
  }
  
  header.scroll-up {
    transform: translateY(0);
  }
  
  .nav-links a:hover {
    background-color: rgba(14, 165, 233, 0.15);
    transform: translateY(-2px);
    color: white;
  }
  
  .nav-links a.active {
    color: white;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
    border: none;
  }
  
  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 3px;
    background: white;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  }
  
  /* Add indicator for scrollable menu */
  .nav-links::before,
  .nav-links::after {
    content: '';
    position: absolute;
    top: 0;
    width: 20px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  
  .nav-links::before {
    left: 0;
    background: linear-gradient(to right, rgba(10, 10, 15, 0.9), transparent);
    border-radius: 20px 0 0 20px;
  }
  
  .nav-links::after {
    right: 0;
    background: linear-gradient(to left, rgba(10, 10, 15, 0.9), transparent);
    border-radius: 0 20px 20px 0;
  }
  
  /* Adjust hero padding for mobile */
  .hero {
    padding-top: 180px; /* Increase padding-top to account for mobile header height */
    padding-bottom: 60px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover {
    color: var(--primary-color);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .nav-links a.active {
    color: white;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
    position: relative;
    border: none;
  }
  
  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 3px;
    background: white;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 5px;
    margin: 0;
  }
  
  .step {
    min-width: unset;
    width: 100%;
    min-height: 220px;
    padding: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .step-content p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .step .button {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  
  /* Remove scrollbar indicators since we're not scrolling anymore */
  .steps::after,
  .steps::before {
    display: none;
  }
  
  .screenshot-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .screenshot {
    margin-bottom: 15px;
  }
  
  .screenshot img {
    aspect-ratio: 9/16;
    object-fit: cover;
  }
  
  .footer-social {
    justify-content: center;
    margin-top: 15px;
  }
  
  .footer-logo-wrapper {
    margin-bottom: 15px;
  }
  
  .footer-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  /* Smaller mobile header fixes */
  header {
    padding: 12px 0;
  }
  
  header.scrolled {
    padding: 10px 0;
  }
  
  .nav-logo {
    padding: 5px 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(6, 182, 212, 0.25));
  }
  
  .nav-logo img {
    width: 30px;
    height: 30px;
    border-radius: 6px;
  }
  
  .nav-logo span {
    font-size: 1.15rem;
  }
  
  .nav-links {
    padding: 8px 0;
    gap: 6px;
  }
  
  .nav-links a {
    padding: 7px 12px;
    font-size: 0.85rem;
    border-radius: 8px;
  }
  
  .nav-links .download-btn {
    padding: 7px 14px;
    font-size: 0.85rem;
  }
  
  /* Further reduce hero padding */
  .hero {
    padding-top: 160px; /* Adjust for smaller header on very small screens */
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 5px;
    margin: 0;
  }
  
  .step {
    min-width: unset;
    width: 100%;
    min-height: 220px;
    padding: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .step-content p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .step .button {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  
  /* Keep screenshot gallery as 2 columns even on smaller screens */
  .screenshot-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .screenshot {
    margin-bottom: 10px;
  }
  
  .footer-links-mini {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-links-mini a:not(:last-child)::after {
    display: none;
  }
}

/* Animation for particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.3;
  filter: blur(1px);
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-15px) translateX(10px);
  }
  50% {
    transform: translateY(-25px) translateX(-10px);
  }
  75% {
    transform: translateY(-10px) translateX(-15px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

/* Particle container styles */
.hero-particles,
.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* FAQ section styling */
.faq {
  background-color: rgba(15, 15, 20, 0.9);
  padding: 70px 0;
}

.faq-item {
  background: rgba(25, 25, 35, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item.active {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  border-color: rgba(var(--primary-color-rgb), 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 18px 50px 18px 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  margin: 0;
  color: #fff;
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--primary-color);
}

.faq-item p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  padding: 0 20px;
  margin: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  opacity: 0;
}

.faq-item.expanded {
  border-color: rgba(var(--primary-color-rgb), 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  background: rgba(30, 30, 40, 0.6);
}

.faq-item.expanded h3 {
  color: var(--primary-color);
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.1);
  padding-bottom: 18px;
}

.faq-item.expanded h3::after {
  transform: rotate(45deg);
}

.faq-item.expanded p {
  padding: 20px;
  height: auto;
  opacity: 1;
}

@media (max-width: 768px) {
  .faq-item {
    margin-bottom: 10px;
  }
  
  .faq-item h3 {
    font-size: 1rem;
    padding: 15px 45px 15px 15px;
    line-height: 1.4;
  }
  
  .faq-item h3::after {
    right: 15px;
    font-size: 1.3rem;
  }
  
  .faq-item.expanded p {
    padding: 15px;
    line-height: 1.5;
    font-size: 0.9rem;
  }
  
  .faq-item p {
    padding: 0 15px;
  }
}

/* Active animation class */
.feature-card.active,
.step.active,
.screenshot.active,
.faq-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* Animation styles for elements */
.feature-card, .step, .screenshot, .faq-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Stagger animations for feature cards */
.feature-card:nth-child(2) {
  transition-delay: 0.1s;
}

.feature-card:nth-child(3) {
  transition-delay: 0.2s;
}

.feature-card:nth-child(4) {
  transition-delay: 0.3s;
}

/* Stagger animations for steps */
.step:nth-child(2) {
  transition-delay: 0.1s;
}

.step:nth-child(3) {
  transition-delay: 0.2s;
}

.step:nth-child(4) {
  transition-delay: 0.3s;
}

/* Stagger animations for screenshots */
.screenshot:nth-child(2) {
  transition-delay: 0.1s;
}

.screenshot:nth-child(3) {
  transition-delay: 0.2s;
}

/* Button arrow animation */
.button-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.button:hover .button-arrow {
  transform: translateX(5px);
}

/* Cursor trail additional styles */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-color), transparent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: screen;
}

/* Highlight styling for headings */
.highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: rgba(var(--primary-color-rgb), 0.1);
  z-index: -1;
  transform: skewX(-5deg);
  border-radius: 2px;
}

/* Override for h1 highlight to remove the border */
h1 .highlight::after {
  display: none;
}

/* Keep the border for h2 highlights */
h2 .highlight::after {
  height: 20%;
  bottom: 3px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-arrow {
  margin-top: 8px;
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(var(--primary-color-rgb), 0.2);
}

.back-to-top .arrow {
  font-size: 24px;
}

/* Add more particles */
.particle:nth-child(even) {
  background-color: var(--secondary-color);
}

.particle:nth-child(3n) {
  background-color: #fff;
  opacity: 0.3;
}

@keyframes pulse-logo {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(var(--primary-color-rgb), 0.7));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(var(--primary-color-rgb), 0.9));
  }
}

/* Particle styling */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background-color: var(--primary-color);
  border-radius: 50%;
  filter: blur(1px);
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-30px) translateX(15px);
  }
  50% {
    transform: translateY(-10px) translateX(30px);
  }
  75% {
    transform: translateY(20px) translateX(15px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

.features-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.7;
}

.features-circles .circle-1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(var(--primary-color-rgb), 0.06), transparent 70%);
  animation: pulse-circle 8s infinite alternate ease-in-out;
}

.features-circles .circle-2 {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(var(--primary-color-rgb), 0.04), transparent 70%);
  animation: pulse-circle 12s infinite alternate-reverse ease-in-out;
}

@keyframes pulse-circle {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

/* Global h3 styles */
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}

/* Feature card h3 */
.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #fff;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.feature-card:hover h3::after {
  width: 100%;
}

/* Step content h3 */
.step-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

/* FAQ item h3 */
.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.expanded h3::after {
  transform: rotate(45deg);
}

/* Media queries for h3 on smaller screens */
@media (max-width: 768px) {
  h3 {
    font-size: 1.2rem;
  }
  
  .feature-card h3 {
    font-size: 0.95rem;
  }
  
  .step-content h3 {
    font-size: 1.1rem;
  }
  
  .faq-item h3 {
    font-size: 1rem;
    padding: 12px 15px;
  }
}

.tech-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.7;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-color-rgb), 0.15);
  box-shadow: 0 0 30px rgba(var(--primary-color-rgb), 0.05);
  animation: pulse-circle 8s infinite ease-in-out;
}

.circle-1 {
  top: 15%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.03) 0%, transparent 70%);
}

.circle-2 {
  bottom: 20%;
  left: 5%;
  width: 400px;
  height: 400px;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.02) 0%, transparent 70%);
}

.circle-3 {
  top: 40%;
  right: 25%;
  width: 200px;
  height: 200px;
  animation-delay: 4s;
  background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.04) 0%, transparent 70%);
}

.how-to-add .tech-circles .circle {
  border-color: rgba(var(--primary-color-rgb), 0.1);
}

.how-to-add .tech-circles .circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  border: 1px dashed rgba(var(--primary-color-rgb), 0.2);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: rotate-circle 20s linear infinite;
}

.how-to-add .tech-circles .circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  border: 1px dotted rgba(var(--primary-color-rgb), 0.15);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: rotate-circle-reverse 15s linear infinite;
}

.how-to-add .tech-circles .circle-1::before {
  animation-duration: 25s;
}

.how-to-add .tech-circles .circle-2::before {
  animation-duration: 30s;
}

.how-to-add .tech-circles .circle-3::before {
  animation-duration: 20s;
}

.how-to-add .tech-circles .circle-1::after {
  animation-duration: 18s;
}

.how-to-add .tech-circles .circle-2::after {
  animation-duration: 22s;
}

.how-to-add .tech-circles .circle-3::after {
  animation-duration: 15s;
}

@keyframes rotate-circle {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate-circle-reverse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes pulse-circle {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

.step .button {
  margin-top: auto;
  padding: 10px 15px;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--primary-color), rgba(var(--primary-color-rgb), 0.8));
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(var(--primary-color-rgb), 0.3);
}

.step .button::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.7s ease;
}

.step .button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(var(--primary-color-rgb), 0.4);
  background: linear-gradient(135deg, var(--primary-color), rgba(var(--primary-color-rgb), 0.9));
}

.step .button:hover::before {
  left: 100%;
}

.step .button .button-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.step .button:hover .button-arrow {
  transform: translateX(5px);
}

.footer-links h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin: 0 0 15px 0;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.footer-links a {
  color: var(--text-light);
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  padding-left: 15px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.copyright {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
}

.copyright::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(var(--primary-color-rgb), 0.3), 
    transparent
  );
}

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  
  .footer-logo {
    align-items: center;
    text-align: center;
  }
  
  .footer-logo::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-logo p {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(var(--primary-color-rgb), 0.3);
    padding-top: 15px;
  }
  
  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-links::before {
    display: none;
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .footer-links a:hover {
    transform: none;
  }
  
  .copyright {
    margin-top: 40px;
    padding-top: 20px;
  }
}

@keyframes pulse-active {
  0% {
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.8);
  }
  100% {
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
  }
}

.nav-links a.pulse-active {
  animation: pulse-active 1s ease;
}

.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .nav-links a {
    position: relative;
    overflow: hidden;
  }
}

/* Add a clear separation between header and hero */
.hero-container {
  width: 100%;
  position: relative;
  padding-top: var(--header-height);
  background-color: var(--background-color);
  overflow: hidden;
}

@media (max-width: 768px) {
  /* Update hero container for mobile */
  .hero-container {
    padding-top: var(--header-height-mobile);
  }
  
  .hero {
    padding: 60px 0; /* Adjusted padding */
  }
}

@media (max-width: 480px) {
  /* Update hero container for smaller screens */
  .hero-container {
    padding-top: var(--header-height-small);
  }
  
  .hero {
    padding: 50px 0; /* Further reduced padding */
  }
}

.nav-links .download-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  border: none;
  transition: all 0.3s ease;
}

.nav-links .download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(14, 165, 233, 0.4);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.nav-links .download-btn::after {
  display: none;
}

@media (max-width: 768px) {
  .nav-links .download-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    border: none;
  }
  
  .nav-links .download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
  }
}

/* Creator Testimonial Section */
.creator-testimonial {
  padding: 60px 0;
  position: relative;
  background: linear-gradient(to bottom, var(--background-color), rgba(10, 10, 15, 0.95));
  overflow: hidden;
}

.creator-testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(var(--primary-color-rgb), 0.3), 
    rgba(var(--secondary-color-rgb), 0.3), 
    transparent
  );
  opacity: 0.5;
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(var(--primary-color-rgb), 0.05);
  position: relative;
  overflow: hidden;
  max-width: 1150px;
  margin: 0 auto;
}

.testimonial-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
  z-index: 0;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-color-rgb), 0.2),
    rgba(var(--secondary-color-rgb), 0.2)
  );
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0 0 5px 0;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-color-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .creator-testimonial {
    padding: 40px 0;
  }
  
  .testimonial-content {
    padding: 30px 20px;
    border-radius: 15px;
  }
  
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
  }
  
  .author-info h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .creator-testimonial {
    padding: 30px 0;
  }
  
  .testimonial-content {
    padding: 25px 15px;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  .author-avatar {
    width: 45px;
    height: 45px;
  }
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(var(--primary-color-rgb), 0.15);
  z-index: 1;
}

.testimonial-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.testimonial-circles .circle-1 {
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  opacity: 0.1;
  animation-delay: 0s;
}

.testimonial-circles .circle-2 {
  bottom: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  opacity: 0.08;
  animation-delay: 1s;
} 

/* Circle Animations */
.tech-circles .circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 120, 255, 0.2), rgba(120, 0, 255, 0.2));
    animation: float 15s infinite ease-in-out;
}

.about-circles .circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    opacity: 0.4;
    animation-delay: 0s;
}

.about-circles .circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    opacity: 0.3;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: -20px auto 40px;
    max-width: 800px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-intro {
        font-size: 1.1rem;
        margin: -15px auto 30px;
    }
}

@media (max-width: 480px) {
    .section-intro {
        font-size: 1rem;
        margin: -10px auto 25px;
    }
}

.quick-tip {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 120, 255, 0.1);
    border-left: 3px solid rgba(0, 120, 255, 0.6);
    border-radius: 0 8px 8px 0;
    position: relative;
}

.quick-tip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 120, 255, 0.05), transparent);
    border-radius: 0 8px 8px 0;
    z-index: -1;
}

.quick-tip h4 {
    color: rgba(0, 120, 255, 0.9);
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
}

.quick-tip p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .quick-tip {
        padding: 12px;
        margin-top: 15px;
    }
    
    .quick-tip h4 {
        font-size: 0.95rem;
    }
    
    .quick-tip p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .quick-tip {
        padding: 10px;
        margin-top: 12px;
    }
    
    .quick-tip h4 {
        font-size: 0.9rem;
    }
    
    .quick-tip p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .step {
        min-height: 280px;
        padding: 20px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .step-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step {
        min-height: auto;
        padding: 18px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .step-content p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
}

.why-want {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(15, 15, 25, 0.3), rgba(15, 15, 25, 0.5));
}

.why-want h2 {
    text-align: center;
    margin-bottom: 40px;
}

.why-want-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-want-text {
    flex: 1;
    background: rgba(15, 15, 25, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.why-want-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.why-want-text p:last-child {
    margin-bottom: 0;
}

.why-want-image {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse-image {
    width: 180px;
    height: 180px;
    filter: drop-shadow(0 0 15px rgba(0, 120, 255, 0.6));
    animation: pulse-image 3s infinite ease-in-out;
}

@keyframes pulse-image {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(0, 120, 255, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(0, 120, 255, 0.8));
    }
}

.why-want-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.why-want-circles .circle-1 {
    width: 350px;
    height: 350px;
    top: -150px;
    left: -100px;
    opacity: 0.3;
    animation-delay: -2s;
}

.why-want-circles .circle-2 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    right: -50px;
    opacity: 0.25;
    animation-delay: -7s;
}

@media (max-width: 768px) {
    .why-want {
        padding: 60px 0;
    }
    
    .why-want-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .why-want-text {
        padding: 25px;
        text-align: center;
    }
    
    .why-want-text p {
        font-size: 1rem;
    }
    
    .why-want-image {
        flex: 0 0 auto;
    }
    
    .pulse-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .why-want {
        padding: 50px 0;
    }
    
    .why-want-text {
        padding: 20px;
    }
    
    .why-want-text p {
        font-size: 0.95rem;
    }
    
    .pulse-image {
        width: 120px;
        height: 120px;
    }
}

.try-it-out {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to bottom, rgba(15, 15, 25, 0.4), rgba(15, 15, 25, 0.6));
    overflow: hidden;
}

.try-it-out h2 {
    text-align: center;
    margin-bottom: 30px;
}

.try-it-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.try-it-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.try-it-button {
    margin-top: 20px;
}

.try-it-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.try-it-circles .circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
    opacity: 0.3;
    animation-delay: -3s;
}

.try-it-circles .circle-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: 15%;
    opacity: 0.25;
    animation-delay: -6s;
}

@media (max-width: 768px) {
    .try-it-out {
        padding: 60px 0;
    }
    
    .try-it-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .try-it-out {
        padding: 50px 0;
    }
    
    .try-it-content p {
        font-size: 1rem;
    }
}

/* Water Eject Shortcut Section */
.shortcut-download {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(15, 15, 25, 0.98) 100%);
    z-index: 1;
}

/* Holographic Card */
.holographic-card {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(20, 20, 35, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 30px rgba(var(--accent-color-rgb), 0.2);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s ease;
}

.holographic-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 40px rgba(var(--accent-color-rgb), 0.3);
}

.holographic-inner {
    position: relative;
    z-index: 2;
    padding: 40px;
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.card-logo {
    width: 80px;
    height: 80px;
    margin-right: 25px;
    position: relative;
}

.holo-logo {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(var(--accent-color-rgb), 0.5));
    animation: float-logo 4s infinite ease-in-out;
}

.card-title {
    flex: 1;
}

.card-title h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 5px;
    color: #fff;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.version-pill {
    display: inline-block;
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.3), rgba(var(--primary-color-rgb), 0.3));
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-left: 15px;
    color: var(--accent-color);
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(var(--accent-color-rgb), 0.3);
    animation: pulse-version 2s infinite alternate;
}

.card-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 1px;
}

/* Card Body */
.card-body {
    margin-bottom: 30px;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin: 0 10px 10px 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(var(--accent-color-rgb), 0.3);
}

.stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--accent-color);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-description {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 3px solid var(--accent-color);
}

.card-description p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.card-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.status-indicator {
    display: flex;
    align-items: center;
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: #4ade80;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
    animation: pulse-dot 2s infinite;
}

.status-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(74, 222, 128, 0.4);
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

.status-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4ade80;
}

.status-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.8), rgba(var(--secondary-color-rgb), 0.8));
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 30px rgba(var(--accent-color-rgb), 0.2);
    position: relative;
    overflow: hidden;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(var(--accent-color-rgb), 0.3);
}

.download-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(0deg);
    animation: rotate-slow 10s infinite linear;
}

.download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.card-developer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Holographic Effects */
.holographic-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.holo-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 55%,
        transparent 100%
    );
    transform: rotate(25deg);
    animation: shine-effect 6s infinite linear;
}

.holo-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(var(--accent-color-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-color-rgb), 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.holo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(var(--accent-color-rgb), 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s infinite alternate;
}

/* Shortcut Features */
.shortcut-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 0 15px 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.7;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--accent-color-rgb), 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-color);
    background: rgba(var(--accent-color-rgb), 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(var(--accent-color-rgb), 0.2);
    box-shadow: 0 0 20px rgba(var(--accent-color-rgb), 0.3);
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 15px;
    color: #fff;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Particles */
.shortcut-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--accent-color-rgb), 0.3);
    box-shadow: 0 0 20px rgba(var(--accent-color-rgb), 0.5);
    animation: float-particle 15s infinite ease-in-out;
}

.particle-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    opacity: 0.1;
    animation-delay: 0s;
}

.particle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 5%;
    opacity: 0.15;
    animation-delay: 2s;
}

.particle-3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 20%;
    opacity: 0.1;
    animation-delay: 4s;
}

.particle-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    opacity: 0.08;
    animation-delay: 6s;
}

.particle-5 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 30%;
    opacity: 0.12;
    animation-delay: 8s;
}

/* Animations */
@keyframes float-logo {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes pulse-version {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(0.9);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes shine-effect {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(25deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(25deg);
    }
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(0) translateX(40px);
    }
    75% {
        transform: translateY(30px) translateX(20px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .shortcut-download {
        padding: 80px 0;
    }
    
    .holographic-inner {
        padding: 30px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .card-logo {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .card-title h3 {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .version-pill {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .card-stats {
        flex-direction: column;
    }
    
    .stat-box {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .card-footer {
        flex-direction: column;
    }
    
    .download-button {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .card-developer {
        text-align: center;
    }
    
    .feature-item {
        min-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .shortcut-download {
        padding: 60px 0;
    }
    
    .holographic-inner {
        padding: 20px;
    }
    
    .card-title h3 {
        font-size: 1.5rem;
    }
    
    .card-subtitle {
        font-size: 0.9rem;
    }
    
    .card-description p {
        font-size: 0.95rem;
    }
    
    .download-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
}

/* Legal Pages (Privacy Policy & Terms) Styles */
.legal-page {
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #121218 100%);
    min-height: 100vh;
    overflow: hidden;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: right;
}

.legal-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-highlight);
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: var(--color-highlight);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-circles .circle {
    opacity: 0.15;
}

/* Contact Page Styles */
.contact-page {
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(180deg, #0a0a0f 0%, #121218 100%);
    min-height: 100vh;
    overflow: hidden;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card, .message-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover, .message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.contact-card-inner, .message-card-inner {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.contact-icon {
    background: rgba(var(--color-highlight-rgb), 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-highlight);
}

.contact-card h2, .message-card h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-highlight);
}

.contact-card p, .message-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--color-highlight);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: auto;
    transition: all 0.3s ease;
}

.contact-link:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.social-link {
    color: var(--color-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(var(--color-highlight-rgb), 0.2);
    color: var(--color-highlight);
}

.message-card {
    margin-top: 1rem;
}

.message-card-inner {
    padding: 2rem;
}

.message-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.message-card li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.email-button {
    margin-top: 1.5rem;
    text-align: center;
}

.faq-link {
    text-align: center;
    margin-top: 1rem;
}

.faq-link a {
    color: var(--color-highlight);
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-link a:hover {
    text-decoration: underline;
}

.contact-circles .circle {
    opacity: 0.15;
}

/* Media Queries for Legal and Contact Pages */
@media (max-width: 768px) {
    .legal-page, .contact-page {
        padding: 100px 0 60px;
    }
    
    .legal-page h1, .contact-page h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .legal-content, .contact-card-inner, .message-card-inner {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-page, .contact-page {
        padding: 80px 0 40px;
    }
    
    .legal-page h1, .contact-page h1 {
        font-size: 1.8rem;
    }
    
    .legal-section h2, .contact-card h2, .message-card h2 {
        font-size: 1.2rem;
    }
    
    .legal-content, .contact-card-inner, .message-card-inner {
        padding: 1rem;
    }
}

/* Banner Image Styles */
.banner-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .section-banner {
        height: auto;
    }
}

@media (max-width: 480px) {
    .banner-container {
        margin-top: -20px;
    }
}

/* Android page styles */
.android-hero {
    background: linear-gradient(135deg, #0a1025 0%, #121830 50%, #1a2040 100%);
}

.android-player {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #0a1025 0%, #121830 50%, #1a2040 100%);
    position: relative;
    overflow: hidden;
}

.android-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.android-player h1 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    margin-top: 3rem;
    background: linear-gradient(90deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.futuristic-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

/* Removed hologram-related styles */

.player-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: 0; /* Adjusted margin since hologram is removed */
}

.player-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.player-instructions {
    margin-bottom: 2rem;
}

.player-instructions h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.player-instructions ol {
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.player-instructions li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    padding: 1.5rem 0;
}

.player-status {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.status-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
}

.status-label span {
    color: #00e5ff;
    font-weight: 600;
}

.player-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #0a3d62, #1e3799);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(10, 61, 98, 0.4);
    width: 100%;
    max-width: 250px;
    position: relative;
    overflow: hidden;
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 61, 98, 0.5);
    background: linear-gradient(90deg, #0a3d62, #273c75);
}

.play-button:active {
    transform: translateY(-1px);
}

.stop-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    width: 100%;
    max-width: 250px;
    opacity: 0.9;
}

.stop-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.stop-button:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(30, 55, 153, 0.8), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-button:hover .button-glow {
    opacity: 0.3;
}

/* Remove wave-related CSS */

.player-progress {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0a3d62, #1e3799);
    border-radius: 5px;
    transition: width 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: progress-shine 1.5s linear infinite;
}

@keyframes progress-shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.timer {
    color: #ffffff;
    font-size: 1rem;
    text-align: center;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #00e5ff;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

/* Stage-specific styling */
.timer.stage-1 {
    border-left-color: #0a3d62; /* Dark blue */
}

.timer.stage-2 {
    border-left-color: #1e3799; /* Medium blue */
}

.timer.stage-3 {
    border-left-color: #3742fa; /* Bright blue */
}

.timer.stage-4 {
    border-left-color: #5352ed; /* Purple blue */
}

.timer.stage-5 {
    border-left-color: #1e90ff; /* Dodger blue */
    background: rgba(10, 61, 98, 0.4);
    font-weight: 700;
}

.player-info {
    flex: 1;
    min-width: 300px;
}

.player-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.player-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.player-tips {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.player-tips h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.player-tips ul {
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.player-tips li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Comparison section */
.comparison {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 15, 30, 0.8) 0%, rgba(15, 20, 35, 0.9) 100%);
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 198, 255, 0.5), transparent);
}

.comparison::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 65, 108, 0.5), transparent);
}

.comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.comparison h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 198, 255, 0.7), rgba(255, 65, 108, 0.7), transparent);
}

.comparison-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-card {
    flex: 1;
    max-width: 400px;
    background: rgba(15, 20, 35, 0.7);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    animation: rotate-glow 15s linear infinite;
    pointer-events: none;
}

.android-card {
    background: linear-gradient(135deg, rgba(15, 20, 35, 0.7), rgba(76, 175, 80, 0.1));
    border-left: 3px solid rgba(76, 175, 80, 0.7);
}

.android-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.iphone-card {
    background: linear-gradient(135deg, rgba(15, 20, 35, 0.7), rgba(0, 122, 255, 0.1));
    border-left: 3px solid rgba(0, 122, 255, 0.7);
}

.iphone-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 122, 255, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.android-card:hover {
    border-color: rgba(76, 175, 80, 1);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

.iphone-card:hover {
    border-color: rgba(0, 122, 255, 1);
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.2);
}

.comparison-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.comparison-header svg {
    width: 48px;
    height: 48px;
    margin-right: 1rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.comparison-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.android-card .comparison-header svg {
    fill: rgba(76, 175, 80, 0.9);
}

.iphone-card .comparison-header svg {
    fill: rgba(0, 122, 255, 0.9);
}

.comparison-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 2;
}

.comparison-features li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.comparison-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.android-card .comparison-features li:before {
    color: rgba(76, 175, 80, 0.9);
}

.iphone-card .comparison-features li:before {
    color: rgba(0, 122, 255, 0.9);
}

.comparison-card .button {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    border-radius: 50px;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.android-card .button {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.iphone-card .button {
    background: linear-gradient(135deg, #007AFF, #0055B3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.comparison-card .button:hover {
    transform: translateY(-3px);
}

.android-card .button:hover {
    box-shadow: 0 7px 20px rgba(76, 175, 80, 0.4);
}

.iphone-card .button:hover {
    box-shadow: 0 7px 20px rgba(0, 122, 255, 0.4);
}

.comparison-card .button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.comparison-card .button:hover::before {
    opacity: 0.8;
    animation: rotate-glow 3s linear infinite;
}

@media (max-width: 768px) {
    .comparison-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .comparison-card {
        width: 100%;
        max-width: 500px;
    }
    
    .comparison h2 {
        font-size: 2rem;
    }
    
    .comparison-header h3 {
        font-size: 1.6rem;
    }
    
    .comparison-features li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .comparison {
        padding: 3rem 0;
    }
    
    .comparison h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .comparison-header {
        margin-bottom: 1.2rem;
    }
    
    .comparison-header svg {
        width: 40px;
        height: 40px;
    }
    
    .comparison-header h3 {
        font-size: 1.4rem;
    }
    
    .comparison-features li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .comparison-card .button {
        padding: 0.9rem;
        font-size: 1rem;
    }
}

/* Add frequency visualizer styles */
.frequency-visualizer {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.frequency-visualizer::before {
    content: none;
}

.frequency-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.frequency-label::after {
    content: 'Hz';
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    margin-left: 0.3rem;
    vertical-align: super;
    text-shadow: none;
}

.frequency-wave {
    width: 100%;
    height: 120px;
    position: relative;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    overflow: hidden;
}

.wave-line {
    width: 100%;
    height: 100%;
    background: transparent;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.wave-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 Q15,0 30,60 Q45,120 60,60 Q75,0 90,60 Q105,120 120,60 Q135,0 150,60 Q165,120 180,60 Q195,0 210,60 Q225,120 240,60 Q255,0 270,60 Q285,120 300,60 Q315,0 330,60 Q345,120 360,60 Q375,0 390,60 Q405,120 420,60 Q435,0 450,60 Q465,120 480,60 Q495,0 510,60 Q525,120 540,60 Q555,0 570,60 Q585,120 600,60 Q615,0 630,60 Q645,120 660,60 Q675,0 690,60 Q705,120 720,60 Q735,0 750,60 Q765,120 780,60 Q795,0 810,60 Q825,120 840,60 Q855,0 870,60 Q885,120 900,60 Q915,0 930,60 Q945,120 960,60 Q975,0 990,60 Q1005,120 1020,60 Q1035,0 1050,60 Q1065,120 1080,60 Q1095,0 1110,60 Q1125,120 1140,60 Q1155,0 1170,60 Q1185,120 1200,60' fill='none' stroke='%23e30000' stroke-width='3'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
    animation: none;
}

.wave-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #0f172a;
    opacity: 0.5;
    animation: none;
}

@keyframes wave-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1200px 0;
    }
}

@keyframes wave-animation-reverse {
    0% {
        background-position: 1200px 0;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.frequency-info {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    margin-top: 0.5rem;
    position: relative;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.frequency-info::before {
    content: none;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.5);
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .frequency-visualizer {
        padding: 1rem;
    }
    
    .frequency-label {
        font-size: 1.2rem;
    }
    
    .frequency-wave {
        height: 100px;
    }
    
    .frequency-info {
        font-size: 0.8rem;
    }
    
    .timer {
        font-size: 0.9rem;
        padding: 0.7rem 0.8rem;
        margin-top: 0.6rem;
    }
    
    .progress-bar {
        height: 10px;
    }
}

@media (max-width: 480px) {
    .frequency-visualizer {
        padding: 0.8rem;
    }
    
    .frequency-label {
        font-size: 1rem;
    }
    
    .frequency-wave {
        height: 80px;
    }
    
    .frequency-info {
        font-size: 0.7rem;
        padding: 0;
    }
    
    .timer {
        font-size: 0.85rem;
        padding: 0.6rem;
        line-height: 1.3;
        border-left-width: 3px;
    }
    
    .progress-bar {
        height: 8px;
        border-radius: 4px;
    }
    
    .progress-fill {
        border-radius: 3px;
    }
}

/* Android section on homepage */
.android-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a1025 0%, #121830 50%, #1a2040 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(var(--primary-color-rgb), 0.3);
    border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.3);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.android-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(var(--primary-color-rgb), 0.15), transparent 70%);
    z-index: 1;
}

.android-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.android-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.android-section h2 .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.android-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.android-section .button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.4);
    margin-top: 1rem;
}

.android-section .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(var(--primary-color-rgb), 0.5);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.android-section .button::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: all 0.6s ease;
}

.android-section .button:hover::before {
    left: 100%;
}

.android-section .button svg {
    margin-left: 0.5rem;
}

.android-section-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.android-section-circles .circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(var(--primary-color-rgb), 0.1), transparent);
    opacity: 0.5;
}

.android-section-circles .circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
    animation: pulse-circle 8s ease-in-out infinite alternate;
}

.android-section-circles .circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 5%;
    animation: pulse-circle 6s ease-in-out infinite alternate-reverse;
}

@media (max-width: 768px) {
    .android-section h2 {
        font-size: 2.5rem;
    }
    
    .android-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .android-section {
        padding: 3rem 0;
    }
    
    .android-section h2 {
        font-size: 2rem;
    }
    
    .android-section p {
        font-size: 1rem;
    }
    
    .android-section .button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Changelog Styles */
.changelog-container {
    margin-top: 3rem;
    background: rgba(10, 10, 15, 0.7);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.changelog-container h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

.changelog-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.changelog-entry {
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    position: relative;
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.changelog-version {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.changelog-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.changelog-changes {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.changelog-changes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.changelog-changes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .changelog-container {
        padding: 1.5rem;
    }
    
    .changelog-container h3 {
        font-size: 1.5rem;
    }
    
    .changelog-entry {
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .changelog-container {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .changelog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .changelog-changes li {
        font-size: 0.9rem;
    }
}

/* Version Info Styles */
.version-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    background: rgba(10, 10, 15, 0.7);
    border-radius: 12px;
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.version-badge, .update-date {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.version-badge span, .update-date span {
    display: inline-block;
}

#android-version, #android-last-updated {
    color: var(--accent-color);
    font-weight: 600;
    margin-left: 0.25rem;
}

@media (max-width: 480px) {
    .version-info {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
}