/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --primary-color: #0b1e3b;
  /* Deep Navy */
  --accent-color: #00d4ff;
  /* Electric Blue */
  --secondary-accent: #a0a0a0;
  /* Silver/Grey */
  --text-color: #ffffff;
  --bg-color: #050a14;
  --card-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-main: 'Outfit', sans-serif;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  z-index: 1000;
  background: rgba(5, 10, 20, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  font-weight: 600;
  opacity: 0.8;
  position: relative;
}

nav a:hover,
nav a.active {
  opacity: 1;
  color: var(--accent-color);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  background: linear-gradient(rgba(5, 10, 20, 0.7), rgba(5, 10, 20, 0.3)), url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, var(--secondary-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeInDown 1s ease-out;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: #ccc;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--accent-color), #0077ff);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

/* Section Styles */
section {
  padding: 5rem 5%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--accent-color);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  transition: transform 0.3s, border-color 0.3s;
  backdrop-filter: blur(5px);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

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

.mission-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ddd;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  text-align: center;
}

.contact-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--accent-color);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #020408;
  color: #777;
  font-size: 0.9rem;
  margin-top: auto;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  nav ul {
    gap: 1rem;
  }

  header {
    padding: 1rem;
  }
}

/* Screenshot Scroller */
.screenshot-scroller {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.screenshot-scroller img {
  height: 360px;
  /* Doubled per user request */
  border-radius: 12px;
  scroll-snap-align: start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Social Links */
.social-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--glass-border);
}

.social-btn:hover {
  background: var(--accent-color);
  color: #000;
}

/* News/Updates Section */
.news-container {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  background: var(--card-bg);
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0 15px 15px 0;
  border: 1px solid var(--glass-border);
  border-left-width: 4px;
  /* Ensure overwrite */
}

.news-date {
  font-size: 0.9rem;
  color: var(--secondary-accent);
  margin-bottom: 0.5rem;
  display: block;
}

.news-version {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-color);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-left: 10px;
  font-weight: 600;
}

.news-list {
  list-style: none;
  margin-top: 1rem;
}

.news-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.news-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}