/* Стили для прелоадера */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    background-image: 
      linear-gradient(0deg, rgba(146, 147, 151, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(146, 147, 151, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    visibility: visible;
}

#preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(20, 20, 30, 0.7) 0%, rgba(10, 10, 15, 0.9) 70%);
    z-index: -1;
}

/* Добавляем пиксельный эффект на фон прелоадера */
#preloader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%237087e3' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 5v1H0V0h5z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
    mix-blend-mode: overlay;
    z-index: -1;
}

#preloader.active {
    opacity: 1;
    visibility: visible;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Добавляем контейнер для прелоадера и заголовка */
.preloader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Обновляем стили для заголовка прелоадера */
.preloader-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
}

/* Основной контейнер прелоадера с CRT эффектом */
.preloader-content {
    text-align: center;
    width: 320px;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    padding: 30px;
    background-color: rgba(18, 18, 24, 0.8);
    box-shadow: 0 0 20px var(--accent-glow-color),
                0 0 40px rgba(146, 147, 151, calc(var(--glow-intensity) * 0.3));
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Добавляем рамку с градиентом */
.preloader-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-image: linear-gradient(to right, var(--accent-color), var(--secondary-color)) 1;
    pointer-events: none;
    z-index: 2;
}

/* Добавляем эффект мониторной сетки */
.preloader-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(transparent 50%, rgba(0, 0, 0, 0.05) 50%),
        linear-gradient(90deg, transparent 50%, rgba(0, 0, 0, 0.05) 50%);
    background-size: 2px 2px;
    pointer-events: none;
    z-index: 3;
    opacity: 0.3;
}

/* Сканирующая линия для прелоадера */
.scan-line-preloader {
    display: none;
}

.preloader-content .logo {
    margin-bottom: 30px;
    font-size: 36px;
    font-family: var(--font-display);
    color: var(--text-color);
    text-shadow: 0 0 10px var(--secondary-glow-color),
                 0 0 20px rgba(85, 85, 255, calc(var(--glow-intensity) * 0.5)),
                 0 0 30px rgba(85, 85, 255, calc(var(--glow-intensity) * 0.3));
    animation: titlePulse 2s infinite alternate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-content .logo img {
    max-width: 120px;
    margin-bottom: 15px;
    animation: logoPulse 2.5s infinite alternate;
    filter: drop-shadow(0 0 10px var(--accent-glow-color));
    image-rendering: pixelated; /* Добавляем пиксельный рендеринг логотипа */
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px var(--accent-glow-color));
    }
    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px var(--secondary-glow-color))
                drop-shadow(0 0 25px rgba(85, 85, 255, calc(var(--glow-intensity) * 0.5)));
    }
}

/* Пиксельный оверлей для дополнительных эффектов */
.pixel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 6;
    opacity: 0.6;
}

/* Обновленный пиксельный прогресс-бар */
.loading-bar {
    width: 100%;
    height: 24px;
    background-color: rgba(10, 10, 15, 0.6);
    border-radius: 0;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    image-rendering: pixelated;
    box-shadow: 0 0 10px rgba(146, 147, 151, calc(var(--glow-intensity) * 0.5));
}

.loading-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1) 20%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.1) 80%, transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    z-index: 1;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(255, 255, 255, 0.03) 8px, rgba(255, 255, 255, 0.03) 16px);
    pointer-events: none;
    z-index: 2;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.loading-bar .progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: width 0.3s steps(20);
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 0 15px var(--secondary-glow-color);
    z-index: 3;
}

/* Создаем пиксельный эффект для прогресс-бара */
.loading-bar .progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, 
            rgba(255, 255, 255, 0.15), 
            rgba(255, 255, 255, 0.15) 3px, 
            transparent 3px, 
            transparent 6px),
        linear-gradient(0deg, 
            rgba(0, 0, 0, 0.1), 
            rgba(0, 0, 0, 0.1) 3px, 
            transparent 3px, 
            transparent 6px);
    background-size: 6px 6px, 6px 6px;
    pointer-events: none;
    z-index: 4;
}

.loading-bar .progress::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 8px var(--secondary-color), 0 0 16px var(--secondary-color);
    z-index: 5;
}

.loading-text {
    font-family: var(--font-mono);
    color: var(--text-color);
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.loading-text::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--accent-color);
    animation: cursorBlink 1s step-end infinite;
}

.loading-text .dots {
    display: inline-block;
    width: 24px;
    text-align: left;
}

@keyframes dotAnimation {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
    100% { content: '...'; }
}

.loading-text .dots::after {
    content: '';
    animation: dotAnimation 1.5s infinite;
}

/* Пиксельный текст терминала */
#preloader .terminal-text {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
    text-align: left;
    font-family: var(--font-mono);
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 2px solid var(--accent-color);
    width: 100%;
}

#preloader .terminal-prompt {
    color: var(--accent-color);
    margin-right: 6px;
}

@keyframes titlePulse {
    0% {
        opacity: 0.8;
        text-shadow: 0 0 10px var(--secondary-glow-color),
                    0 0 20px rgba(85, 85, 255, calc(var(--glow-intensity) * 0.5)),
                    0 0 30px rgba(85, 85, 255, calc(var(--glow-intensity) * 0.3));
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 15px var(--secondary-glow-color),
                    0 0 30px rgba(85, 85, 255, calc(var(--glow-intensity) * 0.7)),
                    0 0 45px rgba(85, 85, 255, calc(var(--glow-intensity) * 0.5)),
                    0 0 60px rgba(85, 85, 255, calc(var(--glow-intensity) * 0.3));
    }
}

:root {
  --background-color: #121218;
  --text-color: #dfd9d9;
  --accent-color: #929397;
  --secondary-color: #1391ff;
  --tertiary-color: #1391ff;
  --dark-accent: #585858;
  --light-accent: #7087e3;
  --bright-accent: #0f0fd5;
  --muted-accent: #bbb9b9;
  --danger-color: #ef5435;
  --terminal-bg: #222222;
  --glow-intensity: 0.8;
  --font-mono: 'VT323', 'Courier New', monospace;
  --font-display: 'Press Start 2P', monospace;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-mono);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-image: 
    linear-gradient(0deg, rgba(146, 147, 151, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(146, 147, 151, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center;
  position: relative;
}

/* Глобальные стили */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.fullscreen-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

#background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; /* Behind star-field */
  pointer-events: none;
}

#star-field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(20, 20, 30, 0.3) 0%, rgba(10, 10, 15, 0.1) 70%);
  pointer-events: none;
}

/* Удаляем стили для статических звезд */
/* .star {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
} */

/* Общие стили для секций */
.section {
  padding: 60px 0;
  position: relative;
  overflow: visible;
}

#manifesto {
  overflow: visible;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(146, 147, 151, 0.5);
}

.section-line {
  width: 100px;
  height: 3px;
  background-color: var(--accent-color);
  margin-bottom: 30px;
  position: relative;
}

.section-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  animation: linePulse 2s infinite alternate;
}

@keyframes linePulse {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

/* Хедер в стиле MegaETH */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--accent-color);
}

.main-header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  box-shadow: 0 5px 15px rgba(146, 147, 151, 0.3);
}

.header-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 30px;
}

.logo {
  font-family: var(--font-display);
  font-size: 2.34rem;
  color: var(--accent-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  margin-right: 30px;
  word-spacing: -0.5em;
}

.logo img {
  height: 62.4px;
  margin-right: 30px;
  filter: drop-shadow(0 0 5px var(--accent-color));
}

.main-nav {
  display: flex;
  position: relative;
  margin-left: 15px;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 12px;
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav-item:hover::after {
  transform: scaleX(1);
}

.nav-link {
  font-family: var(--font-mono);
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 8px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  letter-spacing: 1px;
  display: inline-block;
  text-shadow: 0 0 5px rgba(146, 147, 151, 0.5);
  border: 1px solid var(--accent-color);
  border-radius: 2px;
  background: rgba(146, 147, 151, 0.05);
  overflow: hidden;
  box-shadow: 0 0 3px rgba(146, 147, 151, 0.2);
}

.nav-link:hover {
  color: var(--accent-color);
  text-shadow: 0 0 5px var(--accent-color), 
               0 0 10px rgba(146, 147, 151, 0.5);
  transform: translateY(-2px);
  border-color: var(--accent-color);
  box-shadow: 0 0 5px var(--accent-color),
              0 0 10px rgba(146, 147, 151, 0.3);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav-link:hover::before,
.nav-item.active .nav-link::before {
  transform: scaleX(1);
}

.nav-link::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 4px;
  background: linear-gradient(45deg, 
                             var(--accent-color), 
                             transparent, 
                             var(--accent-color));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
  opacity: 0.3;
}

.nav-item.active .nav-link {
  color: var(--secondary-color);
  text-shadow: 0 0 8px var(--secondary-color);
  position: relative;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  opacity: 1;
  transform: scaleX(1);
}

.nav-item.active .nav-link::before {
  width: 100%;
  opacity: 1;
}

.nav-item.active .nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.wallet-btn {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
}

.wallet-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(146, 147, 151, 0.4), transparent);
  transition: 0.5s;
}

.wallet-btn:hover {
  background-color: rgba(146, 147, 151, 0.1);
  box-shadow: 0 5px 15px rgba(146, 147, 151, 0.3);
}

.wallet-btn:hover::before {
  left: 100%;
}

.wallet-btn.connecting {
  background-color: rgba(146, 147, 151, 0.2);
  animation: glitch 0.3s infinite alternate;
}

.wallet-btn.connected {
  background-color: rgba(146, 147, 151, 0.2);
  box-shadow: 0 0 15px rgba(146, 147, 151, 0.7);
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

/* Мобильное меню */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

/* Скрываем бургер меню на десктопе */
@media (min-width: 993px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

/* Обновленные стили для секции Hero */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 8rem;
  max-height: 100vh;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  margin-top: 15vh;
}

.hero-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  white-space: nowrap;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

#hero-animation {
  width: 800px;
  height: 800px;
  position: fixed;
  z-index: -1;
  opacity: 0.9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
  pointer-events: none;
}

.hero-header {
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--accent-color);
  text-shadow: 0 0 15px rgba(18, 18, 24, 0.9), 
               0 0 10px rgba(146, 147, 151, 0.8),
               0 0 20px rgba(146, 147, 151, 0.5),
               0 0 30px rgba(146, 147, 151, 0.3);
  animation: titlePulse 4s infinite alternate;
  min-width: 200px;
  text-align: center;
  padding: 0 2rem;
}

@keyframes titlePulse {
  0% {
    text-shadow: 0 0 10px rgba(146, 147, 151, 0.8),
                 0 0 20px rgba(146, 147, 151, 0.5),
                 0 0 30px rgba(146, 147, 151, 0.3);
  }
  100% {
    text-shadow: 0 0 15px rgba(146, 147, 151, 1),
                 0 0 30px rgba(146, 147, 151, 0.8),
                 0 0 45px rgba(146, 147, 151, 0.5),
                 0 0 60px rgba(146, 147, 151, 0.3);
  }
}

.hero-subtitle-container {
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
  letter-spacing: 2px;
  opacity: 0.85;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px rgba(18, 18, 24, 0.9),
               0 0 5px rgba(19, 145, 255, 0.7);
}

.hero-text {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(18, 18, 24, 0.9),
               0 0 5px rgba(223, 217, 217, 0.5);
}

.hero-buttons {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--background-color);
  border: none;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
}

.btn-primary:hover {
  box-shadow: 0 0 15px rgba(146, 147, 151, 0.7);
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
}

.btn-secondary:hover {
  background-color: rgba(146, 147, 151, 0.1);
  box-shadow: 0 0 10px rgba(146, 147, 151, 0.5);
  transform: translateY(-3px);
}

.neon-button {
  box-shadow: 0 0 10px var(--accent-glow-color),
              0 0 20px rgba(146, 147, 151, calc(var(--glow-intensity) * 0.3));
  transition: all 0.3s ease;
}

.neon-button:hover {
  box-shadow: 0 0 15px var(--accent-glow-color),
              0 0 30px rgba(146, 147, 151, calc(var(--glow-intensity) * 0.5)),
              0 0 45px rgba(146, 147, 151, calc(var(--glow-intensity) * 0.3));
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 1vh, 1rem);
  z-index: 1000;
  opacity: 0.9;
  transition: all 0.3s ease, opacity 0.5s ease;
  cursor: pointer;
}

.scroll-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1vw, 1rem);
  font-weight: bold;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(146, 147, 151, 0.7);
  margin-bottom: 5px;
}

.scroll-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.2rem, 0.5vh, 0.4rem);
}

.scroll-arrow {
  display: block;
  width: clamp(12px, 2vw, 18px);
  height: clamp(12px, 2vw, 18px);
  border-right: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  transform: rotate(45deg);
  animation: arrowPulse 2s infinite;
  outline: 1px solid rgba(19, 145, 255, 0.5);
  box-shadow: 0 0 5px var(--accent-glow-color);
}

.scroll-arrow:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes arrowPulse {
  0% {
    opacity: 0.4;
    transform: rotate(45deg) translateY(0);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translateY(5px);
    border-right: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    outline: 1px solid var(--secondary-color);
  }
  100% {
    opacity: 0.4;
    transform: rotate(45deg) translateY(0);
  }
}

/* Revolution text section - positioned above scroll indicator */
.revolution-text-section {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.8rem, 1.5vh, 1.2rem);
  z-index: 999;
  opacity: 0.9;
  transition: all 0.3s ease, opacity 0.5s ease;
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
}

.revolution-text-section:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-3px);
}

.revolution-title {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: bold;
  color: var(--secondary-color);
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(19, 145, 255, 0.8);
  margin: 0;
  line-height: 1.2;
}

.revolution-description {
  font-family: var(--font-mono);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  color: rgba(146, 147, 151, 0.9);
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(146, 147, 151, 0.5);
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

/* Desktop only visibility */
.desktop-only {
  display: block;
}

/* Bottom text indicator - positioned between scroll button and 3D model */
.bottom-text-indicator {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 1vh, 1rem);
  z-index: 1000;
  opacity: 0.9;
  transition: all 0.3s ease, opacity 0.5s ease;
  text-align: center;
  max-width: 600px;
  padding: 0 2rem;
}

.bottom-text-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.bottom-text-title {
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1vw, 1rem);
  font-weight: bold;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(146, 147, 151, 0.7);
  margin-bottom: 10px;
}

.bottom-text-description {
  font-family: var(--font-mono);
  font-size: clamp(0.6rem, 0.8vw, 0.9rem);
  color: var(--secondary-color);
  letter-spacing: 1px;
  opacity: 0.85;
  line-height: 1.4;
  text-shadow: 0 0 8px rgba(146, 147, 151, 0.5);
  margin: 0;
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 6rem;
  }
  
  .hero-title-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  #hero-animation {
    width: 400px;
    height: 400px;
    margin: 1rem 0;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    padding: 0;
  }
  
  .hero-title.mega,
  .hero-title.buddies {
    margin: 0 !important; /* Override margins on mobile */
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 1000;
  }
  
  .scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    letter-spacing: 2px;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    letter-spacing: 1px;
  }
  
  .hero-title-container {
    padding: 0 1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    letter-spacing: 0.5px;
  }
  
  .hero-title-container {
    padding: 0 0.5rem;
  }
}

/* Секция "О проекте" */
#about {
  overflow: visible;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  overflow: visible;
}

.about-item {
  background: rgba(26, 26, 26, 0.8);
  padding: 30px;
  border-radius: 0;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
  transform: translateZ(0);
}

.about-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(146, 147, 151, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.about-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(146, 147, 151, 0.2);
  border-color: var(--secondary-color);
}

.about-item:hover::before {
  transform: translateX(100%);
}

.about-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.about-item h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

/* Секция "Манифест" */
#manifesto::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--background-color));
  z-index: 2;
}

.terminal-container {
  background: var(--terminal-bg);
  border-radius: 0;
  padding: 30px;
  margin-top: 30px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  overflow: hidden;
  box-shadow: 0 0 15px rgba(146, 147, 151, 0.3);
  border: 2px solid var(--accent-color);
  clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.terminal-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(146, 147, 151, 0.4);
  border-color: var(--secondary-color);
}

.terminal-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(146, 147, 151, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.terminal-container:hover::before {
  transform: translateX(100%);
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(146, 147, 151, 0.3);
  padding-bottom: 10px;
  transition: all 0.3s ease;
}

.terminal-container:hover .terminal-header {
  border-bottom: 1px solid var(--secondary-color);
}

.terminal-title {
  color: var(--accent-color);
  font-size: 1rem;
  margin: 0;
  transition: all 0.3s ease;
}

.terminal-container:hover .terminal-title {
  color: var(--secondary-color);
}

.terminal-buttons {
  display: flex;
  gap: 8px;
}

.terminal-button {
  width: 12px;
  height: 12px;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
  transition: all 0.3s ease;
}

.terminal-container:hover .terminal-button {
  transform: scale(1.1);
}

.terminal-button.red {
  background-color: var(--danger-color);
}

.terminal-button.yellow {
  background-color: var(--tertiary-color);
}

.terminal-button.green {
  background-color: var(--accent-color);
}

.terminal-container:hover .terminal-button.green {
  background-color: var(--secondary-color);
}

.terminal-content {
  line-height: 1.6;
  overflow-y: visible;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
}

.terminal-content::-webkit-scrollbar {
  width: 0;
  display: none;
}

.terminal-text {
  margin: 0;
  color: var(--text-color);
  position: relative;
  margin-bottom: 8px;
  transition: transform 0.2s ease;
}

.terminal-text:hover {
  transform: translateX(5px);
  color: #ffffff;
}

.terminal-prompt {
  color: var(--accent-color);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.terminal-text:hover .terminal-prompt {
  color: var(--secondary-color);
}

/* Секция "Коллекция" */
.collection-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.collection-subtitle {
  text-align: left;
  font-size: 1rem;
  color: var(--text-color);
  margin-top: 5px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.filter-primary {
  margin-bottom: 10px;
}

.filter-secondary {
  display: flex;
  gap: 15px;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
}

.filter-btn:hover, .filter-btn.active {
  background-color: rgba(146, 147, 151, 0.1);
  box-shadow: 0 0 10px rgba(146, 147, 151, 0.5);
}

.filter-btn.active {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.nft-grid {
  display: none;
  padding: 20px 0;
  transition: opacity 0.5s ease;
  opacity: 0;
  position: relative;
  width: 100%;
  overflow: visible; /* Changed from 'hidden' to 'visible' */
  height: auto; /* Changed from fixed 450px to auto */
  min-height: 450px;
}

.slider-wrapper {
  width: 100%;
  overflow: visible; /* Changed from 'hidden' to 'visible' */
  position: relative;
  height: 100%;
}

.slider-track {
  display: flex;
  gap: 25px;
  backface-visibility: hidden;
  height: 100%;
}

@keyframes slideAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-2750px); /* 10 * (250px ширина карточки + 25px отступ) */
    }
}

.nft-card {
  min-width: 250px;
  width: 250px;
  height: auto;
  padding: 15px;
  margin: 0 15px;
  background-color: var(--card-background);
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  transform: translateY(0) scale(1);
  clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
  display: flex;
  flex-direction: column;
}

.nft-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(19, 145, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.nft-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(146, 147, 151, 0.3);
  border-color: var(--secondary-color);
}

.nft-card:hover::before {
  transform: translateX(100%);
}

.nft-image-container {
  position: relative;
  width: 100%;
  overflow: visible;
  margin-bottom: 15px;
}

.nft-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--accent-color);
  transition: all 0.3s ease;
}

.nft-info {
  padding: 10px 5px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.nft-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 10px 0;
  color: var(--accent-color);
  white-space: normal;
  overflow: visible;
  line-height: 1.2;
  height: 2.4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.nft-rarity {
  font-size: 0.9rem;
  color: var(--text-color);
  margin: 0 0 5px 0;
}

.nft-price {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin: 5px 0 0;
  font-weight: bold;
}

/* Удаляем пиксельные декоративные элементы на углах слайдера */
/* Этот код можно удалить полностью */
.pixel-decoration {
  display: none;
}

/* Секция "Дорожная карта" */
.roadmap-container {
    position: relative;
    padding: 40px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.roadmap-timeline {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    margin-left: -2px;
    background: linear-gradient(to bottom, var(--accent-color), var(--accent-color) 90%, transparent);
    z-index: 1;
    overflow: visible;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-glow-color);
    animation: timelinePulse 2s infinite alternate;
    z-index: 2;
}

.roadmap-timeline::after {
    display: none; /* Удаляем afterpseudo-element */
}

@keyframes timelinePulse {
    0% {
        box-shadow: 0 0 5px var(--accent-glow-color);
    }
    100% {
        box-shadow: 0 0 15px var(--accent-glow-color),
                    0 0 30px var(--accent-glow-color);
    }
}

.roadmap-items {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.roadmap-item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.roadmap-item:nth-child(odd) {
    justify-content: flex-end;
    padding-right: 50%;
    padding-left: 20px;
}

.roadmap-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 50%;
    padding-right: 20px;
}

.roadmap-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--background-color);
    border: 3px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: var(--accent-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.roadmap-item:nth-child(odd):hover .roadmap-icon {
    transform: translateX(70px) scale(1.1);
    box-shadow: 0 0 15px rgba(146, 147, 151, 0.5);
}

.roadmap-item:nth-child(even):hover .roadmap-icon {
    transform: translateX(-70px) scale(1.1);
    box-shadow: 0 0 15px rgba(146, 147, 151, 0.5);
}

.roadmap-content {
    flex: 1;
    padding: 20px;
    border-radius: 0;
    background: rgba(26, 26, 26, 0.7);
    border: 2px solid var(--accent-color);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.roadmap-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(146, 147, 151, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

.roadmap-item:hover .roadmap-content {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(146, 147, 151, 0.2);
}

.roadmap-item:hover .roadmap-content::before {
    transform: translateX(100%);
}

.roadmap-date {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-date {
    color: var(--secondary-color);
}

.roadmap-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 0;
    font-size: 0.8rem;
    margin-top: 10px;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
    transition: all 0.3s ease;
}

.roadmap-status.completed {
    background-color: rgba(146, 147, 151, 0.2);
    color: var(--accent-color);
}

.roadmap-status.in-progress {
    background-color: rgba(19, 145, 255, 0.2);
    color: var(--tertiary-color);
}

.roadmap-status.planned {
    background-color: rgba(19, 145, 255, 0.2);
    color: var(--secondary-color);
}

.roadmap-item:hover .roadmap-status {
    transform: scale(1.05);
}

/* Секция "Сообщество" */
.community-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.twitter-feed, .telegram-feed, .discord-community {
  background: rgba(34, 34, 40, 0.8);
  padding: 30px;
  border-radius: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}

.twitter-feed::before, .telegram-feed::before, .discord-community::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(146, 147, 151, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.twitter-feed:hover, .telegram-feed:hover, .discord-community:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(146, 147, 151, 0.2);
  border-color: var(--secondary-color);
}

.twitter-feed:hover::before, .telegram-feed:hover::before, .discord-community:hover::before {
  transform: translateX(100%);
}

.community-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.social-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-right: 10px;
}

/* Унифицированный стиль для кнопок сообщества */
.community-btn {
  display: inline-block;
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  color: var(--background-color);
  font-family: var(--font-mono);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  margin-top: 15px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 90% 100%, 0 100%);
}

.community-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.community-btn:hover {
  box-shadow: 0 0 10px rgba(146, 147, 151, 0.5);
}

.community-btn:hover::before {
  left: 100%;
}

.telegram-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.telegram-links .community-btn {
  margin-top: 0;
}

/* Футер */
.main-footer {
  background-color: var(--background-color);
  padding: 60px 0 30px;
  border-top: 2px solid var(--accent-color);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px var(--accent-color));
}

.footer-description {
  max-width: 300px;
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--accent-color);
  border-radius: 0;
  transition: all 0.3s ease;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.social-link:hover {
  background-color: var(--accent-color);
}

.social-link i {
  color: var(--text-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover i {
  color: var(--background-color);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-nav-section {
  min-width: 150px;
}

.footer-nav-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-nav-links {
  list-style: none;
  padding: 0;
}

.footer-nav-link {
  margin-bottom: 10px;
}

.footer-nav-link a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-nav-link a::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-family: var(--font-mono);
}

.footer-nav-link a:hover {
  box-shadow: 0 0 15px rgba(146, 147, 151, 0.7);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(146, 147, 151, 0.1);
  font-size: 0.8rem;
  color: rgba(223, 217, 217, 0.7);
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1200px) {
  .container {
    width: 95%;
  }
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .roadmap-container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 15px;
  }
  
  .nav-list {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    flex-direction: column;
    padding: 20px 0;
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .nav-item {
    margin: 10px 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .roadmap-item {
    margin-bottom: 40px;
  }
  

  
  .footer-container {
    flex-direction: column;
  }
  
  .footer-nav {
    margin-top: 30px;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .section-heading {
    font-size: 1.8rem;
  }
}

.mobile-menu.active .mobile-menu-link:hover {
  background: linear-gradient(90deg, transparent, rgba(19, 145, 255, 0.2), transparent);
}

.mobile-menu.active .mobile-menu-link {
  box-shadow: 0 0 15px rgba(146, 147, 151, 0.7);
}

.hero-badge:hover {
  background-color: rgba(146, 147, 151, 0.1);
  box-shadow: 0 0 10px rgba(146, 147, 151, 0.5);
}

.twitter-feed::before, .telegram-feed::before, .discord-community::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(146, 147, 151, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.twitter-feed:hover, .telegram-feed:hover, .discord-community:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(146, 147, 151, 0.2);
  border-color: var(--secondary-color);
}



.footer-nav-link a:hover {
  box-shadow: 0 0 15px rgba(146, 147, 151, 0.7);
}

.modal-bg.active .modal-content {
  background-color: rgba(146, 147, 151, 0.8);
  box-shadow: 0 0 15px rgba(146, 147, 151, 0.5);
}

.roadmap-content.neon-glow {
  background: rgba(34, 34, 40, 0.8);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
  clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 0 100%);
}

.roadmap-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(146, 147, 151, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.roadmap-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(146, 147, 151, 0.2);
  border-color: var(--secondary-color);
}

.roadmap-content:hover::before {
  transform: translateX(100%);
}

/* Базовые отступы для равномерного расположения заголовков относительно 3D модели */
.hero-title.mega {
  margin-right: 0; /* Будет динамически регулироваться JavaScript */
  transition: margin 0.3s ease;
}

.hero-title.buddies {
  margin-left: 0; /* Будет динамически регулироваться JavaScript */
  transition: margin 0.3s ease;
}

/* Адаптивные отступы контейнера заголовка (отступы самих заголовков управляются JavaScript) */
@media (min-width: 1600px) {
  .hero-title-container {
    padding: 0 3rem; /* Дополнительный отступ от краев */
  }
}

@media (max-width: 1599px) and (min-width: 1400px) {
  .hero-title-container {
    padding: 0 2.5rem;
  }
}

@media (max-width: 1399px) and (min-width: 1200px) {
  .hero-title-container {
    padding: 0 2rem;
  }
}

@media (max-width: 1199px) and (min-width: 1024px) {
  .hero-title-container {
    padding: 0 2rem;
  }
}

@media (max-width: 1023px) and (min-width: 900px) {
  .hero-title-container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 899px) and (min-width: 769px) {
  .hero-title-container {
    padding: 0 1.5rem;
  }
}

/* На мобильных устройствах убираем отступы заголовков для вертикального расположения */
@media (max-width: 768px) {
  .hero-title.mega,
  .hero-title.buddies {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

/* Обновленные медиа-запросы для мобильных устройств */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .about-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .roadmap-container {
    padding: 0 30px;
  }
  
  .community-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .twitter-feed, .telegram-feed, .discord-community {
    width: 100%;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-logo {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .footer-nav {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .main-header {
    padding: 15px 0;
  }
  
  .header-container {
    position: relative;
  }
  
  .logo {
    font-size: 20px;
    z-index: 1001;
  }
  
  .logo img {
    max-width: 40px;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--background-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    z-index: 1000;
    transition: right 0.3s ease;
    background-image: 
      linear-gradient(0deg, rgba(146, 147, 151, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(146, 147, 151, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    border-left: 2px solid var(--accent-color);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }
  
  .nav-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(20, 20, 30, 0.7) 0%, rgba(10, 10, 15, 0.95) 70%);
    z-index: -1;
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .nav-item {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    font-size: 18px;
    padding: 12px;
    display: block;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-content {
    padding: 100px 20px 80px;
  }
  
  .hero-title-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-title {
    font-size: 50px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-top: 10px;
  }
  
  .hero-description {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .terminal-container {
    padding: 15px;
  }
  
  .terminal-text {
    font-size: 14px;
  }
  
  .collection-filters {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .filter-btn {
    font-size: 14px;
    padding: 8px 12px;
  }
  
  .roadmap-container {
    padding: 0 15px;
  }
  
  .roadmap-items {
    margin-left: 25px;
  }
  
  .roadmap-timeline {
    left: 25px;
  }
  
  .roadmap-item {
    padding-left: 45px;
    margin-bottom: 40px;
  }
  
  .roadmap-icon {
    left: -25px;
    width: 50px;
    height: 50px;
  }
  
  .roadmap-content {
    padding: 15px;
  }
  

  
  .footer-nav {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-nav-section {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .preloader-content {
    width: 290px;
    padding: 20px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .section-heading {
    font-size: 28px;
  }
  
  .nft-grid {
    grid-template-columns: 1fr;
  }
  
  .roadmap-content h4 {
    font-size: 16px;
  }
  
  .roadmap-content p {
    font-size: 14px;
  }
  
  .community-heading {
    font-size: 18px;
  }
  
  .social-icon {
    font-size: 36px;
  }
  
  .footer-logo img {
    max-width: 80px;
  }
  
  .footer-description {
    font-size: 14px;
  }
}

/* Small mobile devices (iPhone SE, etc) */
@media (max-width: 375px) {
  .preloader-content {
    width: 250px;
    padding: 15px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .btn-primary, .btn-secondary {
    font-size: 14px;
    padding: 10px 15px;
  }
  
  .section-heading {
    font-size: 24px;
  }
  
  .about-item h3 {
    font-size: 18px;
  }
  
  .roadmap-content {
    padding: 12px;
  }
  
  .roadmap-date {
    font-size: 14px;
  }
  
  .roadmap-content h4 {
    font-size: 15px;
  }
  
  .footer-nav-title {
    font-size: 16px;
  }
  
  .footer-nav-link a {
    font-size: 14px;
  }
}

.roadmap-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
}

.roadmap-filters .filter-btn[data-filter="all"] {
    background: rgba(26, 26, 26, 0.8);
    padding: 10px 20px;
    min-width: 120px;
}

.secondary-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .roadmap-timeline {
        left: 30px;
    }
    
    .roadmap-item:nth-child(odd),
    .roadmap-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .roadmap-icon {
        left: 30px;
    }
}

/* Добавляем точки продолжения в конце таймлайна */
.roadmap-timeline .continuation-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 60px;
    z-index: 2;
    overflow: visible;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
}

.roadmap-timeline .continuation-dots::before {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow-color);
    animation: dotPulse 2s infinite alternate 0.3s;
}

.roadmap-timeline .continuation-dots::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-glow-color);
    animation: dotPulse 2s infinite alternate 0.6s;
}

.roadmap-timeline .continuation-dots .small-dot {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-glow-color);
    animation: dotPulse 2s infinite alternate 0.9s;
}

@keyframes dotPulse {
    0% {
        opacity: 0.3;
        box-shadow: 0 0 5px var(--accent-glow-color);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--accent-glow-color),
                    0 0 20px var(--accent-glow-color);
    }
}

/* Экосистема стили */
.ecosystem-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 40px;
    opacity: 0.8;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding-top: 10px; /* Add padding to accommodate hover translateY effect */
}

.ecosystem-card {
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.9) 0%, rgba(25, 25, 35, 0.8) 100%);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(112, 135, 227, 0.1), transparent);
    transition: left 0.5s ease;
}

.ecosystem-card:hover::before {
    left: 100%;
}

.ecosystem-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(112, 135, 227, 0.3);
}

.ecosystem-card.highlight {
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(85, 85, 255, 0.3);
}

.ecosystem-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    font-size: 24px;
    color: #000;
}

.ecosystem-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ecosystem-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ecosystem-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-tag {
    background: rgba(112, 135, 227, 0.2);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ecosystem-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-display);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ecosystem-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(112, 135, 227, 0.5);
}

.ecosystem-btn.disabled {
    background: rgba(100, 100, 100, 0.3);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    pointer-events: none;
}

.ecosystem-btn i {
    font-size: 14px;
}

/* Partnership Section Styles */
.partnerships-subtitle {
    text-align: center;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 40px;
    font-size: 18px;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px; /* Add padding to accommodate hover translateY effect */
}

.partnership-card {
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.9) 0%, rgba(25, 25, 35, 0.8) 100%);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(112, 135, 227, 0.1), transparent);
    transition: left 0.5s ease;
}

.partnership-card:hover::before {
    left: 100%;
}

.partnership-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(112, 135, 227, 0.3);
}

.partnership-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partnership-badge.megamafia {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.partnership-badge.megaforge {
    background: linear-gradient(45deg, #4ecdc4, #45b7aa);
    color: #000;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.partnership-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
}

.partnership-description {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
    flex-grow: 0;
}

.partnership-card .twitter-embed-container {
    margin: 5px 0 0 0;
    flex-grow: 0;
}



.partnership-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.partnership-links {
    margin-top: 25px;
}

.partnership-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-display);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.partnership-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(112, 135, 227, 0.5);
}

.partnership-btn.twitter-link {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.partnership-btn.twitter-link:hover {
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.5);
}

.twitter-embed-container {
    margin: 10px 0;
    flex-grow: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.twitter-embed-container .twitter-tweet {
    margin: 0 auto !important;
    max-width: 100% !important;
    min-height: 200px;
}

/* Responsive design for partnerships */
@media (max-width: 768px) {
    .partnerships-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partnership-card {
        padding: 20px;
        min-height: auto;
    }
    
    .partnership-card h3 {
        font-size: 20px;
        margin-top: 20px;
    }
    
    .partnership-features {
        justify-content: center;
    }
    
    .partnership-description {
        font-size: 13px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .partnerships-grid {
        gap: 20px;
    }
    
    .partnership-card {
        padding: 20px;
        min-height: 450px;
    }
}

/* Dropdown навигация */
.nav-item.dropdown {
    position: relative;
}

/* Dropdown arrow using a span element instead of ::after */
.dropdown-toggle .dropdown-arrow {
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.dropdown:hover .dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

/* Ensure dropdown-toggle inherits nav-link hover effects */
.dropdown-toggle {
    position: relative;
    /* Наследуем все базовые стили от nav-link */
    font-family: var(--font-mono);
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 8px;
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    letter-spacing: 1px;
    display: inline-block;
    text-shadow: 0 0 5px rgba(146, 147, 151, 0.5);
    border: 1px solid var(--accent-color);
    border-radius: 2px;
    background: rgba(146, 147, 151, 0.05);
    overflow: visible;
    box-shadow: 0 0 3px rgba(146, 147, 151, 0.2);
    z-index: 2;
}

/* Ensure text content is above background effects */
.dropdown-toggle > * {
    position: relative;
    z-index: 3;
}

.dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dropdown:hover .dropdown-toggle,
.dropdown-toggle:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color), 
                 0 0 10px rgba(146, 147, 151, 0.5);
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: 0 0 5px var(--accent-color),
                0 0 10px rgba(146, 147, 151, 0.3);
    background: linear-gradient(45deg, 
                               rgba(112, 135, 227, 0.15), 
                               rgba(112, 135, 227, 0.08), 
                               rgba(112, 135, 227, 0.15));
}

.dropdown:hover .dropdown-toggle::before,
.dropdown-toggle:hover::before {
    transform: scaleX(1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.95) 0%, rgba(25, 25, 35, 0.95) 100%);
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    min-width: 200px;
    padding: 15px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: rgba(112, 135, 227, 0.1);
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow-color);
}

.dropdown-link i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* External link стили */
.nav-link.external-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link.external-link i {
    font-size: 12px;
    opacity: 0.7;
}

/* Mobile стили для dropdown */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(18, 18, 24, 0.9);
        border: none;
        border-radius: 0;
        margin-top: 10px;
        box-shadow: none;
        backdrop-filter: none;
    }
    
    .dropdown-toggle .dropdown-arrow {
        display: none;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ecosystem-card {
        padding: 25px;
    }
    
    .ecosystem-features {
        justify-content: center;
    }
}

/* Ecosystem страницы стили */
.ecosystem-page {
    background: var(--background-color);
}

/* Page Hero */
.page-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.9) 0%, rgba(25, 25, 35, 0.8) 100%);
    border-bottom: 1px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, rgba(146, 147, 151, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(146, 147, 151, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumbs {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

.breadcrumbs span {
    margin: 0 10px;
    opacity: 0.5;
}

.breadcrumbs .current {
    color: var(--text-color);
}

.page-title {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--text-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Bot Cards */
.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bot-card {
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.9) 0%, rgba(25, 25, 35, 0.8) 100%);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(112, 135, 227, 0.1), transparent);
    transition: left 0.5s ease;
}

.bot-card:hover::before {
    left: 100%;
}

.bot-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(112, 135, 227, 0.3);
}

.bot-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bot-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: #000;
}

.bot-icon.ambassador {
    background: linear-gradient(45deg, #7087e3, #5555ff);
}

.bot-icon.influencer {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
}

.bot-icon.checker {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.bot-info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-color);
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bot-status {
    font-family: var(--font-display);
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bot-status.invite-only {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.bot-status.public {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.bot-description {
    margin-bottom: 25px;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

.bot-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.bot-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.bot-features .feature i {
    color: var(--accent-color);
    width: 16px;
}

.bot-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-display);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.bot-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(112, 135, 227, 0.5);
}

/* Bot Details Sections */
.bot-details {
    border-top: 1px solid rgba(112, 135, 227, 0.3);
}

.bot-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.explanation-block {
    margin-bottom: 30px;
}

.explanation-block h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.explanation-block p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.7;
}

/* Role Progression */
.role-progression h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Twitter Embed Section */
.twitter-embed-section {
    margin-top: 50px;
}

.twitter-embed-section h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Duplicate .twitter-embed-container definition removed - using the one above with proper spacing */

.twitter-embed-container .twitter-tweet {
    margin: 0 !important;
}

/* Dark theme for Twitter embed */
.twitter-embed-container iframe {
    border-radius: 8px;
}

/* Mobile responsive for Twitter embed */
@media (max-width: 768px) {
    .twitter-embed-section {
        margin-top: 30px;
    }
    
    .twitter-embed-container {
        max-width: 100%;
    }
}

.roles-list {
    display: grid;
    gap: 20px;
}

.role-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(18, 18, 24, 0.5);
    border: 1px solid rgba(112, 135, 227, 0.3);
    border-radius: 8px;
}

.role-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: #000;
}

.role-icon.newbie {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.role-icon.creator {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
}

.role-icon.visionary {
    background: linear-gradient(45deg, #dc3545, #6f42c1);
}

.role-info h4 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-color);
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.role-info p {
    color: var(--text-color);
    opacity: 0.7;
    margin: 0;
    font-size: 14px;
}

/* XP System */
.xp-table {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.xp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(18, 18, 24, 0.5);
    border: 1px solid rgba(112, 135, 227, 0.3);
    border-radius: 5px;
}

.xp-row .stars {
    font-family: var(--font-display);
    color: var(--accent-color);
    text-transform: uppercase;
}

.xp-row .xp-value {
    font-family: var(--font-display);
    color: var(--text-color);
    font-weight: bold;
}

/* WL Rewards */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.reward-tier {
    text-align: center;
    padding: 25px 15px;
    background: rgba(18, 18, 24, 0.5);
    border: 1px solid rgba(112, 135, 227, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.reward-tier:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(112, 135, 227, 0.2);
}

.reward-tier.highlight {
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(85, 85, 255, 0.3);
}

.tier-xp {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-reward {
    color: var(--text-color);
    font-size: 14px;
    opacity: 0.8;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-item {
    text-align: center;
    padding: 25px;
    background: rgba(18, 18, 24, 0.5);
    border: 1px solid rgba(112, 135, 227, 0.3);
    border-radius: 8px;
}

.feature-item i {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-item p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.5;
}

/* Access Section */
.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.access-card {
    text-align: center;
    padding: 35px;
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.9) 0%, rgba(25, 25, 35, 0.8) 100%);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.access-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(112, 135, 227, 0.3);
}

.access-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.access-card .access-status {
    font-family: var(--font-display);
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.access-card .access-status:not(.public) {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.access-card .access-status.public {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.access-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.access-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-display);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 5px;
}

.access-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(112, 135, 227, 0.5);
}

.checker-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Back Section */
.back-section {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(112, 135, 227, 0.3);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-display);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(112, 135, 227, 0.5);
}

/* Mobile Styles */
@media (max-width: 992px) {
    .page-hero {
        padding: 120px 0 80px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .bots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bot-features {
        grid-template-columns: 1fr;
    }
    
    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .access-grid {
        grid-template-columns: 1fr;
    }
    
    .checker-links {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
}

/* AI Companions стили */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-showcase {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.9) 0%, rgba(25, 25, 35, 0.8) 100%);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-showcase:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(112, 135, 227, 0.3);
}

.feature-showcase .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    font-size: 32px;
    color: #000;
}

.feature-showcase h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-showcase p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(18, 18, 24, 0.5);
    border: 1px solid rgba(112, 135, 227, 0.3);
    border-radius: 8px;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Chat Preview */
.mock-chat {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.9) 0%, rgba(25, 25, 35, 0.8) 100%);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    overflow: hidden;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(112, 135, 227, 0.1);
    border-bottom: 1px solid rgba(112, 135, 227, 0.3);
}

.buddy-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
}

.buddy-name {
    font-family: var(--font-display);
    color: var(--text-color);
    font-size: 16px;
    flex-grow: 1;
}

.chat-status {
    font-family: var(--font-display);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-status.online {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.chat-messages {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.message {
    margin-bottom: 15px;
}

.message-content {
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 80%;
    word-wrap: break-word;
}

.buddy-message .message-content {
    background: rgba(112, 135, 227, 0.2);
    border: 1px solid var(--accent-color);
    color: var(--text-color);
    margin-right: auto;
}

.user-message .message-content {
    background: rgba(85, 85, 255, 0.2);
    border: 1px solid var(--secondary-color);
    color: var(--text-color);
    margin-left: auto;
}

.user-message {
    text-align: right;
}

.message-time {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.6;
    margin-top: 5px;
    font-family: var(--font-display);
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: typingPulse 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }
.typing-dots span:nth-child(3) { animation-delay: 0; }

@keyframes typingPulse {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.typing-text {
    font-size: 12px;
    color: var(--text-color);
    font-family: var(--font-display);
}

.chat-input {
    display: flex;
    padding: 15px 20px;
    background: rgba(18, 18, 24, 0.5);
    border-top: 1px solid rgba(112, 135, 227, 0.3);
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(18, 18, 24, 0.8);
    border: 1px solid rgba(112, 135, 227, 0.3);
    border-radius: 20px;
    color: var(--text-color);
    font-family: var(--font-primary);
    outline: none;
}

.chat-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chat-input button {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tech-item {
    padding: 30px;
    background: rgba(18, 18, 24, 0.5);
    border: 1px solid rgba(112, 135, 227, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(112, 135, 227, 0.2);
}

.tech-item h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-item p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Nostalgia Section */
.nostalgia-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.nostalgia-text h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nostalgia-text p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.retro-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.retro-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(18, 18, 24, 0.5);
    border: 1px solid rgba(112, 135, 227, 0.3);
    border-radius: 8px;
}

.retro-icon i {
    font-size: 24px;
    color: var(--accent-color);
    width: 30px;
    text-align: center;
}

.retro-icon span {
    color: var(--text-color);
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Launch Status */
.launch-status {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.status-card {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(18, 18, 24, 0.9) 0%, rgba(25, 25, 35, 0.8) 100%);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
}

.status-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    font-size: 32px;
    color: #000;
}

.status-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(112, 135, 227, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-family: var(--font-display);
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline */
.timeline h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(18, 18, 24, 0.5);
    border: 1px solid rgba(112, 135, 227, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.timeline-item.completed {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.timeline-item.current {
    border-color: var(--accent-color);
    background: rgba(112, 135, 227, 0.1);
    box-shadow: 0 0 15px rgba(112, 135, 227, 0.3);
}

.timeline-date {
    font-family: var(--font-display);
    color: var(--accent-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-event {
    color: var(--text-color);
    font-size: 14px;
}

.timeline-item.completed .timeline-date,
.timeline-item.completed .timeline-event {
    color: #28a745;
}

/* Mobile Styles для AI страницы */
@media (max-width: 992px) {
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .nostalgia-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .launch-status {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .chat-messages {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .feature-showcase {
        padding: 30px 15px;
    }
    
    .step {
        padding: 25px 15px;
    }
    
    .status-card {
        padding: 30px 20px;
    }
    
    .chat-header {
        padding: 15px;
    }
    
    .chat-messages {
        padding: 15px;
    }
    
    .chat-input {
        padding: 10px 15px;
    }
}

/* Override inline overflow styles for partnerships section - desktop only */
@media (min-width: 992px) {
    #partnerships.section {
        overflow: visible !important;
    }

    #partnerships .partnerships-grid {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
}

/* Planned/Disabled ecosystem card styles */
.ecosystem-card.planned {
    opacity: 0.6;
    filter: grayscale(0.7);
}

.ecosystem-card.planned:hover {
    transform: none;
    border-color: var(--accent-color);
    box-shadow: none;
}

.ecosystem-card.planned::before {
    display: none;
}

.ecosystem-card.planned .ecosystem-icon {
    background: linear-gradient(45deg, #666, #888);
    opacity: 0.7;
}

.ecosystem-card.planned h3 {
    color: #888;
}

.ecosystem-card.planned p {
    opacity: 0.6;
}

.planned-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: rgba(100, 100, 100, 0.3);
    color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    font-family: var(--font-display);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(100, 100, 100, 0.5);
    cursor: not-allowed;
    pointer-events: none;
}

.planned-btn i {
    font-size: 14px;
}

/* Dropdown planned styles */
.dropdown-link.planned {
    opacity: 0.5;
    color: #888 !important;
    cursor: not-allowed;
    pointer-events: none;
}

.dropdown-link.planned:hover {
    background: none !important;
    color: #888 !important;
}
