body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #111, #000);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

h1 {
  color: #ffd700;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 10px;
}

p {
  color: #ccc;
  font-size: 1.1em;
  margin-bottom: 40px;
}

button,
a.button {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.4s ease;
  color: #000;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

button,
a.button:not(.telegram) {
  background: linear-gradient(145deg, #ffd700, #ffcc00);
}

a.telegram {
  background: linear-gradient(145deg, #0088cc, #33b5e5);
  color: #fff;
}

button:hover,
a.button:hover:not(.telegram) {
  background: linear-gradient(145deg, #fff6a0, #ffffff);
  color: #000;
  transform: scale(1.07);
  box-shadow: 0 0 30px 10px rgba(255, 255, 255, 0.6);
}

a.telegram:hover {
  background: linear-gradient(145deg, #66d1ff, #ffffff);
  color: #000;
  transform: scale(1.07);
  box-shadow: 0 0 30px 10px rgba(173, 216, 255, 0.7);
}

button:active,
a.button:active {
  transform: scale(0.96);
  box-shadow: 0 0 25px 5px rgba(255, 255, 255, 0.8);
}

.login-box,
.signup-box {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
  width: 320px;
  text-align: center;
}

input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  background: #111;
  color: #fff;
  outline: none;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #ffd700;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.header a {
  color: #ffd700;
  text-decoration: none;
  font-size: 1.2em;
  margin: 0 10px;
}

.header a:hover {
  text-shadow: 0 0 10px #fff6a0;
}

.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 90%;
  margin-top: 80px;
}

.movie-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  transition: all 0.3s ease;
}

.movie-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

footer {
  position: absolute;
  bottom: 15px;
  font-size: 13px;
  color: #777;
  letter-spacing: 0.3px;
}

a {
  color: #ffd700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}