* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* Language button */
.lang-switch {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.lang-switch button {
  background: #ff9800;
  border: none;
  color: #000;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/* Hero */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.85)),
    url("hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 750px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* APK BOX */
.apk-box {
  background: rgba(0,0,0,0.7);
  border: 2px solid #ff9800;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.apk-box img {
  width: 90px;
}

.apk-text h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.apk-text p {
  font-size: 1rem;
  margin-bottom: 12px;
}

.apk-btn {
  background: #ff9800;
  color: #000;
  padding: 12px 26px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.apk-btn:hover {
  background: #ffc107;
}

