body {
  font-family: "Prompt", sans-serif;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #150049 #000000;
}
.t10c-header {
  background: linear-gradient(90deg, #0d0d0d, #1e1e2f);
  padding: 0vw 2vw;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.t10c-header-container {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.t10c-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255, 0, 0, 0.6));
}

.t10c-title {
  font-size: 2vw;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px #000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.t10c-hero {
  background: url("img/hero.png") center/cover no-repeat;
  padding: 4vw 2vw;
  color: #fff;
  position: relative;
}
.t10c-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.t10c-hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13vw;
  z-index: 1;
}

.t10c-hero-text {
  max-width: 55%;
}

.t10c-hero-title {
  font-size: 2.8vw;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.t10c-hero-highlight {
  color: #38b6ff;
  background: linear-gradient(90deg, #e81cff, #40c9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.t10c-hero-subtitle {
  margin-top: 1.5vw;
  font-size: 1.1vw;
  color: #ddd;
}

.t10c-hero-buttons {
  display: flex;
  gap: 1vw;
  margin-top: 2vw;
}

.t10c-hero-badge {
  background: #222;
  padding: 0.6vw 1.2vw;
  border-radius: 1vw;
  font-size: 1vw;
  display: flex;
  align-items: center;
  gap: 0.5vw;
  border: 1px solid #444;
}

.t10c-hero-update {
  margin-top: 1.5vw;
  font-size: 0.9vw;
  color: #bbb;
}

.t10c-hero-image img {
  width: 18vw;
  max-width: 300px;
}

@media (max-width: 768px) {


  .t10c-casino-info {
    flex: 1;
    display: flex;
    flex-direction: column !important;
    gap: 1vw;
    color: #fff;
    align-items: center;
    justify-content: center;
    gap: 3vw !important;
    width: 100%;
}






  .t10c-hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .t10c-hero-text {
    max-width: 100%;
  }

  .t10c-hero-title {
    font-size: 6vw;
  }

  .t10c-hero-subtitle,
  .t10c-hero-badge,
  .t10c-hero-update {
    font-size: 3.5vw;
  }

  .t10c-hero-image img {
    width: 40vw;
  }
}
@media (max-width: 600px) {
  .t10c-title {
    font-size: 5vw;
  }
}
.t10c-casinos-list {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  padding: 3vw 2vw;
  background-color: #0a0a15;
}

.t10c-casino-box {
  display: flex;
  background: linear-gradient(90deg, #151531, #0c0c1c);
  border-radius: 1vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  padding: 2vw;
  gap: 2vw;
  flex-wrap: wrap;
}

.t10c-casino-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  gap: 0.5vw;
}

.t10c-casino-brand img {
  max-width: 120px;
  height: auto;
}

.t10c-casino-rating {
  color: #fff;
  font-weight: bold;
  font-size: 1.1vw;
}

.t10c-casino-info {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 1vw;
  color: #fff;
  align-items: center;
  justify-content: center;
  gap: 8vw;
}

.t10c-casino-bonus {
  font-size: 1.4vw;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.t10c-casino-bonus strong {
    font-size: 2vw;
    color: #ffcc00;
    display: block;
    width: 12vw;
}

.t10c-casino-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 20vw;
}

.t10c-casino-info li {
  margin-bottom: 0.5vw;
  font-size: 1.05vw;
}

.t10c-casino-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5vw;
}

.t10c-play-button {
  background: linear-gradient(145deg, #ff3333, #cc0000);
  color: #fff;
  padding: 0.8vw 1.5vw;
  font-size: 1.1vw;
  border: none;
  border-radius: 0.6vw;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.t10c-play-button:hover {
  background: #e60000;
}

.t10c-payments {
  font-size: 0.9vw;
  color: #ccc;
}

@media (max-width: 768px) {
  .t10c-casino-box {
    flex-direction: column !important;
    align-items: flex-start;
  }

 .t10c-casino-brand {
        width: 100%;
        align-items: center;
        padding-top: 4vw;
    }

    .t10c-casino-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
        align-items: flex-start;
        justify-content: center;
        display: flex;
        width: 50%;
        flex-direction: column;
    }


.t10c-casino-action {
    display: flex
;
    flex-direction: column;
    align-items: center;
    gap: 2.5vw;
}


      .t10c-casino-bonus {
        font-size: 4.5vw;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

  .t10c-casino-bonus strong {
    font-size: 6vw;
    width: fit-content;
  }

  .t10c-casino-info li,
  .t10c-play-button,
  .t10c-casino-rating,
  .t10c-payments {
    font-size: 3.5vw;
  }

  .t10c-play-button {
    padding: 2vw 4vw;
  }
}
.t10c-info-section {
  background-color: #0b0b14;
  color: #ffffff;
  padding: 1vw 2vw;
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
}

.t10c-info-block {
  max-width: 900px;
  margin: 0 auto 3vw auto;
}

.t10c-info-block h2 {
  font-size: 2vw;
  margin-bottom: 1vw;
  color: #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.t10c-info-block p {
  font-size: 1.1vw;
  color: #d0d0d0;
  margin-bottom: 1.5vw;
}

.t10c-info-block ul {
  list-style: none;
  padding-left: 0;
}

.t10c-info-block li {
  margin-bottom: 1vw;
  font-size: 1.05vw;
  color: #cccccc;
  position: relative;
  padding-left: 1.5em;
}

.t10c-info-block li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff4747;
  font-size: 1vw;
}

.t10c-info-block strong {
  color: #ffffff;
}

@media (max-width: 768px) {
  .t10c-info-block h2 {
    font-size: 5vw;
  }

  .t10c-info-block p,
  .t10c-info-block li {
    font-size: 3.5vw;
  }

  .t10c-info-block li::before {
    font-size: 3vw;
  }
}
.t10c-icons-section {
  background-color: #0b0b14;
  padding: 1vw 2vw;
  text-align: center;
}

.t10c-icons-container {
  display: flex;
  justify-content: center;
  gap: 3vw;
  flex-wrap: wrap;
}

.t10c-icon-block {
  max-width: 250px;
  flex: 1 1 200px;
  color: #ffffff;
}

.t10c-icon-block img {
  max-width: 80px;
  margin-bottom: 1vw;
}

.t10c-icon-block p {
  font-size: 1.05vw;
  font-weight: 500;
  line-height: 1.4;
  color: #ddd;
}

@media (max-width: 768px) {
  .t10c-icon-block img {
    max-width: 60px;
    margin-bottom: 3vw;
  }

  .t10c-icon-block p {
    font-size: 3.5vw;
  }
}
.t10c-contact-section {
  background: #0b0b14;
  padding: 1vw 2vw;
  color: #fff;
}

.t10c-contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.t10c-contact-container h2 {
  font-size: 2.5vw;
  margin-bottom: 1vw;
  text-transform: uppercase;
  color: #fff;
}

.t10c-contact-container p {
  font-size: 1.1vw;
  color: #ccc;
  margin-bottom: 2vw;
}

.t10c-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
}

.t10c-contact-form input,
.t10c-contact-form textarea {
  padding: 1vw;
  background-color: #14141f;
  border: 1px solid #333;
  border-radius: 0.5vw;
  color: #fff;
  font-size: 1.05vw;
  outline: none;
  transition: border 0.3s ease;
}

.t10c-contact-form input:focus,
.t10c-contact-form textarea:focus {
  border-color: #ff3c3c;
  box-shadow: 0 0 5px rgba(255, 60, 60, 0.5);
}

.t10c-contact-form button {
  background: linear-gradient(135deg, #ff3c3c, #cc0000);
  color: #fff;
  padding: 1vw;
  font-size: 1.1vw;
  font-weight: bold;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background 0.3s;
}

.t10c-contact-form button:hover {
  background: linear-gradient(135deg, #e00000, #990000);
}

@media (max-width: 768px) {
  .t10c-contact-container h2 {
    font-size: 6vw;
  }

  .t10c-contact-container p,
  .t10c-contact-form input,
  .t10c-contact-form textarea,
  .t10c-contact-form button {
    font-size: 4vw;
  }

  .t10c-contact-form {
    gap: 3vw;
  }
}
.t10c-footer {
  background-color: #0b0b14;
  color: #cccccc;
  padding: 4vw 2vw;
  font-family: "Segoe UI", Tahoma, sans-serif;
  border-top: 1px solid #222;
}

/* Логотипи */
.t10c-footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2vw;
  margin-bottom: 2vw;
}

.t10c-footer-logos img {
  height: 50px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.t10c-footer-logos img:hover {
  opacity: 1;
}

/* Повідомлення 18+ */
.t10c-footer-age {
  text-align: center;
  font-size: 1.1vw;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 2vw;
}

/* Колонки */
.t10c-footer-columns {
  display: flex;
  justify-content: center;
  gap: 3vw;
  flex-wrap: wrap;
  margin-bottom: 2vw;
}

.t10c-footer-col {
  max-width: 300px;
  flex: 1 1 250px;
}

.t10c-footer-col h3 {
  color: #ffffff;
  font-size: 1.2vw;
  margin-bottom: 1vw;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.t10c-footer-col p {
  font-size: 1vw;
  line-height: 1.6;
  color: #cccccc;
}

/* Нижнє меню */
.t10c-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2vw;
  border-top: 1px solid #1a1a1a;
  padding-top: 2vw;
  font-size: 0.95vw;
}

.t10c-footer-links a {
  color: #bbbbbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.t10c-footer-links a:hover {
  color: #ffffff;
}

/* Адаптивність */
@media (max-width: 768px) {
  .t10c-footer-age {
    font-size: 4vw;
  }

  .t10c-footer-col h3 {
    font-size: 4.5vw;
  }

  .t10c-footer-col p,
  .t10c-footer-links a {
    font-size: 3.5vw;
  }

  .t10c-footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1.5vw;
  }

  .t10c-footer-logos img {
    height: 40px;
  }
}
.t10c-terms-block {
  background: linear-gradient(to right, #0f0f1f, #151526);
  color: #e0e0e0;
  padding: 4vw 3vw;
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.7;
}

.t10c-terms-block h2 {
  font-size: 2.2vw;
  margin-bottom: 1.5vw;
  color: #ffffff;
  text-transform: uppercase;
}

.t10c-terms-block h3 {
  font-size: 1.5vw;
  margin-top: 2vw;
  margin-bottom: 1vw;
  color: #ff4f4f;
}

.t10c-terms-block p {
  font-size: 1.05vw;
  margin-bottom: 1.2vw;
  color: #d0d0d0;
}
.t10c-header-container a {
    text-decoration: none;
}
@media (max-width: 768px) {
  .t10c-terms-block h2 {
    font-size: 6vw;
  }

  .t10c-terms-block h3 {
    font-size: 4.5vw;
  }

  .t10c-terms-block p {
    font-size: 3.8vw;
  }
}
