* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-pink: #f50057;
  --dark-bg: #19040e;
  --darker-bg: #110a18;
  --card-bg: #230c16;
  --text-light: #ffffff;
  --text-gray: #b8b8b8;
  --gradient-register: linear-gradient(
    90deg,
    rgb(95, 5, 255),
    rgb(2, 235, 255)
  );
}
::-webkit-scrollbar {
  width: 8px;
  background-color: var(--darker-bg);
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary-pink);
  border-radius: 10px;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-light);
  background-color: var(--dark-bg);
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(245, 0, 87, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(138, 43, 226, 0.05) 0%,
      transparent 50%
    ),
    url("img/bg_left.webp"), url("https://kentcasino392.top/img/bg_right.webp");
  background-repeat: no-repeat;
  background-position: 0 0, 0 0, left top, right top;
  background-size: auto, auto, 500px auto, 500px auto;
  background-attachment: scroll;
}
.page-wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.btn {
  display: inline-block;
  position: relative;
  padding: 0.8rem 2.2rem;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: skewX(-15deg);
}
.btn-text {
  display: inline-block;
  transform: skewX(15deg);
  font-style: italic;
}
.btn:hover {
  filter: brightness(1.2);
  transform: skewX(-15deg) translateY(-3px);
}
.btn.btn-primary {
  background: var(--gradient-register);
}
.btn.btn-pink {
  background: var(--primary-pink);
}
.btn.btn-outline {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--primary-pink);
}
.bonus-badge {
  position: absolute;
  top: -10px;
  right: -5px;
  background: #f50057;
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: bold;
  transform: skewX(15deg);
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(25, 4, 14, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 0, 87, 0.2);
  z-index: 1002;
  height: 80px;
  display: flex;
  align-items: center;
}
.header-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  gap: 2rem;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-grow: 1;
}
.logo img {
  height: 30px;
}
.search-form {
  position: relative;
  flex-grow: 1;
}
.search-form input {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.7rem 3rem 0.7rem 1rem;
  color: white;
}
.search-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid var(--primary-pink);
  color: white;
  cursor: pointer;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
main {
  margin-top: 80px;
}
.promo-section,
.tournament-banner-section,
.wins-tournament-section,
.games-section,
.info-section,
.faq-section,
.jackpot-section,
.hero,
.categories-bar,
.providers-section,
.info-text-section {
  padding: 2rem 0;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
}
.banner-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary-pink);
  color: var(--text-light);
  padding: 0.7rem 1.8rem 0.7rem 1.5rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  z-index: 5;
  font-style: italic;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0% 100%);
}
.banner-tag span {
  display: inline-block;
}
#mobile-slider-container {
  display: none;
}
.promo-grid-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.promo-card-large,
.promo-card-small {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.promo-card-large {
  background: url("img/kent_header_BG.webp") center center / cover no-repeat;
  padding: 2.5rem;
  height: 320px;
}
.promo-card-small {
  background: url("img/BannerCat_1-31.webp") center center / cover no-repeat;
  padding: 2rem;
  height: 320px;
}
.banner-content.full-width {
  width: 100%;
  text-align: center;
}
.promo-card-large .banner-content {
  width: 60%;
  text-align: left;
  z-index: 2;
}
.promo-card-large .banner-character {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
  z-index: 1;
}
.promo-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.promo-card-slider {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 180px;
}
.slider-wrapper {
  display: flex;
  height: 100%;
  user-select: none;
}
.slide {
  flex: 1 0 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  background-size: cover;
  background-position: center;
}
.slide-1 {
  background-image: url("https://kentcasino392.top/img/weekly_bonuses_header_BG.webp");
}
.slide-2 {
  background-image: url("img/shop_header_BG.webp");
}
.slide .banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.banner-main-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.25rem;
  font-style: italic;
}
.promo-card-slider .banner-character {
  position: absolute;
  right: 10px;
  bottom: 0;
  height: 90%;
  z-index: 1;
  pointer-events: none;
}
.slider-nav-container {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 3;
  display: flex;
  gap: 5px;
}
.slider-dots {
  display: none;
}
.carousel-arrow,
.btn-skew {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 0;
  cursor: pointer;
  transform: skewX(-15deg);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover,
.btn-skew:hover {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
}
.carousel-arrow i,
.btn-skew i {
  transform: skewX(15deg);
}
.categories-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.category-list {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.category-list::-webkit-scrollbar {
  display: none;
}
.category-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card-bg);
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: var(--text-light);
  transition: background 0.3s;
  white-space: nowrap;
  transform: skewX(-15deg);
}
.category-item:hover,
.category-item.active {
  background: var(--primary-pink);
}
.category-item > * {
  transform: skewX(15deg);
}
.category-item span {
  font-weight: 600;
  font-size: 0.9rem;
  font-style: italic;
}
.category-tools {
  display: flex;
  gap: 0.5rem;
}
.games-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.section-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-header-left i {
  font-size: 1.5rem;
}
.section-header-left h3 {
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}
.section-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.view-all-link {
  color: var(--primary-pink);
  text-decoration: none;
  font-weight: 600;
  font-style: italic;
}
.section-nav-arrows {
  display: flex;
  gap: 0.5rem;
}
.games-carousel,
.providers-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.games-carousel::-webkit-scrollbar,
.providers-carousel::-webkit-scrollbar {
  display: none;
}
.game-card {
  background: transparent;
  border-radius: 15px;
  overflow: hidden;
  flex: 0 0 200px;
}
.game-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}
.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.game-card:hover .game-image img {
  transform: scale(1.1);
}
.game-info {
  padding: 1rem 0;
  text-align: left;
}
.game-title {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-style: italic;
}
.game-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.game-card:hover .game-card-overlay {
  opacity: 1;
}
.jackpot-section {
  background: rgba(245, 0, 87, 0.05);
}
.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.jackpot-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  border: 2px solid rgba(245, 0, 87, 0.2);
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.jackpot-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.3s ease-in-out;
}
.jackpot-card:hover .jackpot-card-bg {
  transform: scale(1.1);
}
.jackpot-card-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5));
  z-index: 2;
}
.jackpot-card-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
}
.jackpot-card .banner-tag {
  top: 15px;
  left: -5px;
}
.jackpot-card-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
}
.jackpot-card:hover .jackpot-card-hover-overlay {
  opacity: 1;
}
.jackpot-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-pink);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #000;
}
.jackpot-name {
  font-size: 1.2rem;
  font-weight: 600;
}
.jackpot-provider {
  color: var(--text-gray);
}
.info-section .info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.info-card {
  background: var(--card-bg);
  border: 1px solid rgba(245, 0, 87, 0.1);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
}
.info-icon {
  font-size: 3rem;
  color: var(--primary-pink);
  margin-bottom: 1.5rem;
}
.info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.info-description {
  color: var(--text-gray);
  line-height: 1.6;
}
.providers-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.provider-item {
  flex: 0 0 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: var(--card-bg);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 70px;
}
.provider-item img {
  max-width: 100%;
  height: 35px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  transition: all 0.3s ease-in-out;
}
.provider-item:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(245, 0, 87, 0.1);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}
.faq-question i {
  transition: transform 0.3s ease;
}
.faq-answer {
  padding: 0 1.5rem;
  color: var(--text-gray);
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease;
  overflow: hidden;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 0 1.5rem 1.5rem;
}
.info-text-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(245, 0, 87, 0.2);
}
.info-text-section .section-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.info-text-section p,
.info-text-section li {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.info-text-section h3 {
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}
.info-text-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-pink);
}
.info-text-section .info-text-separator {
  height: 1px;
  background: rgba(245, 0, 87, 0.2);
  margin: 2rem auto;
  width: 50%;
}
.info-text-section .info-note {
  background: rgba(245, 0, 87, 0.05);
  border-left: 4px solid var(--primary-pink);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}
.info-text-section .kbd {
  background: var(--darker-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
  font-family: monospace;
  color: var(--text-light);
  font-size: 0.9rem;
}
.info-text-section .info-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
  grid-template-columns: repeat(3, 1fr);
}
.info-text-section .info-grid.half {
  grid-template-columns: repeat(2, 1fr);
}
.info-text-section .info-card {
  background: var(--card-bg);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}
.info-text-section .info-card h4 {
  margin-top: 0;
}
.info-text-section ul,
.info-text-section ol {
  padding-left: 25px;
}
.info-text-section ul li::marker {
  color: var(--primary-pink);
  font-size: 1.2em;
}
footer {
  background: var(--darker-bg);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(245, 0, 87, 0.2);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  color: var(--primary-pink);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  height: 30px;
  margin-bottom: 1rem;
}
.footer-section a,
.footer-section p {
  color: var(--text-gray);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}
.social-link {
  font-size: 1.5rem;
  color: var(--text-gray);
  transition: color 0.3s ease;
}
.social-link:hover {
  color: var(--primary-pink);
}
.footer-legal-text {
  margin: 2rem 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 0, 87, 0.2);
}
.footer-legal-text p {
  font-size: 0.75rem;
  color: #6c757d;
  line-height: 1.6;
}
.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 0, 87, 0.2);
}
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: opacity 0.3s, visibility 0.3s;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.tournament-banner-section {
  padding-top: 0;
}
.tournament-banner {
  display: flex;
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
}
.tournament-banner-image {
  flex: 0 0 55%;
}
.tournament-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tournament-banner-content {
  flex: 1;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tournament-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.countdown-timer {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.time-block {
  background: var(--primary-pink);
  padding: 0.5rem;
  text-align: center;
  min-width: 60px;
  transform: skewX(-10deg);
}
.time-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  transform: skewX(10deg);
}
.time-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  transform: skewX(10deg);
}
.tournament-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}
.btn-outline-skewed {
  display: inline-block;
  padding: 0.7rem 2rem;
  border: 2px solid white;
  text-decoration: none;
  color: white;
  font-weight: 700;
  transform: skewX(-15deg);
  align-self: flex-start;
  transition: all 0.3s ease;
}
.btn-outline-skewed:hover {
  background: white;
  color: var(--dark-bg);
}
.btn-outline-skewed span {
  display: inline-block;
  transform: skewX(15deg);
  font-style: italic;
  text-transform: uppercase;
}
.wins-tournament-section {
  padding-top: 0;
}
.wins-tournament-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: stretch;
}
.latest-wins-block {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 1.5rem;
  padding-top: 60px;
}
.wins-header {
  background: var(--primary-pink);
  color: white;
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  font-style: italic;
  position: absolute;
  top: 0;
  left: 0;
  transform: skewX(-15deg);
  transform-origin: top left;
}
.wins-header span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transform: skewX(15deg);
}
.wins-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  height: 330px;
}
.win-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: absolute;
  width: 100%;
  transition: top 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.win-item.entering {
  opacity: 0;
}
.win-item.exiting {
  opacity: 0;
}
.win-item-game-img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  flex-shrink: 0;
}
.win-item-info {
  flex-grow: 1;
  overflow: hidden;
}
.win-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.win-item-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-gray);
}
.win-item-user img {
  width: 16px;
  height: auto;
}
.win-item-amount {
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--primary-pink);
}
.win-item-arrow {
  width: 25px;
  height: 25px;
  border: 1px solid var(--primary-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-pink);
  flex-shrink: 0;
}
.tournament-block-v2 {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(
      90deg,
      rgba(25, 4, 14, 0.95) 30%,
      rgba(25, 4, 14, 0.7) 55%,
      rgba(25, 4, 14, 0.2) 100%
    ),
    url("https://kentcasino392.top/img/small-tourn_desc-9.jpg");
  background-size: cover;
  background-position: center;
}
.tournament-header-tabs {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.tournament-header-tabs .tab {
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  font-weight: 700;
  font-style: italic;
  transform: skewX(-15deg);
  transition: background-color 0.3s ease;
}
.tournament-header-tabs .tab.active {
  background: var(--primary-pink);
  color: white;
  z-index: 2;
}
.tournament-header-tabs .tab:not(.active) {
  background: #fff;
  color: var(--dark-bg);
  z-index: 1;
}
.tournament-header-tabs .tab span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: skewX(15deg);
}
.tournament-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  padding-top: 80px;
}
.tournament-main-info {
  flex-basis: 60%;
  z-index: 2;
}
.prize-pool {
  background: var(--gradient-register);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  margin: 1.5rem 0;
}
.prize-pool-title {
  font-size: 1rem;
  font-style: italic;
}
.prize-pool-amount {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}
.simple-countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  font-weight: 600;
  margin-bottom: 2rem;
}
.simple-countdown i {
  color: var(--primary-pink);
}

/* Универсальные стили для таблиц */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--card-bg);
  border: 1px solid rgba(245, 0, 87, 0.2);
  border-radius: 15px;
  overflow: hidden;
}
table th {
  background: rgba(245, 0, 87, 0.15);
  color: var(--text-light);
  padding: 1rem 0.8rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(245, 0, 87, 0.3);
  font-style: italic;
}
table td {
  padding: 0.9rem 0.8rem;
  color: var(--text-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}
table tr:last-child td {
  border-bottom: none;
}
table tr:hover {
  background: rgba(245, 0, 87, 0.05);
}
table th:first-child {
  border-top-left-radius: 15px;
}
table th:last-child {
  border-top-right-radius: 15px;
}

@media (max-width: 1200px) {
  .wins-tournament-grid {
    grid-template-columns: 1fr;
  }
  .info-section .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-text-section .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .header-left .search-form {
    display: none;
  }
  .tournament-banner {
    flex-direction: column;
  }
  .tournament-banner-content {
    align-items: center;
    text-align: center;
  }
  .btn-outline-skewed {
    align-self: center;
  }
  .info-text-section .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container,
  .header-container {
    padding: 0 1rem;
  }

  /* Адаптивные таблицы для планшетов */
  table {
    margin: 1.5rem 0;
    font-size: 0.85rem;
  }
  table th,
  table td {
    padding: 0.7rem 0.6rem;
  }
  table th {
    font-size: 0.85rem;
  }
  #desktop-sliders-container {
    display: none;
  }
  #mobile-slider-container {
    display: block;
    margin-bottom: 2rem;
  }
  .promo-grid-top {
    grid-template-columns: 1fr;
  }
  .promo-card-large {
    height: 280px;
  }
  .promo-card-small {
    display: none;
  } /* Можно скрыть малую карточку, т.к. есть мобильный слайдер */
  .promo-section,
  .games-section,
  .info-section,
  .faq-section,
  .jackpot-section,
  .providers-section,
  .info-text-section,
  .tournament-banner-section,
  .wins-tournament-section {
    padding: 1.5rem 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .promo-card-slider {
    height: 200px;
  }
  .slide {
    padding: 1rem 1.5rem;
  }
  .promo-card-slider .banner-character {
    height: 160px;
    right: 5px;
  }
  .banner-main-title {
    font-size: 1.3rem;
  }
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: background 0.3s ease;
  }
  .dot.active {
    background: white;
  }
  .section-header-right .view-all-link {
    display: none;
  }
  .section-header-left h3 {
    font-size: 1.4rem;
  }
  .info-section .info-grid,
  .info-text-section .info-grid.half {
    grid-template-columns: 1fr;
  }
  .tournament-block-v2 {
    background-position: top center;
  }
  .tournament-content {
    justify-content: center;
    text-align: center;
  }
  .tournament-main-info {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .header-left {
    flex-grow: 0;
  }
  .header-right .btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
  }

  /* Компактные таблицы для мобильных */
  table {
    margin: 1rem 0;
    font-size: 0.8rem;
  }
  table th,
  table td {
    padding: 0.6rem 0.5rem;
  }
  table th {
    font-size: 0.8rem;
  }
  .section-nav-arrows {
    display: none;
  }
  .time-block {
    min-width: 50px;
  }
  .time-value {
    font-size: 1.5rem;
  }
  .provider-item {
    flex-basis: 120px;
  }
  .provider-item img {
    height: 30px;
  }
}
