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

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1e2a38, #101822);
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  overflow-x: hidden;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo {
  max-height: 60px;
  animation: fadeIn 1.2s ease;
}

.brand {
  font-size: 1.6em;
  background: linear-gradient(90deg, #00bfff, #00ffa3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  font-size: 1.1em;
}

.nav-links .lang {
  color: #00ffa3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links .lang:hover {
  color: #00bfff;
}

.divider {
  color: #777;
  margin: 0 5px;
}

header img {
  max-height: 60px;
}

nav a {
  color: #00ffa3;
  text-decoration: none;
  margin-left: 15px;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  animation: fadeIn 2s ease-in;
}

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

h1 {
  font-size: 3em;
  background: linear-gradient(90deg, #00bfff, #00ffa3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p, li {
  font-size: 1.2em;
  color: #ccc;
  line-height: 1.6;
}

section {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 4px solid #00bfff;
  border-radius: 6px;
}

footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9em;
  color: #888;
  background: rgba(0, 0, 0, 0.5);
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(10, 14, 22, 0.6);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 255, 163, 0.2);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  max-height: 55px;
  filter: drop-shadow(0 0 6px rgba(0,255,163,0.4));
}

.brand-name {
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #00bfff, #00ffa3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.lang {
  color: #00ffa3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.lang:hover {
  color: #00bfff;
}

.cta {
  background: linear-gradient(90deg, #00bfff, #00ffa3);
  color: #000;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: opacity 0.3s;
  text-decoration: none;
}

.cta:hover {
  opacity: 0.8;
}
.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(160deg, #0a0f18 0%, #111a24 100%);
  color: #fff;
}

.hero-logo {
  max-height: 100px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 8px rgba(0, 255, 163, 0.4));
  animation: fadeIn 1.2s ease-out;
}

.hero h1 {
  font-size: 2.4em;
  background: linear-gradient(90deg, #00bfff, #00ffa3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1em;
  color: #bbb;
  max-width: 700px;
  margin: 10px auto;
}

.hero-link {
  color: #00ffa3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s, text-shadow 0.3s;
}

.hero-link:hover {
  color: #00bfff;
  text-shadow: 0 0 6px rgba(0, 191, 255, 0.6);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}