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

body {
  font-family: 'Courier New', monospace;
  background: #0c0e0e;
  color: #dbe4e8;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}

nav {
  background: #1a1c1e;
  border-bottom: 2px solid #00e5ff;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 20px;
  box-shadow: 0 4px 24px rgba(0, 229, 255, 0.35);
  border-radius: 0 0 14px 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  color: #00e5ff;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #00e5ff;
  background: #1e2226;
  transition: 0.4s ease-in-out;
  font-size: 0.9rem;
  border-radius: 10px;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.2);
}

.nav-links a:hover {
  background: #00e5ff;
  color: #0c0e0e;
  box-shadow: 0 0 36px rgba(0, 229, 255, 0.7);
  border-color: #00e5ff;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #00e5ff;
  padding: 40px 20px 10px;
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.5), 0 0 48px rgba(0, 229, 255, 0.2);
  letter-spacing: 2px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.card {
  background: #1f2327;
  border: 2px solid #00e5ff;
  padding: 20px;
  image-rendering: pixelated;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.35);
  border-radius: 14px;
  transition: box-shadow 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.card img {
  width: 100%;
  height: auto;
  border: 1px solid #00e5ff;
  margin-bottom: 12px;
  border-radius: 10px;
}

.card h3 {
  color: #00e5ff;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.95rem;
}

.section-title {
  font-size: 1.8rem;
  color: #00e5ff;
  border-left: 6px solid #00e5ff;
  padding-left: 15px;
  margin: 40px 0 20px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.faq-item {
  background: #181c20;
  border: 1px solid #00e5ff;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.25);
}

.faq-item h4 {
  color: #00e5ff;
  cursor: pointer;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.faq-item p {
  margin-top: 10px;
}

.news-card {
  background: #1c2025;
  border: 2px solid #00e5ff;
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.3);
}

.news-card .date {
  color: #b0b6be;
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.news-card h3 {
  color: #00e5ff;
  margin-bottom: 8px;
}

footer {
  background: #14171a;
  border-top: 3px solid #00e5ff;
  padding: 30px 20px;
  margin-top: 50px;
  text-align: center;
  font-size: 0.85rem;
  box-shadow: 0 -6px 24px rgba(0, 229, 255, 0.35);
  border-radius: 14px 14px 0 0;
}

footer a {
  color: #00e5ff;
  text-decoration: none;
  margin: 0 6px;
  transition: text-shadow 0.3s ease;
}

footer .friend-links {
  margin: 20px 0;
}

footer .friend-links a {
  margin: 0 8px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.stat-item {
  background: #1e2226;
  border: 2px solid #00e5ff;
  padding: 20px 30px;
  text-align: center;
  min-width: 160px;
  border-radius: 14px;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.35);
}

.stat-item .num {
  font-size: 2.2rem;
  color: #00e5ff;
  font-weight: bold;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.partner-logos span {
  background: #262b30;
  border: 1px solid #00e5ff;
  padding: 10px 18px;
  color: #00e5ff;
  border-radius: 10px;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.2);
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.8rem;
  }
  .nav-links {
    gap: 10px;
  }
}