@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@600;700;800&display=swap');
        
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.hero-gradient {
    background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.1) 0%, rgba(255, 255, 255, 0) 30%);
}

.dark .hero-gradient {
    background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.1) 0%, rgba(15, 23, 42, 0) 30%);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.dark .feature-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.pricing-card:hover {
    transform: scale(1.03);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.hero-gradient {
    background: linear-gradient(to bottom, #f0f9ff, #ffffff);
    overflow: hidden;
}
.dark .hero-gradient {
    background: linear-gradient(to bottom, #0f172a, #1e293b);
}

/* Анимации градиентов */
.blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(40px);
    opacity: 0.7;
    animation: blob-animate 15s infinite ease-in-out;
    z-index: 0;
}

.blob-1 {
    width: 120px;
    height: 120px;
    background: #3b82f6;
    top: -30px;
    left: -30px;
    animation-delay: 0s;
}

.blob-2 {
    width: 150px;
    height: 150px;
    background: #f59e0b;
    bottom: -40px;
    right: -40px;
    animation-delay: 5s;
}

.blob-3 {
    width: 100px;
    height: 100px;
    background: #8b5cf6;
    top: 20px;
    right: -50px;
    animation-delay: 10s;
}

@keyframes blob-animate {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(0, 20px) scale(0.9); }
    75% { transform: translate(-30px, -15px) scale(1.05); }
}

/* Адаптация для мобильных */
@media (max-width: 767px) {
    .hero-content {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .hero-text {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-image-container {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .player-count-container {
        margin-top: 1.5rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .player-avatars {
        flex-shrink: 0;
    }
    
    .player-text {
        flex-grow: 1;
        min-width: 0; /* Предотвращает переполнение */
    }
    
    .blob {
        display: none;
    }
}

.telegram-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.telegram-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background-color: #3b82f6;
    border-radius: 50%;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg_ico{
    width: 25px;
    height: 25px;
    text-align: center;
}

.telegram-avatar {
    transition: transform 0.2s, box-shadow 0.2s;
}
.telegram-avatar:hover {
    transform: scale(1.05);
}

.tg-container__holder{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.youtube-container {
  max-width: 800px; /* Максимальная ширина контейнера */
  margin: 0 auto;   /* Центрирование на странице */
}

.youtube-preview {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.youtube-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.youtube-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Точное центрирование */
  width: 70px;
  height: 70px;
  background: rgba(255, 0, 0, 0.8);
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
}

.youtube-play-button:hover {
  background: rgba(255, 0, 0, 1);
}

.pictura-prev,
.pictura-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.pictura-prev:hover,
.pictura-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.pictura-prev {
  left: 15px;
}

.pictura-next {
  right: 15px;
}

.pictura-dots{
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
}

.pictura-slider{
  background: #000;
}
