@charset "UTF-8";/*# The coding page CSS */
/**
 * =============================================================================
 * @encoding UTF-8
 * @author [Zerohold](//zerohold.sd1.su)
 * @project [Bets master](//betsmaster.ru)
 * @summary Стили для главной страницы
 * @created 2025-12
 * @modified 2025-12
 *
 * @file D:/controls-psr/betsmaster.ru/cdn.betsmaster.ru/css/index.css
 * @link https://cdn.betsmaster.ru/css/index.css
 *
 * @remarks
 * - Inline комментарии запрещены
 * =============================================================================
 */

/* НОВЫЕ СТИЛИ ДЛЯ ПРИВЕТСТВЕННОЙ СЕКЦИИ */

.hero-section
{
  position: relative;
  color: white;
  padding: 8rem 0;
  overflow: hidden;
  background: linear-gradient(-45deg, #ee7752, #3c3fe7, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient-animation 15s ease infinite;
  border-bottom: 5px solid var(--primary-dark);
}

@keyframes gradient-animation
{
  0%
  {
    background-position: 0 50%;
  }
  50%
  {
    background-position: 100% 50%;
  }
  100%
  {
    background-position: 0 50%;
  }
}

.hero-content
{
  position: relative;
  z-index: 1;
  animation: fade-in-up 1s ease-out forwards;
}

@keyframes fade-in-up
{
  from
  {
    opacity: 0;
    transform: translateY(20px);
  }
  to
  {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-icon
{
  color: #fcd34d; /* Яркий желтый */
  text-shadow: 0 0 20px rgba(252, 211, 77, 0.8), 0 0 30px rgba(252, 211, 77, 0.5);
  animation: float-glow 4s ease-in-out infinite;
}

@keyframes float-glow
{
  0%, 100%
  {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50%
  {
    transform: translateY(-15px) scale(1.05);
    opacity: 0.9;
  }
}

.hero-title,
.hero-subtitle
{
  animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation-delay: 0.2s;
}

@keyframes text-focus-in
{
  0%
  {
    filter: blur(12px);
    opacity: 0;
  }
  100%
  {
    filter: blur(0px);
    opacity: 1;
  }
}

.hero-buttons .btn
{
  animation: fade-in-up 0.8s ease-out backwards;
}

.hero-buttons .btn:nth-child(1)
{
  animation-delay: 0.4s;
}

.hero-buttons .btn:nth-child(2)
{
  animation-delay: 0.6s;
}


/* Фоновые анимированные фигуры */
.hero-section::before
{
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float-shape 15s infinite linear;
  z-index: 0;
}

.hero-section::after
{
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: float-shape 20s infinite linear reverse;
  z-index: 0;
}

@keyframes float-shape
{
  0%
  {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25%
  {
    transform: translateY(20px) translateX(-30px) rotate(90deg);
  }
  50%
  {
    transform: translateY(-20px) translateX(30px) rotate(180deg);
  }
  75%
  {
    transform: translateY(30px) translateX(20px) rotate(270deg);
  }
  100%
  {
    transform: translateY(0) translateX(0) rotate(360deg);
  }
}
