.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #2d1b2e 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(160, 21, 62, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 32, 78, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 50%
    );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.02);
  }
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: "BBH Sans Hegarty", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  background: linear-gradient(45deg, #ffffff, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero__description {
  margin-bottom: 2.5rem;
}

.hero__description p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-left: 1.5rem;
}

.hero__buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__btn {
  position: relative;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-family: "BBH Sans Hegarty", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-width: 220px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero__btn--primary {
  background: linear-gradient(135deg, #a0153e 0%, #ff204e 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(160, 21, 62, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero__btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.hero__btn--primary:hover::before {
  left: 100%;
}

.hero__btn--primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(160, 21, 62, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #b02048 0%, #ff4060 100%);
}

.hero__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.hero__btn--secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #ffd700;
}

.hero__btn:active {
  transform: translateY(-1px);
}

.hero__image {
  position: relative;
  text-align: center;
}

.hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.hero__image:hover img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 25px 50px rgba(160, 21, 62, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.2);
}

.hero__image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(
    circle,
    rgba(160, 21, 62, 0.3) 0%,
    transparent 70%
  );
  filter: blur(20px);
  z-index: 1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero__provider-info {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.provider-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.provider-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(160, 21, 62, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.provider-card:hover::before {
  left: 100%;
}

.provider-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(160, 21, 62, 0.3);
  box-shadow: 0 10px 30px rgba(160, 21, 62, 0.2),
    0 0 0 1px rgba(255, 215, 0, 0.1);
}

.provider-row {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.provider-name {
  color: #b0b0b0;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-left: 1rem;
}

.provider-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, #a0153e, #ffd700);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
}

.provider-value {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-align: right;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  position: relative;
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  background: rgba(160, 21, 62, 0.2);
  border: 1px solid rgba(160, 21, 62, 0.3);
  transition: all 0.3s ease;
}

.provider-card:hover .provider-value {
  background: rgba(160, 21, 62, 0.3);
  border-color: rgba(160, 21, 62, 0.5);
  color: #ffd700;
  transform: scale(1.05);
}

.provider-value[style*="color:"] {
  border: none !important;
  background: none !important;
}

.section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #2d1b2e 100%);
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);

  margin: 1rem 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(160, 21, 62, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 32, 78, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 50%
    );
  animation: float 6s ease-in-out infinite;
}

.section__content {
  padding: 0 2rem;
}

.section__title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  background: linear-gradient(45deg, #ffffff, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-align: center;
}

.section__subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  background: linear-gradient(85deg, #ffffff, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section__btn {
  text-align: center;
}

.section__card {
  display: flex;
  flex-direction: row;
  margin: 3rem 0;
}

.section__card-img {
  flex: 1;
}

.section__card-img img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.1);
  transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.section__card-img img:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow: 0 25px 50px rgba(160, 21, 62, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.2);
}

.section__card-text {
  flex: 1;
  padding: 1rem;
}

.section__card-text p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  background-clip: text;
  position: relative;
}

.section__table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  margin: 2rem 0;
}

.section__table thead {
  background: linear-gradient(135deg, #a0153e 0%, #ff204e 100%);
}

.section__table th {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.5rem;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.section__table td {
  padding: 1.25rem 1.5rem;
  color: #e0e0e0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.section__table tbody tr:last-child td {
  border-bottom: none;
}
.section__table td:first-child {
  color: #b0b0b0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.section__table td:last-child {
  color: #ffffff;
  font-weight: 600;
}

.section__text {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  background-clip: text;
  position: relative;
}

.section__casino {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section__casino-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.section__casino-item--highlighted {
  background: rgba(160, 21, 62, 0.15);
  border: 1px solid rgba(160, 21, 62, 0.3);
  box-shadow: 0 4px 20px rgba(160, 21, 62, 0.2);
}

.section__casino-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(160, 21, 62, 0.3);
}

.section__casino-item--highlighted:hover {
  background: rgba(160, 21, 62, 0.2);
  border-color: rgba(160, 21, 62, 0.4);
}

.casino-logo {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-right: 1.5rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.casino-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  gap: 1.5rem;
}

.casino-text {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.section__casino-item--highlighted .casino-text {
  color: #ffffff;
  font-weight: 500;
}

.casino-btn-wrapper {
  flex-shrink: 0;
}

.casino-btn {
  background: linear-gradient(135deg, #a0153e 0%, #ff204e 100%);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  color: #ffffff;
  font-family: "BBH Sans Hegarty", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  box-shadow: 0 4px 15px rgba(160, 21, 62, 0.3);
}

.casino-btn:hover {
  background: linear-gradient(135deg, #b02048 0%, #ff4060 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160, 21, 62, 0.4);
}

.casino-btn:active {
  transform: translateY(0);
}

.play .section__card-img img {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.play .section__card-img:hover img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.play .section__subtitle {
  font-size: 1.3rem;
}

.play .section__card-text p {
  font-size: 1.1rem;
}

.section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: #ffffff;
  font-size: 1.2rem;
}

.section__list li {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.section__list li:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(160, 21, 62, 0.3);
  box-shadow: 0 10px 30px rgba(160, 21, 62, 0.2),
    0 0 0 1px rgba(255, 215, 0, 0.1);
}

.faq-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(160, 21, 62, 0.3);
}

.faq-question {
  color: #ffffff;
  font-size: 1.3rem;
  letter-spacing: 1.3px;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
  position: relative;
  padding-left: 1.5rem;
}

.faq-question::before {
  content: "•";
  color: #a0153e;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2rem;
}

.faq-answer {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(160, 21, 62, 0.5);
  margin-left: 0.5rem;
}

.section__link {
  color: #a0153e;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.section__link:hover {
  color: #e8e348;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}

@keyframes cardSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 968px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .section__title {
    font-size: 2.2rem;
  }

  .section__subtitle {
    font-size: 1.5rem;
  }

  .section__card {
    flex-direction: column;
  }

  .hero__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero__description p::before {
    display: none;
  }

  .hero__description p {
    padding-left: 0;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__image img {
    transform: none;
  }

  .section__card-img img {
    transform: none;
  }

  .hero__image:hover img {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .provider-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .provider-card {
    padding: 1.25rem;
  }

  .provider-name {
    font-size: 0.85rem;
  }

  .provider-value {
    font-size: 1rem;
    padding: 0.2rem 0.6rem;
  }

  .section__table {
    border-radius: 12px;
  }

  .section__table th,
  .section__table td {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .section__table th {
    font-size: 1rem;
    padding: 1.25rem 1rem;
  }
  .section__casino {
    padding: 0 1rem;
    gap: 0.875rem;
  }

  .section__casino-item {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
  }

  .casino-logo {
    width: 100px;
    height: 70px;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .casino-content {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .casino-text {
    font-size: 0.9rem;
  }

  .section__text {
    font-size: 1rem;
  }

  .section__list {
    font-size: 1rem;
  }

  .section__card {
    margin: 1.5rem 0;
  }

  .casino-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.85rem;
    min-width: 100px;
  }
  .faq-section {
    padding: 0 1rem;
    gap: 0.875rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .faq-question {
    font-size: 1.1rem;
    padding-left: 1.25rem;
  }

  .faq-question::before {
    font-size: 1.5rem;
  }

  .faq-answer {
    padding-left: 1.25rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 550px) {
  .section__content {
    padding: 0 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }

  .hero__content {
    padding: 0 1rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__btn {
    min-width: 100%;
    padding: 0.875rem 2rem;
  }
  .hero__provider-info {
    margin-top: 2rem;
  }

  .provider-card {
    padding: 1rem;
  }

  .provider-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .provider-value {
    align-self: flex-end;
  }

  .section__table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .section__table th,
  .section__table td {
    padding: 0.875rem 0.75rem;
    font-size: 0.85rem;
  }

  .section__table th {
    font-size: 0.9rem;
  }
  .section__casino-item {
    padding: 1rem;
  }

  .casino-logo {
    width: 90px;
    height: 60px;
  }

  .casino-text {
    font-size: 0.85rem;
  }

  .casino-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
  }
  .faq-item {
    padding: 1.25rem;
  }

  .faq-question {
    font-size: 1rem;
    padding-left: 1rem;
  }

  .faq-question::before {
    font-size: 1.25rem;
  }

  .faq-answer {
    padding-left: 1rem;
    font-size: 0.9rem;
    margin-left: 0.25rem;
  }
}
