/* Общий фон и шрифт */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(#121625, #0b0d1a);
  color: #fff;
}

/* Хедер в стиле стекла Vavada */
.glass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(25, 26, 38, 0.65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-left: 350px;
}

.logo img {
  display: block;
  max-height: 30px;
  height: auto;
  width: auto;
}
@media (max-width: 600px) {
  .logo {
    margin-left: 0;
    justify-content: center;
  }

  .logo img {
    max-height: 30px;
    width: auto;
    height: auto;
  }
}



.header-buttons {
  display: flex;
  gap: 10px;
  margin-right: 350px;
}
@media (max-width: 600px) {
  .header-buttons {
    margin-right: 0;
    justify-content: center;
  }
}

/* Убираем подчеркивание и заставляем ссылку вести себя как flex-контейнер */
.btn-link {
  text-decoration: none;
  display: flex;
}

/* Ваши стили кнопок */
.btn-login,
.btn-reg {
  padding: 0px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #ff0033 0%, #c1002b 100%);
  color: #fff;
  border: none;
  box-shadow: 0 3px 0 0 #871628, 0 4px 4px 0 #000;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.btn-reg:hover,
.btn-login:hover {
  background: linear-gradient(135deg, #ff5570, #ff0033);
}

@media (max-width: 600px) {
  .btn-login,
  .btn-reg {
    padding: 0px 12px;
    font-size: 0.8rem;
    height: 36px;
  }
}



/* Мобильная адаптация */
@media (max-width: 600px) {
  .glass-header {
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
  }

  .logo {
    margin-bottom: 8px;
  }

  .divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 6px 0;
  }

  .header-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
}

/* Слайдер */
/* Общие стили для слайдера */
.slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Стили для изображения */
.slider-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 600px) {
  .slider-wrapper img {
    object-position: top;
  }
}



.menu {
  display: flex;
  justify-content: space-around;
  background-color: #1b1d2b;
  background-image: url('backstrips.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10px;
  border-top: 1px solid #2c2c3a;
  border-bottom: 1px solid #2c2c3a;
}

.menu a {
  display: flex;
  flex-direction: column; /* По умолчанию иконка над текстом */
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
}

.menu a:hover {
  background-color: rgba(255, 54, 93, 0.1);
}

.menu-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
}

.menu-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 601px) {
  .menu a {
    flex-direction: row; /* Иконка слева от текста */
    gap: 8px;
  }

  .menu-icon {
    margin-bottom: 0;
  }
}



.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  padding: 20px;
  background-image: url('backstrips.svg');
  background-position: center, center;
  background-repeat: repeat, no-repeat;
  background-size: cover, contain;
}

.slot-card {
  background: #1d1f2f;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 51, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.slot-card img {
  width: 100%;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.slot-card:hover {
  transform: translateY(-4px);
}

.slot-card:hover .overlay {
  background: rgba(0, 0, 0, 0.4);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #b4ec51 0%, #429321 100%);
  color: #fff;
  border: none;
  box-shadow: 0 3px 0 0 #2a4d1a, 0 4px 4px 0 #000;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
  height: 40px;
  display: none;
  z-index: 2;
}

.slot-card:hover .play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn:hover {
  background: linear-gradient(135deg, #7ed957, #62c23c);
}



/* SEO блок */
.seo-content {
  background: #171925;
  padding: 30px 20px;
  color: #eee;
  font-size: 1rem;
  line-height: 1.6;
}
.seo-content h2 {
  color: #ff365d;
  font-size: 1.6rem;
  margin-top: 30px;
}
.seo-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #10121c;
}
.seo-content th,
.seo-content td {
  border: 1px solid #333;
  padding: 10px;
  text-align: left;
}
.seo-content th {
  background: #ff365d;
  color: #fff;
}

/* Футер */
.vavada-footer {
  background: url('noise.svg') no-repeat center/cover;
  padding: 25px;
  text-align: center;
  color: #bbb;
  font-size: 0.85rem;
}


