/* --- ГЕНЕЗИС-ФОН ТА БАЗА --- */
:root {
  --primary:#4e89ae;
  --accent: #ffcc00;
  --bg: #0e0c1b;
  --text: #f2f2f2;
}
body {
  background: #000000 !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: default; 
  user-select: none;
  -webkit-user-select: none;
}

.img,
p,
#status {
  
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}



/* --- HERO СЕКЦІЯ --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* align-items: center; */
  background: #000;
  padding-top: 140px !important;
  box-sizing: border-box;
  padding-left: 3rem;
  padding-right: 3rem;
}
.container-main {
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  margin-top: 78px;
}
.boxes-wrapper {
  padding: 10px 0;
  min-height: 170px; /* мінімальна висота для десктопу */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* Тепер тримає позицію в потоці */
  box-sizing: border-box;
}

.boxes-inner {
  display: flex;
  gap: 30px;
  flex-wrap: wrap; /* Дозволяє переносити бокси */
  justify-content: center;
  width: 100%;
}

h1 {
font-family: "Gabriela", serif;
  font-size: 30px;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  cursor: pointer !important;
}
h2 {
font-family: "Gabriela", serif;
  font-size: 26px;
  color: var(--accent);
  cursor: pointer !important;
}
h3 {
font-family: "Gabriela", serif;
  font-size: 22px;
  color: var(--text);
  font-family: "PT Sans", sans-serif;
 
}
ul {
  font-size: 1rem;
  /* max-width: 500px; */
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-weight: 300; /* тонший шрифт */
  text-align: justify;
}
h1,
h2,
h3 {
  margin: 0;
}
p {
  color: var(--text);
  font-size: 14px;
  margin: 0;
  text-align: justify;
  padding: 2rem;
  
}


main {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: auto;
  height: auto;
}

.gate-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  /* ✅ Основне правило: */
  height: auto;
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 500px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1.2s ease-out;
  min-height: 200px;
}
.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

.fullscreen img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}


#status {
  word-break: break-all; /* дозволяє перенос слів на новий рядок */
  overflow-wrap: break-word; /* аналогічна поведінка */
  max-width: 100%; /* не виходити за межі контейнера */
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  text-align: center;
}
input,
button {
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: none;
  outline: none;
  width: 100%;
}

input {
  background: #1f1a2d;
  color: var(--text);
}
a {
  text-decoration: none;
  color: #000;
}
button {
  background: var(--accent);
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #ffd86c;
}

.wallet-button {
  background: linear-gradient(90deg, #d198ff, #ffb238);
  color: #000;
  font-weight: 600;
}
.link {
  color:var(--text);
}
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.links a {
  flex: 0 1 calc(33.33% - 1rem); /* по 3 в ряд, враховуючи gap */
  min-width: 120px; /* трохи менше, щоб вміщувалися */
  text-align: center;
  background: #1f1a2d;
  padding: 10px;
  border-radius: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 12px;
  transition: background 0.3s;
}

.links a:hover {
  background: #2a2340;
}
.min {
  text-align: center;
  font-size: 11px;
  color: white;
}

@media (max-width: 480px) {
  .links a {
    flex: 0 1 100%;
  }
}
.audio-control {
  margin-top: 1rem;
  text-align: center;
}

.audio-control button {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}
#nft-options {
  display: flex; /* або block */
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1px;
  /* position: static;  (або не вказуй взагалі) */
}
footer {
  font-size: 1rem;
  opacity: 0.6;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
footer .social-links {
  text-align: center;
  margin-top: 30px;
}
footer .social-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  margin: 0 20px;
  padding: 8px 14px;
  transition: all 100ms ease-in-out;
}
footer .social-links a:hover {
  color: white;
  opacity: 0.6;
  transition: all 100ms ease-in-out;
}
.activation-header {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out;
  margin-top: 0;
}
.activation-header h1 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.symbol-img {
  max-width: 250px;
  margin: 1.5rem auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
.activation-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  animation: fadeInUp 1s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.activation-section h2 {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}
.activation-section p,
.activation-section li {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.6;
}
.activation-section ul {
  padding-left: 1.5rem;
}
.affirmations {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
}
.affirmations p {
  margin: 0.5rem 0;
  font-weight: 300;
  color: var(--accent);
  text-align: justify;
}
.music-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-top: 1rem;
  border-radius: 12px;
}
.music-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.full-width-gallery {
  width: 100%;
  margin: 0;
  padding: 1rem 0;
  box-sizing: border-box;
  margin-top: 70px;
}
.box {
  color: var(--text);
    background-color: var(--primary);
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  padding: 0 15px;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: #1c1a2e;
  padding: 0.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
  text-align: justify;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  display: block;
}

.gallery-item h2 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.gallery-item p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.blu {
  color: var(--primary);
}
.green {
  color: #00d26a;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glow {
  position: absolute;
  top: -10vh;
  left: -10vw;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 179, 56, 0.15),
    transparent 70%
  );
  animation: rotateGlow 30s linear infinite;
  z-index: -1;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.audio-player {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  max-width: 500px;
  margin: 1rem auto;
  text-align: center;
}

.audio-player .controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.audio-player button {
  background: var(--accent);
  border: none;
  color: #000;
  padding: 0.5rem 0.8rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.audio-player input[type="range"] {
  flex: 1;
  width: 200px;
  accent-color: var(--accent);
}
 .main {
    margin-top: 80px;
  }
  .email-link {
    font-size: 11 px;
  }
  footer {
    font-size: 12px;
  }

  footer .social-links a:hover {
    color: white;
    opacity: 0.6;
    transition: all 100ms ease-in-out;
  }

@media (min-width: 1800px) {
  .gallery-grid {
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (min-width: 992px) {
  .full-width-gallery {
    max-width: 100vw;
    padding: 2rem 5vw;
  }
}
.gallery1 {
  display: none;
  margin-top: 20px;
}
.gallery1 img {
  width: 60%;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.gallery1 img:hover {
  transform: scale(1.05);
}
/* --- НАВІГАЦІЯ (FIXED-TOP) --- */
.navbar {
  background-color: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  padding: 10px 0;
  z-index: 10000 !important;
}

.logo {
  max-height: 40px;
  cursor: pointer !important; /* ТУТ ЗАВЖДИ РУКА */
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}
/* --- ФУТЕР --- */
footer {
  background-color: #000;
  padding: 60px 0;
  color: #ffffff;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  text-align: center;
}

footer .social-links a {
  color: #ffd700;
  font-size: 24px;
  margin: 0 15px;
  transition: 0.3s;
  cursor: pointer !important;
}

.email-link, .link {
  color: #ffd700 !important;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  opacity: 0.7;
  cursor: pointer !important;
}

/* --- МЕДІА ЗАПИТИ --- */
@media (max-width: 768px) {
  .hero { padding-top: 100px !important; }
  .gallery { flex-direction: column; }
  .gallery img { width: 100%; }
  
  h1 a.primary-link { font-size: 28px; letter-spacing: 4px; }
  h3 { font-size: 14px; padding: 0 20px; }
  p {padding: 5px;}
  .nav-link { font-size: 10px !important; }
  .dropdown-item { font-size: 8px !important; }
}


/* Приховуємо тільки контейнер списку */
.myList li {
  opacity: 0;
  transition: opacity 1s ease;
  list-style: none;
  margin-bottom: 15px;
}

/* Окремо задаємо колір для посилань, щоб вони не зникали */
.myList li a {
  color: var(--accent) !important;
  text-decoration: none;
  display: inline-block;
}

/* Колір для тексту p, щоб він теж був видимим */
.myList li p {
  color: var(--text) !important;
}

/* ПРИМУСОВА ЕЛЕГАНТНІСТЬ (скидання стилів Bootstrap) */
.navbar .nav-link, 
.navbar .dropdown-item {
    font-family: "PT Sans", sans-serif !important;
    font-weight: 300 !important; /* Тонкий шрифт */
    font-size: 12px !important;
    letter-spacing: 2px !important;
    text-transform: lowercase !important;
    color: white !important;
    -webkit-font-smoothing: antialiased;
}

/* Колір при наведенні */
.navbar .nav-link:hover, 
.navbar .dropdown-item:hover {
    color: #ffd700 !important;
    opacity: 1;
}

/* Прибираємо напівпрозорість, яку Bootstrap іноді дає активним посиланням */
.nav-link.active, .nav-link.show {
    opacity: 1 !important;
}

/* --- НАВІГАЦІЯ (FIXED-TOP) --- */
.navbar {
  background-color: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  padding: 10px 0;
  z-index: 10000 !important;
}

.logo {
  max-height: 40px;
  cursor: pointer !important; /* ТУТ ЗАВЖДИ РУКА */
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* --- ОСНОВНЕ МЕНЮ (12px) --- */
.nav-link {
  color: white !important;
  font-size: 12px !important;
  letter-spacing: 2px;
  text-transform: lowercase;
  text-decoration: none;
  cursor: pointer !important; /* РУКА ПРИ НАВЕДЕННІ */
  transition: all 0.3s ease;
  opacity: 0.8;
}

.nav-link:hover {
  color: #ffd700 !important;
  text-shadow: 0 0 10px #ffd700;
  opacity: 1;
}

/* --- ВИПАДАЮЧЕ МЕНЮ (10px) --- */
.dropdown-menu {
  background-color: #000000 !important;
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
  border-radius: 2px;
  padding: 8px 0 !important;
  min-width: 140px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.dropdown-item {
  color: rgba(255, 215, 0, 0.8) !important;
  font-size: 10px !important; /* МЕНШИЙ за основне меню */
  letter-spacing: 1.5px;
  text-transform: lowercase;
  padding: 8px 15px !important;
  background: transparent !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.dropdown-item:hover {
  color: #ffd700 !important;
  background-color: rgba(255, 215, 0, 0.07) !important;
  padding-left: 20px !important;
}