* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Courier New', monospace;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: #f1f5f9;
  line-height: 1.6;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}
nav {
  background: linear-gradient(90deg, #1e293b 0%, #334155 100%);
  border-bottom: 2px solid #3b82f6;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 20px;
  box-shadow: 0 4px 6px -2px rgba(0,0,0,0.15), 0 2px 4px -1px rgba(0,0,0,0.1);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.nav-links a {
  color: #93c5fd;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #3b82f6;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 6px;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.nav-links a:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 6px -1px rgba(59,130,246,0.4);
}
h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #3b82f6;
  padding: 40px 20px 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  letter-spacing: 2px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.card {
  background: #ffffff;
  border: 2px solid #3b82f6;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -2px rgba(0,0,0,0.08), 0 10px 15px -3px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  box-shadow: 0 10px 15px -3px rgba(59,130,246,0.3), 0 4px 6px -2px rgba(0,0,0,0.05);
  border-color: #2563eb;
}
.card img {
  width: 100%;
  height: auto;
  border: 1px solid #93c5fd;
  margin-bottom: 12px;
  border-radius: 6px;
}
.card h3 {
  color: #1e293b;
  margin-bottom: 8px;
}
.card p {
  font-size: 0.95rem;
  color: #475569;
}
.section-title {
  font-size: 1.8rem;
  color: #3b82f6;
  border-left: 6px solid #3b82f6;
  padding-left: 15px;
  margin: 40px 0 20px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.faq-item {
  background: #ffffff;
  border: 1px solid #3b82f6;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: 0.4s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 6px -1px rgba(59,130,246,0.2);
}
.faq-item h4 {
  color: #3b82f6;
  cursor: pointer;
}
.faq-item p {
  margin-top: 10px;
  color: #475569;
}
.news-card {
  background: #ffffff;
  border: 2px solid #3b82f6;
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card:hover {
  box-shadow: 0 8px 12px -4px rgba(59,130,246,0.25);
  border-color: #2563eb;
}
.news-card .date {
  color: #64748b;
  font-size: 0.8rem;
  margin-bottom: 6px;
}
.news-card h3 {
  color: #1e293b;
  margin-bottom: 8px;
}
footer {
  background: linear-gradient(90deg, #1e293b, #334155);
  border-top: 3px solid #3b82f6;
  padding: 30px 20px;
  margin-top: 50px;
  text-align: center;
  font-size: 0.85rem;
  box-shadow: 0 -4px 6px -2px rgba(0,0,0,0.2);
}
footer a {
  color: #93c5fd;
  text-decoration: none;
  margin: 0 6px;
  transition: 0.3s ease;
}
footer a:hover {
  color: #bfdbfe;
}
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;
}
.stat-item {
  background: #ffffff;
  border: 2px solid #3b82f6;
  padding: 20px 30px;
  text-align: center;
  min-width: 160px;
  border-radius: 10px;
  box-shadow: 0 4px 6px -2px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-item:hover {
  box-shadow: 0 10px 15px -3px rgba(59,130,246,0.3);
  border-color: #2563eb;
  transform: translateY(-2px);
}
.stat-item .num {
  font-size: 2.2rem;
  color: #3b82f6;
  font-weight: bold;
}
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.partner-logos span {
  background: #f1f5f9;
  border: 1px solid #3b82f6;
  padding: 10px 18px;
  color: #3b82f6;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.partner-logos span:hover {
  background: #e2e8f0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
@media (max-width: 640px) {
  h1 { font-size: 1.8rem; }
  .nav-links { gap: 10px; }
}