* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0A0A0A;
  color: white;
  font-family: 'Orbitron', sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5vw;
  flex: 1;
}

.left-section {
  width: 50vw;
  height: 100%;
  background-image: url("paloide.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 580px auto;
}

.eye {
  width: 140px;
  height: 140px;
}

.right-section {
  max-width: 50vw;
}

.logo {
  font-size: 2rem;
  margin-bottom: 20px;
}

.description {
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #ccc;
}

.menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 320px;
}

.menu li {
  position: relative;
}

.menu a {
  display: block;
  width: 100%;
  padding: 14px 24px;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(255, 0, 204, 0.18), rgba(0, 0, 0, 0.3));
  border: 2px solid #FF00CC;
  clip-path: polygon(0% 0%, 94% 0%, 100% 15%, 100% 100%, 6% 100%, 0% 85%);
  box-shadow: inset 0 0 4px #c58bff;
  transition: all 0.3s ease;
}

.menu a:hover {
  background: rgba(255, 0, 204, 0.3);
  transform: translateX(4px);
  color: #FF00CC;
  box-shadow: 0 0 20px rgba(255, 0, 204, 0.5);
}

.footer {
  padding: 20px 5vw;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  color: #666;
  border-top: 1px solid #222;
}

.footer a {
  color: #c58bff;
  text-decoration: none;
}