@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: url(./img/wallpaper.png) no-repeat;
  background-size: cover;
  color: #eee;
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
  background-color: #1a1a1a;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 40px;
  position: relative;
  z-index: 2;
}
a {
  color: inherit;
}
section {
  margin-bottom: 100px;
  padding: 40px;
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid #333;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(40px);
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

h1,
h2 {
  font-family: "Orbitron", sans-serif;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

p,
li {
  font-size: 18px;
  line-height: 1.8;
  color: #ccc;
}

ul {
  padding-left: 24px;
}

.stage-button {
  bottom: 50px;
  left: 120px;
}

.submit-button {
  bottom: 50px;
  right: 120px;
}

.stage-button,
.submit-button {
  position: fixed;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
  color: #eee;
  background: linear-gradient(to right, #3a3a3a, #1a1a1a);
  border: 1px solid #555;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.stage-button:hover,
.submit-button:hover {
  background: linear-gradient(to right, rgb(30, 30, 30), rgb(10, 10, 10));
  box-shadow: 0 0 12px rgba(50, 255, 255, 0.05),
    0 0 22px rgba(0, 0, 0, 0.5) inset;
  transform: translateY(-1px);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.35) contrast(1.2);
}

.team-member {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid #333;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(40px);
  margin-bottom: 100px;
}

.team-member.visible {
  opacity: 1;
  transform: translateY(0);
}

.dev-avatar.square {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid #444;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.team-info {
  flex: 1;
}

.team-info h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}

.team-info p {
  color: #ccc;
  font-size: 17px;
  line-height: 1.6;
}

.learn-more-button {
  margin-top: 30px;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid #0ff;
  color: #0ff;
  font-size: 18px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.learn-more-button:hover {
  border-color: #0ff;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
}

.site-header {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  pointer-events: none;
}

.logo {
  width: 80px;
  margin-left: 115px;
  position: relative;
  pointer-events: auto;
  filter: invert(1);
}

.audio-player {
  position: relative;
  pointer-events: auto;
  margin-right: 40px;
}

.audio-block {
  position: relative;
  margin-right: 40px;
  margin-top: 42px;
  width: 250px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}

.mixer-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #666;
  cursor: pointer;
  transition: transform 0.3s;
}

.audio-block:hover .mixer-controls {
  opacity: 1;
  pointer-events: auto;
}

.mixer-controls {
  margin-top: 10px;
  background: rgba(30, 30, 30, 0.9);
  border: 1px solid #444;
  border-radius: 10px;
  padding: 6px 16px;
  color: #ccc;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.spinning {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.social-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  background: rgba(13, 15, 19, 0.1);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  gap: 28px;
  z-index: 2000;
}

.social-footer .icon {
  color: #aaa;
  transition: color 0.3s, transform 0.2s;
}

.social-footer .icon:hover {
  transform: scale(1.2);
}

.social-footer .twitter:hover {
  color: #fff;
}

.social-footer .telegram:hover {
  color: #0088cc;
}
