body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0b1d3a;
  color: #fff;
  overflow-x: hidden;
}

.xbet-header {
  background: #174068;
  color: #fff;
  font-size: 14px;
  width: 100%;
}

.xbet-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.xbet-logo img {
  width: 140px;
}

.xbet-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.xbet-register {
  background: #8dd229;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 10px #8dd22980;
  transition: background 0.3s ease;
}

.xbet-register:hover {
  background: #77bb1c;
}

.xbet-login {
  background: #fff;
  color: #0d213b;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 6px #ffffff66;
  transition: background 0.3s ease;
}

.xbet-login:hover {
  background: #e5e5e5;
}

.xbet-separator {
  color: #ccc;
  margin: 0 5px;
}

.xbet-social img {
  width: 24px;
  height: 24px;
  background: #ccc;
  border-radius: 50%;
  padding: 4px;
  transition: transform 0.3s ease;
}

.xbet-social img:hover {
  transform: scale(1.1);
}

.xbet-nav {
  background: #285c89;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  gap: 30px;
      flex-wrap: wrap;
}

.xbet-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  margin: 5px;
}

.xbet-nav a:hover {
  color: #8dd229;
}

.xbet-video-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.xbet-video-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.2) blur(5px);
}

.xbet-video-overlay {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.xbet-video-overlay h1 {
  font-size: 48px;
  color: #fff;
  margin: 0;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.xbet-video-overlay p {
  font-size: 20px;
  color: #ccc;
  margin: 20px 0;
}

.xbet-video-overlay a {
  display: inline-block;
  padding: 14px 32px;
  background: #8dd229;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 0 10px #8dd22988;
  transition: background 0.3s ease;
}

.xbet-video-overlay a:hover {
  background: #75b41b;
}

.bonuses-wrapper {
  display: flex;
  gap: 20px;
  padding: 40px 20px;
  justify-content: center;
  flex-wrap: wrap;
  background: #0b1d3a;
}

.bonus-card {
  background: #12365f;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  max-width: 380px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.bonus-card:hover {
  transform: translateY(-5px);
}

.bonus-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.bonus-info {
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bonus-info h3 {
  font-size: 20px;
  margin: 0;
}

.bonus-info p {
  font-size: 14px;
  opacity: 0.9;
}

.timer {
  font-size: 22px;
  font-weight: bold;
  color: #ffd700;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 6px;
  width: fit-content;
}

.bonus-btn {
  margin-top: auto;
  background: #8dd229;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.bonus-btn:hover {
  background: #77bb1c;
}

main {
  padding: 40px 20px;
  background: #0f1a2b;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

main section {
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #00b4ff;
  margin-bottom: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

ul {
  margin: 16px 0;
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

main img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
}

main img[style*="max-height"] {
  max-height: 500px;
  width: auto;
}

footer {
  background: #102b4e;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  font-family: 'Inter', sans-serif;
}

footer div {
  flex: 1 1 220px;
  min-width: 200px;
}

footer img {
  width: 140px;
  margin-bottom: 15px;
}

footer h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #8dd229;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #8dd229;
}

footer div div a img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

footer div div a img:hover {
  transform: scale(1.1);
}


@media (max-width: 768px) {

  .xbet-video-overlay p{
    font-size: 18px;
  }

    footer div {
        flex: 1 1 127px;
    }
      footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0;
  }

  footer div div a img {
    margin: 10px 8px;
  }

  .bonuses-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .bonus-card {
    width: 100%;
    max-width: 100%;
  }

  .bonus-info {
    padding: 16px;
  }
    .xbet-video-overlay h1 {
        font-size: 24px;
    }
}

@media (max-width: 525px) {
  .xbet-separator, .xbet-social img, .xbet-login{
    display: none;
  }
}