html, body {
  height: 100%;
  margin: 0;
}
body {
  background: linear-gradient(180deg,#10233e,#060a12);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-wrap {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

main {
  flex: 1;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(16,35,58,0.95);
  z-index: 1000;
  padding: 0 1rem;
}
nav .logo img {
  height: 48px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #00bfff;
  font-size: 1.75rem;
  padding: 0.5rem;
}
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-menu li a {
  display: block;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
}
.nav-menu li a:hover {
  background: rgba(255,255,255,0.1);
  color: #00bfff;
}
.actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lang-switch {
  display: flex;
  gap: 0.25rem;
  margin-right: 1.5rem; /* move away from the right edge */
}
.lang-switch a {
  color: #00bfff;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
}
.lang-switch a.active {
  text-decoration: underline;
}
.btn {
  background: linear-gradient(#69b6ff, #258cde);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s;
}
.btn:hover {
  transform: scale(1.05);
}
.btn.secondary {
  background: linear-gradient(#555, #333);
}

.download-buttons {
  text-align: center;
  margin-top: 1rem;
}

.download-buttons .btn {
  margin: 0.5rem;
}
.hero {
  background: url('Backround.jpg') center/cover no-repeat;
  text-align: center;
  padding: 7rem 1rem 5rem;
  margin-top: 60px;
}
.hero-text {
  display: inline-block;
}

.hero-text-background {
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(2px);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero .cta {
  font-size: 1.1rem;
}
.info {
  background: #152c47;
  padding: 2rem 1rem;
  text-align: center;
}
.news {
  padding: 2rem 1rem;
}
.news-grid {
  display: flex;
  gap: 1rem;
}
.news-item {
  flex: 1;
  background: #1c2f54;
  border-radius: 0.5rem;
  overflow: hidden;
}
.news-item img {
  width: 100%;
  display: block;
}
.news-item h3 {
  padding: 0.5rem 1rem;
  margin: 0;
}
.news-item p {
  padding: 0 1rem 1rem;
  margin: 0;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    left: auto;
    transform: none;
    background: rgba(16,35,58,0.95);
    flex-direction: column;
    width: 200px;
    display: none;
  }
  .nav-menu.open {
    display: flex;
  }
  .news-grid {
    flex-direction: column;
  }
}
.details {
  display: flex;
  gap: 1rem;
  padding: 2rem 1rem;
  background: #152c47;
  flex-wrap: wrap;
}
.details > div {
  flex: 1;
  min-width: 220px;
}
.details h3 {
  margin-top: 0;
}
.details a {
  color: #00bfff;
  text-decoration: none;
}
.details a:hover {
  color: #fff;
}
.sysreq {
  padding: 2rem 1rem;
  background: #0b1626;
}
.sysreq table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.sysreq th, .sysreq td {
  border: 1px solid #333;
  padding: 0.5rem;
  text-align: left;
}
footer {
  background: #10233e;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  margin-top: auto;
}
footer img {
  height: 60px;
  margin-top: 1rem;
}
footer .partners {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
footer .partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
}
footer .partner img {
  height: 60px;
  margin-top: 0;
}

footer a {
  color: #00bfff;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}
