html, body {
  margin: 0; padding: 0;
  background: linear-gradient(160deg, #04070e, #04080f);
  color: #e0e0e0;
  font-family: 'Orbitron', sans-serif;
  line-height: 1.6;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px 0;
  border-bottom: 2px solid #a8ac94;
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.title {
  font-size: 28px;
  color: #a8ac94;
  margin-bottom: 10px;
  font-weight: 500;
}

.subtitle {
  font-size: 16px;
  color: #999;
  margin-bottom: 30px;
}

.language-switch {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.language-switch a {
  background: rgba(28,31,30,0.9);
  border: 1px solid #a8ac94;
  border-radius: 8px;
  padding: 10px 15px;
  color: #a8ac94;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.language-switch a:hover {
  background: #a8ac94;
  color: #0d0d0d;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.menu-item {
  background: rgba(28,31,30,0.7);
  border: 1px solid #a8ac94;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s;
}

.menu-item:hover {
  background: rgba(28,31,30,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.menu-icon {
  font-size: 48px;
  color: #a8ac94;
  margin-bottom: 15px;
}

.menu-item h3 {
  font-size: 18px;
  color: #a8ac94;
  margin-bottom: 10px;
  font-weight: 500;
}

.menu-item p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.menu-btn {
  background-color: #1c1f1e;
  color: #a8ac94;
  border: 1px solid #a8ac94;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.menu-btn:hover {
  background-color: #a8ac94;
  color: #0d0d0d;
}

.footer {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #444;
  color: #666;
  font-size: 14px;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  
  .title {
    font-size: 24px;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .menu-item {
    padding: 20px;
  }
  
  .menu-icon {
    font-size: 36px;
  }
  
  .language-switch {
    top: 10px;
    right: 10px;
  }
} 