* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: white;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(139,92,246,0.14), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(0,230,230,0.12), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03), transparent 60%),
    #05070a;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 80%, rgba(0,230,230,0.08), transparent 60%);
}

.hero,
.features-section,
.faq-section,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: transparent;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.2),
      rgba(0,0,0,0.6) 70%,
      transparent
    );
  pointer-events: none;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/background_1.png') center/cover no-repeat;
  filter: brightness(0.8) contrast(1.1);
  transform: scale(1.05);

}

.content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation:
    heroAppear 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes heroAppear {

  0% {
    opacity: 0;
    transform:
      translateY(40px)
      scale(0.96);
  }

  100% {
    opacity: 1;
    transform:
      translateY(0)
      scale(1);
  }
}

h1 {
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #cfffff 35%,
      #00e6e6 70%,
      #ffffff 100%
    );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  animation:
    titleGradient 8s ease infinite,
    titleFloat 4s ease-in-out infinite;
  text-shadow:
    0 0 25px rgba(0,230,230,0.25),
    0 0 60px rgba(0,230,230,0.12);
  margin-bottom: 16px;
  position: relative;
}

h1::after {
  content: "izzziland";
  position: absolute;
  inset: 0;
  z-index: -1;
  filter: blur(18px);
  opacity: 0.45;
  color: #00e6e6;
}

@keyframes titleGradient {

  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes titleFloat {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(0px);
  }
}

.title-container {
  position: relative;
  display: inline-block;
}

.online-box {
  position: absolute;
  top: -18px;
  right: -120px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding:
    10px 18px;
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );
  border:
    1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 24px rgba(0,0,0,0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.online-box:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 30px rgba(255,255,255,0.08);
}

.online-text {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.online-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.online-box.loading .online-dot {
  background: #facc15;
  box-shadow:
    0 0 14px rgba(250,204,21,0.7);
  animation:
    pulseLoading 1.2s infinite;
}

.online-box.online .online-dot {
  background: #22c55e;
  box-shadow:
    0 0 16px rgba(34,197,94,0.8);
}

.online-box.offline .online-dot {
  background: #9ca3af;
  box-shadow:
    0 0 12px rgba(156,163,175,0.5);
}

.online-box.error .online-dot {
  background: #ef4444;
  box-shadow:
    0 0 16px rgba(239,68,68,0.75);
}

@keyframes pulseLoading {

  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.typed-text-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 34px;
  padding:
    12px 26px;
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );
  border:
    1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow:
    0 0 24px rgba(0,230,230,0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.typed-text-container::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 80%;
  height: 300%;
  background:
    linear-gradient(
      to right,
      transparent,
      rgba(255,255,255,0.08),
      transparent
    );
  transform: rotate(25deg);
  animation:
    typedShine 5s linear infinite;
}

@keyframes typedShine {

  from {
    left: -60%;
  }

  to {
    left: 160%;
  }
}

.typed-text-container:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 34px rgba(0,230,230,0.12);
}

.typed-text {
  position: relative;
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background:
    linear-gradient(
      135deg,
      #ffffff,
      #cfffff,
      #00e6e6
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 16px rgba(0,230,230,0.2);
}

.typed-text::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1.2em;
  margin-left: 6px;
  border-radius: 999px;
  background: #00e6e6;
  vertical-align: middle;
  box-shadow:
    0 0 12px rgba(0,230,230,0.8);
  animation:
    blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {

  0%, 50% {
    opacity: 1;
  }

  51%, 100% {
    opacity: 0;
  }
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.buttons button {
  position: relative;
  padding: 15px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  min-width: 240px;
  height: 60px;
  color: white;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.buttons button::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.16),
      rgba(255,255,255,0.03)
    );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.buttons button:hover {
  transform:
    translateY(-3px)
    scale(1.03);
  border-color: rgba(255,255,255,0.22);
}

.buttons button:hover::before {
  opacity: 1;
}

.buttons button:active {
  transform: scale(0.98);
}

.icon {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 2;
}

.buttons button span,
.buttons button {
  position: relative;
  z-index: 2;
}

.discord-btn {
  background:
    linear-gradient(
      135deg,
      #5865F2,
      #7289DA
    );
  box-shadow:
    0 0 18px rgba(88,101,242,0.35),
    inset 0 0 12px rgba(255,255,255,0.08);
}

.discord-btn:hover {
  box-shadow:
    0 0 28px rgba(88,101,242,0.55),
    0 0 55px rgba(88,101,242,0.25);
}

.copy-ip-btn {
  background:
    linear-gradient(
      135deg,
      #2f2f2f,
      #4a4a4a
    );
  box-shadow:
    0 0 18px rgba(255,255,255,0.08),
    inset 0 0 12px rgba(255,255,255,0.04);
}

.copy-ip-btn:hover {
  box-shadow:
    0 0 28px rgba(255,255,255,0.16),
    0 0 50px rgba(255,255,255,0.08);
}

.copy-ip-btn.copied {
  background:
    linear-gradient(
      135deg,
      #22c55e,
      #16a34a
    );
  box-shadow:
    0 0 25px rgba(34,197,94,0.45),
    0 0 60px rgba(34,197,94,0.18);
}

.features-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.features-section h2 {
  position: relative;
  font-size: clamp(2.8rem, 5vw, 4rem);
  margin-bottom: 70px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      #ffffff,
      #cfffff,
      #00e6e6
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 25px rgba(0,230,230,0.18);
  opacity: 0;
  transform: translateY(25px);
  animation:
    featureTitleAppear 1s ease forwards;
}

@keyframes featureTitleAppear {

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  z-index: 2;
}

.feature-item {
  position: relative;
  padding: 26px;
  border-radius: 24px;
  min-height: 190px;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.025)
    );
  border:
    1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  overflow: hidden;
  opacity: 0;
  transform:
    translateY(40px)
    scale(0.95);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    opacity 0.6s ease;
}

.feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.12),
      transparent 60%
    );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-item::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 80%;
  height: 320%;
  background:
    linear-gradient(
      to right,
      transparent,
      rgba(255,255,255,0.08),
      transparent
    );
  transform: rotate(25deg);
  transition: 0.8s ease;
}

.feature-item.show {
  opacity: 1;
  transform:
    translateY(0)
    scale(1);
}

.feature-item:hover {
  transform:
    translateY(-10px)
    scale(1.03);
  border-color:
    rgba(0,230,230,0.22);
  box-shadow:
    0 0 35px rgba(0,230,230,0.16),
    0 0 80px rgba(0,230,230,0.08);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item:hover::after {
  left: 140%;
}

.feature-item h3 {
  position: relative;
  font-size: 1.22rem;
  margin-bottom: 10px;
  color: #ffffff;
  z-index: 2;
}

.feature-item p {
  position: relative;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
  z-index: 2;
}

@keyframes fadeZoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 16px;
  position: relative;
  background:
    linear-gradient(
      135deg,
      rgba(0,230,230,0.18),
      rgba(255,255,255,0.03)
    );
  border:
    1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 0 14px rgba(0,230,230,0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-section {
  color: white;
  padding: 150px 0;
  text-align: center;
}

.faq-section h2 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  margin-bottom: 70px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      #ffffff,
      #cfffff,
      #00e6e6
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 20px rgba(0,230,230,0.16);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 24px;
}

.faq-item {
  position: relative;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.045),
      rgba(255,255,255,0.015)
    );
  border:
    1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform:
    translateY(40px)
    scale(0.96);
  transition:
    transform 0.45s ease,
    opacity 0.6s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background:
    linear-gradient(
      to bottom,
      #00e6e6,
      #8b5cf6
    );
  opacity: 0;
  transition:
    opacity 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item:hover {
  transform:
    translateY(-3px)
    scale(1.01);
  border-color:
    rgba(0,230,230,0.14);
  box-shadow:
    0 0 28px rgba(0,230,230,0.08);
}

.faq-item.active {
  border-color:
    rgba(0,230,230,0.18);
  box-shadow:
    0 0 34px rgba(0,230,230,0.12);
}

.faq-item:hover::before,
.faq-item.active::before {
  opacity: 1;
  box-shadow:
    0 0 18px rgba(0,230,230,0.45);
}

.faq-item.show {
  opacity: 1;
  transform:
    translateY(0)
    scale(1);
}


.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 26px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    color 0.25s ease;
  position: relative;
  z-index: 2;
}

.faq-question:hover {
  color: #00e6e6;
}

.faq-question img {
  width: 20px;
  height: 20px;
  opacity: 0.75;
  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    filter 0.25s ease;
}

.faq-question:hover img {
  opacity: 1;
  filter:
    drop-shadow(0 0 10px rgba(0,230,230,0.45));
}

.faq-item.active .arrow-icon {
  transform: rotate(180deg);
  filter:
    drop-shadow(0 0 12px rgba(0,230,230,0.35));
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    transform 0.35s ease;
  padding:
    0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding:
    0 30px 28px;
}

    
.faq-answer p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

.floating-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 58%;
  max-width: 760px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.10),
      rgba(255,255,255,0.04)
    );
  border:
    1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    0 0 30px rgba(0,230,230,0.08);
  z-index: 9999;
  animation: headerIn 0.8s ease forwards;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.floating-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(0,230,230,0.10),
      transparent 60%
    );
  opacity: 0.6;
  pointer-events: none;
}

.floating-header:hover {
  transform:
    translateX(-50%)
    scale(1.02);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.45),
    0 0 40px rgba(0,230,230,0.15);
}

@keyframes headerIn {

  from {
    opacity: 0;
    transform:
      translateX(-50%)
      translateY(-15px)
      scale(0.95);
  }

  to {
    opacity: 1;
    transform:
      translateX(-50%)
      translateY(0)
      scale(1);
  }
}

.server-icon {
  position: absolute;
  left: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  box-shadow: none;
  transition: none;
  pointer-events: none;
}

.footer {
  background-color: #0a0a0a;
  padding: 15px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 2;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.25s ease;
  user-select: none;
}

.social-link:hover img {
  transform: scale(1.15);
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #a0a0a0;
}

.footer-center .server-ip {
  font-weight: 500;
}

.footer-center .divider {
  color: rgba(255, 255, 255, 0.25);
}

.floating-socials {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  animation: socialsIn 1s ease forwards;
}

@keyframes socialsIn {

  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-circle {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  border:
    1px solid rgba(255,255,255,0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.social-circle img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.tiktok {
  left: 20px;
  background: rgba(0,0,0,0.4);
}

.youtube {
  left: 85px;
  background: rgba(255,0,0,0.25);
}

.telegram {
  right: 85px;
  background: rgba(0,136,204,0.25);
}

.discord {
  right: 20px;
  background: rgba(114,137,218,0.25);
}

.social-circle:hover {
  transform: translateY(-3px) scale(1.12);
  box-shadow:
    0 0 25px rgba(0,230,230,0.18);
  filter: brightness(1.2);
}

.nav-menu {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex: 1;
  z-index: 101;
}

.nav-link {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 10px;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-link:hover {
  color: #00e6e6;
  background:
    rgba(0,230,230,0.08);
  transform: translateY(-1px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: #00e6e6;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}

.account-btn {
  position: absolute;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform-origin: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 999999;
}

.account-btn:hover {
  transform: scale(1.08);
  background: rgba(0,230,230,0.10);
  box-shadow: 0 0 18px rgba(0,230,230,0.25);
}

.account-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  display: block;
  filter: invert(1);
}

.account-btn,
.account-btn * {
  will-change: transform;
}

.ip-copy {
  cursor: pointer;
  color: #00e6e6;
  padding: 2px 8px;
  border-radius: 10px;
  background:
    rgba(0,230,230,0.08);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.ip-copy:hover {
  background:
    rgba(0,230,230,0.16);
  transform: scale(1.05);
}

::-webkit-scrollbar {
  width: 14px;
  background: #0a0a0a;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(120,120,120,0.8);
  border-radius: 999px;
  border: 3px solid #0a0a0a;
}

.fabric-answer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  text-align: center;
}

.fabric-answer p {
  margin: 0;
}

.easter-gif {
  width: 28px;
  height: 28px;
  object-fit: contain;
  cursor: pointer;
  position: relative;
  opacity: 0.9;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    filter 0.25s ease;
  user-select: none;
}

.easter-gif:hover {
  transform: scale(1.12) rotate(4deg);
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.easter-gif.explode {
  animation: explodeAnim 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes explodeAnim {

  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    filter:
      brightness(1)
      blur(0px);
  }

  15% {
    transform: scale(1.35) rotate(-8deg);
    filter:
      brightness(2)
      blur(0px);
  }

  35% {
    transform: scale(2.2) rotate(12deg);
    opacity: 1;

    filter:
      brightness(5)
      blur(1px)
      drop-shadow(0 0 25px #fff);
  }

  55% {
    transform: scale(2.8) rotate(-18deg);

    filter:
      brightness(9)
      blur(4px)
      drop-shadow(0 0 40px #ff00ff);
  }

  100% {
    transform:
      scale(0)
      rotate(40deg);

    opacity: 0;

    filter:
      brightness(14)
      blur(12px);
  }
}

.easter-notification {
  position: fixed;
  left: 50%;
  top: 28px;
  transform:
    translateX(-50%)
    translateY(-160px)
    scale(0.6);
  padding: 16px 30px;
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      #7c3aed,
      #a855f7,
      #ec4899
    );
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  z-index: 2147483647;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow:
    0 0 25px rgba(168,85,247,0.45),
    0 0 60px rgba(236,72,153,0.25);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.easter-notification.show {
  animation: notificationIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.easter-notification.hide {
  animation: notificationOut 0.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes notificationIn {

  0% {
    transform:
      translateX(-50%)
      translateY(-160px)
      scale(0.6)
      rotate(-4deg);

    opacity: 0;

    filter: blur(10px);
  }

  60% {
    transform:
      translateX(-50%)
      translateY(10px)
      scale(1.08)
      rotate(2deg);

    opacity: 1;

    filter: blur(0px);
  }

  100% {
    transform:
      translateX(-50%)
      translateY(0px)
      scale(1)
      rotate(0deg);

    opacity: 1;

    filter: blur(0px);
  }
}

@keyframes notificationOut {

  0% {
    transform:
      translateX(-50%)
      translateY(0px)
      scale(1)
      rotate(0deg);

    opacity: 1;

    filter: blur(0px);
  }

  30% {
    transform:
      translateX(-50%)
      translateY(0px)
      scale(1.06)
      rotate(-2deg);
  }

  100% {
    transform:
      translateX(-50%)
      translateY(-160px)
      scale(0.75)
      rotate(6deg);

    opacity: 0;

    filter: blur(10px);
  }
}

html,
body {
  overflow-x: hidden;
  overflow-y: visible;
}

.faq-section,
.faq-container,
.faq-item,
.faq-answer {
  overflow: visible !important;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}


.features-section,
.faq-section {
  position: relative;
}

.hero-divider {
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: 10px;
  background:
    linear-gradient(
      180deg,
      rgba(20, 14, 5, 0.95),
      rgba(35, 24, 8, 0.98),
      rgba(20, 14, 5, 0.95)
    );
  border-top: 1px solid rgba(245,196,0,0.15);
  border-bottom: 1px solid rgba(245,196,0,0.10);

}

.hero-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(245,196,0,0.08), transparent 60%);
  pointer-events: none;
}

.line {
  width: 100%;
  height: 14px;
  background: repeating-linear-gradient(
    45deg,
    #f2c200 0px,
    #f2c200 14px,
    #1a1406 14px,
    #1a1406 28px
  );
  box-shadow:
    inset 0 0 10px rgba(0,0,0,0.6),
    0 0 12px rgba(245,196,0,0.12);
  background-size: 80px 80px;
}

.line.top {
  animation: moveRight 1.2s linear infinite;
}

.line.bottom {
  animation: moveLeft 1.2s linear infinite;
}

@keyframes moveRight {

  from {
    background-position: 0 0;
  }

  to {
    background-position: 80px 0;
  }

}

@keyframes moveLeft {

  from {
    background-position: 80px 0;
  }

  to {
    background-position: 0 0;
  }

}

.divider-title {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: #ffd86a;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(245,196,0,0.25);
  background: rgba(245,196,0,0.08);
  padding: 6px 20px;
  border-radius: 6px;
  border: 1px solid rgba(245,196,0,0.15);
}

.hero-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,7,10,0.2),
    rgba(5,7,10,0.9)
  );
  pointer-events: none;
}

.main-header {
  margin-top: 120px;
  text-align: center;
  margin-bottom: 35px;
  z-index: 2;
  position: relative;
}

.main-header h1 {
  font-size: 42px;
  color: #00e6e6;
  text-shadow: 0 0 15px rgba(0, 230, 230, 0.5);
}


#easter-final-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.65);
  z-index: 99999;
  opacity: 0;
  transform: scale(0.9);
}

.easter-final-card {
  background: rgba(20, 20, 25, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  color: white;
  width: min(420px, 90vw);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.easter-final-close {
  position: absolute;
  margin-left: 170px;
  margin-top: -10px;
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.7;
}

.easter-final-close:hover {
  opacity: 1;
}

.easter-key {
  margin: 14px 0;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  font-family: monospace;
  letter-spacing: 2px;
}

/* ==========================================
   MOBILE (iPhone 14, 390px)
   ========================================== */

@media (max-width: 430px) {

  .floating-header {
    width: calc(100% - 20px);

    min-height: auto;
    height: auto;

    padding: 10px;

    border-radius: 18px;

    row-gap: 8px;
  }

  /* убираем иконку сервера */
.server-icon {
    display: none;
}

/* убираем кнопку поддержки */
.account-btn {
    display: none;
}

  .account-btn img {
    width: 16px;
    height: 16px;
  }

  .nav-menu {
    gap: 5px;
  }

  .nav-link {
    font-size: 11px;
    padding: 6px 4px;
  }

  /* уменьшаем отступ сверху у hero */
  .hero {
    padding-top: 130px;
  }

  .content {
    min-height: auto;
  }

.title-container {
    position: relative;
    display: inline-block;
  }

  h1 {
    font-size: 2.7rem;
    margin-bottom: 0;
  }

  .online-box {
    top: -6px;
    right: -35px;

    padding: 5px 8px;

    gap: 5px;
  }

  .online-text {
    font-size: 10px;
  }

  .online-dot {
    width: 7px;
    height: 7px;
  }

  .typed-text-container {
    width: auto;
    max-width: 280px;

    min-height: 42px;

    padding: 8px 14px;

    margin-bottom: 18px;
}

.typed-text {
    font-size: 13px;
}

  /* ---------- BUTTONS ---------- */

  .buttons {
    width: 100%;
    max-width: 280px;

    margin: 0 auto;

    gap: 10px;
}

.buttons button {
    width: 100%;
    height: 48px;

    font-size: 14px;

    border-radius: 14px;
}

.icon {
    width: 18px;
    height: 18px;
}

  /* ---------- SOCIALS ---------- */

  .floating-socials {
    display: none;
  }

  /* ---------- DIVIDER ---------- */

  .hero-divider {
    height: 90px;
    margin-bottom: 50px;
  }

  .divider-title {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .line {
    height: 10px;
  }

  /* ---------- FEATURES ---------- */

  .features-section {
    padding: 70px 15px;
  }

  .features-section h2 {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .features-container {
    grid-template-columns: 1fr;

    gap: 16px;

    padding: 0;
  }

  .feature-item {
    min-height: auto;

    padding: 22px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;

    font-size: 1.3rem;
  }

  .feature-item h3 {
    font-size: 1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  /* ---------- FAQ ---------- */

  .faq-section {
    padding: 70px 15px;
  }

  .faq-section h2 {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .faq-container {
    padding: 0;
  }

  .faq-question {
    font-size: 0.95rem;

    padding: 18px;

    text-align: left;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 18px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .fabric-answer {
    flex-direction: column;
    gap: 10px;
  }

  .easter-gif {
    width: 40px;
    height: 40px;
  }

.footer {
    padding: 20px 15px;
}

.footer-line {
    flex-direction: column;
    gap: 14px;
}

.footer-left,
.footer-right {
    display: none;
}

.footer-center {
    display: flex;
    flex-direction: column;

    gap: 8px;

    text-align: center;
}

.footer-center .divider {
    display: none;
}

.server-ip {
    font-size: 15px;
    font-weight: 700;
}

.copyright {
    font-size: 13px;
    opacity: .7;
}

  /* ---------- POPUP ---------- */

  .easter-final-card {
    width: calc(100% - 30px);

    padding: 22px;
  }

  .easter-final-close {
    position: absolute;

    top: 14px;
    right: 14px;

    margin: 0;
  }

  /* ---------- NOTIFICATION ---------- */

  .easter-notification {
    width: calc(100% - 30px);

    font-size: 14px;

    white-space: normal;

    text-align: center;

    padding: 12px;
  }
}