* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: radial-gradient(ellipse at bottom, #0b0f1e 0%, #000000 100%);
  color: #fff;
  font-family: 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: transparent;
}

.glass {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-radius: 20px;
  padding: 40px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    inset 0 0 25px rgba(255, 255, 255, 0.05);
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 20px 40px;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}


.logo {
  font-size: 1.6rem;
  letter-spacing: 2px;
}

nav a {
  color: #9bbcff;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffffff;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 100px 0;
}

.panel {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.panel.left {
  align-self: flex-start;
  transform: translateX(-5%);
}

.panel.right {
  align-self: flex-end;
  transform: translateX(5%);
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.panel.right .content {
  flex-direction: row-reverse;
}

.text {
  flex: 1 1 50%;
}

.media {
  flex: 1 1 50%;
}

.video, .image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.play-btn {
  margin-top: 20px;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(90deg, #005bff, #0070ff);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.play-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #0070ff, #0090ff);
}

.gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery img {
  flex: 1 1 30%;
  border-radius: 20px;
}

footer {
  max-width: 1200px;
  margin: 0 auto 20px auto;
  text-align: center;
  padding: 25px;
  border-radius: 0 0 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  opacity: 0.7;
  font-size: 0.9rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #9bbcff;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-link:hover {
  color: #ffffff;
}

.contact-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slider img {
  flex: 0 0 100%;
  max-width: 100%;
  border-radius: 20px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px 15px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.left-btn {
  left: 10px;
}

.right-btn {
  right: 10px;
}





@media (max-width: 900px) {
  .panel {
    width: 90%;
    transform: none;
    align-self: center;
  }
  
  
  .slider-btn {
    font-size: 1.5rem;
    padding: 8px 12px;
  }


  .content {
    flex-direction: column;
  }

  .text, .media {
    flex: 1 1 100%;
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    margin: 10px;
  }
}
