/* font */

/* Montserrat */

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/montserrat-v30-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-v30-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  src: url("../fonts/montserrat-v30-latin-regular.woff2") format("woff2");
}

/* Open Sans */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v43-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v43-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v43-latin-700.woff2") format("woff2");
}

@font-face {
  font-family: "NeoSansProBold";
  src: url("../fonts/NeoSansProBold.OTF");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "NeoSansProMedium";
  src: url("../fonts/NeoSansProMedium.OTF");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "NeoSansProRegular";
  src: url("../fonts/NeoSansProRegular.OTF");
  font-weight: normal;
  font-style: normal;
}



/* General Styles */
:root {
  --primary-color: #e63946; /* A vibrant red, similar to the image's orange/red */
  --secondary-color: #457b9d; /* A complementary blue */
  --accent-color: #a8dadc; /* A lighter accent for highlights */
  --dark-bg: #1d3557; /* Darker blue for background sections */
  --light-bg: #f1faee; /* Light background for content sections */
  --text-color: #333333;
  --light-text-color: #f1faee;
  --border-radius: 8px;
  --transition-speed: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: var(--dark-bg);
  margin-bottom: 15px;
}

h1 {
  font-size: 2.8em;
}
h2 {
  font-size: 2.2em;
}
h3 {
  font-size: 1.8em;
}

.btn {
  display: inline-block;
  padding: 5px 25px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: background-color var(--transition-speed),
    color var(--transition-speed), transform var(--transition-speed);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-text-color);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: #d62839; /* Slightly darker primary */
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--light-text-color);
  transform: translateY(-2px);
}

.btn-hero {
  background-color: var(--primary-color);
  color: var(--light-text-color);
  border: none;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: var(--border-radius);
}

.btn-hero:hover {
  background-color: #d62839;
  transform: translateY(-3px);
  color: var(--light-text-color);
}

.btn-play {
  background-color: var(--secondary-color);
  color: var(--light-text-color);
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
}

.btn-play:hover {
  background-color: #3d6a8a; /* Slightly darker secondary */
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  font-weight: normal;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--light-text-color);
  transform: translateY(-2px);
}

.btn-cta {
  background-color: var(--primary-color);
  color: var(--light-text-color);
  border: none;
  padding: 18px 35px;
  font-size: 1.2em;
  font-weight: 700;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta:hover {
  background-color: #d62839;
  transform: scale(1.03);
}

/* Header */

/* Header */
.main-header {
  background-color: var(--dark-bg);
  color: var(--light-text-color);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s ease;
}

.main-header.scrolled {
  padding: 10px 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-header .logo a {
  /* font-family: "Montserrat", sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  color: var(--primary-color);
  transition: color var(--transition-speed); */
}
.logo img{
  height: 4rem;
}

.main-header .logo a:hover {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  transition: transform 0.3s ease-in-out;
}

.nav-links a {
  color: var(--light-text-color);
  font-weight: 600;
  padding: 5px 0;
  position: relative;
  transition: color var(--transition-speed);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  left: 0;
  bottom: -5px;
  transition: width var(--transition-speed);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light-text-color);
  font-size: 1.8em;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--light-text-color);
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-bg);
    flex-direction: column;
    padding: 25px 20px;
    transform: translateX(-100%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links a {
    padding: 15px 20px;
    font-size: 1.1em;
    border-radius: 8px;
    margin: 5px 0;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .menu-toggle {
    display: block;
  }

  .header-buttons {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dark-bg), #2c4a6a);
  color: var(--light-text-color);
  padding: 80px 0;
  display: flex;
  align-items: center;
  min-height: 500px;
  text-align: center; /* Default for mobile */
}

.hero-section .container {
  display: flex;
  flex-direction: column; /* Stack on mobile */
  align-items: center;
  gap: 40px;
}

.hero-content {
  max-width: 600px;
  text-align: center;
}

.hero-content h1 {
  color: var(--light-text-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--accent-color);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Featured Casinos Section */

.featured-casinos-section {
  background-color: #f8f9fa;
  padding: 50px 0;
  text-align: center;
}

.casino-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.featured-casinos-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.2rem;
  color: #333;
}

/* Content Sections */
.content-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.content-section:nth-of-type(odd) {
  background-color: var(--light-bg);
}

.content-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--dark-bg);
}

.content-section h3 {
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 10px;
}

.content-section p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Learn to Play Section */
.learn-to-play-section {
  text-align: center;
}

.play-cards-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 30px;
  margin-top: 40px;
}

.play-card {
  background-color: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
}

.play-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.play-card h3 {
  color: var(--dark-bg);
  margin-bottom: 15px;
}

.play-card p {
  margin-bottom: 25px;
}

/* Call to Action Section */
.call-to-action-section {
  background: linear-gradient(45deg, var(--primary-color), #d62839);
  color: var(--light-text-color);
  padding: 80px 0;
  text-align: center;
  margin-top: 40px;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.call-to-action-section h2 {
  color: var(--light-text-color);
  margin-bottom: 20px;
  font-size: 2.5em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.call-to-action-section p {
  font-size: 1.2em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.main-footer {
  background-color: var(--dark-bg);
  color: var(--light-text-color);
  padding: 60px 0 20px;
  border-top: 5px solid var(--primary-color);
}

.footer-top,
.footer-middle,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-middle {
  justify-content: center;
  text-align: center;
}

.footer-bottom {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
  align-items: center;
  display: flex;
  justify-content: center;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-section.about {
  flex-grow: 2;
}

.footer-logo {
  margin-bottom: 15px;
}
.footer-logo img{
  height: 4rem;
}

.footer-section h3 {
  color: var(--light-text-color);
  margin-bottom: 20px;
  font-size: 1.3em;
  position: relative;
  padding-bottom: 10px;
}

.footer-section p {
  color: var(--accent-color);
  line-height: 1.7;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--accent-color);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-icons a {
  color: var(--accent-color);
  font-size: 1.8em;
  margin-right: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.responsible-gaming-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.responsible-gaming-icons a {
  border: solid 1px var(--primary-color);
  border-radius: var(--border-radius);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.responsible-gaming-icons img {
  height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.responsible-gaming-icons img:hover {
  opacity: 1;
}

.footer-bottom p {
  margin: 0;
  color: var(--accent-color);
}
.main-logo-18 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-18 {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-text-color);
  margin-top: 15px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons {
    text-align: center;
  }

  .social-icons a {
    margin: 0 10px;
  }

  .footer-bottom {
    text-align: center;
  }
  .footer-top,
  .footer-middle,
  .footer-bottom {
    align-items: center;
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .main-header .container {
    flex-wrap: nowrap;
  }

  .main-nav {
    display: block; /* Show nav on larger screens */
  }

  .menu-toggle {
    display: none; /* Hide toggle on larger screens */
  }

  .hero-section .container {
    flex-direction: row;
    text-align: left;
  }

  .hero-content {
    text-align: left;
  }

  .hero-image {
    flex-shrink: 0;
  }

  .casino-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .casino-card {
    flex-direction: row;
    text-align: left;
    /* align-items: flex-start; */
    gap: 20px;
  }

  .casino-logo {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .casino-info {
    margin-bottom: 0;
  }

  .casino-actions {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }

  .play-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .main-footer .footer-content {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .main-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    margin-top: 20px;
    /* display: none;  */
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .header-buttons {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 10px;
    flex-direction: column;
  }

  .hero-section {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 2.2em;
  }

  .hero-image img {
    max-width: 80%;
    margin: 0 auto;
  }

  .casino-card {
    padding: 20px;
  }

  .call-to-action-section h2 {
    font-size: 2em;
  }

  .call-to-action-section p {
    font-size: 1em;
  }

  .footer-section {
    text-align: center;
  }

  .gambling-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 1.8em;
  }
  h3 {
    font-size: 1.5em;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .btn-hero {
    padding: 12px 25px;
    font-size: 1em;
  }

  .casino-card {
    flex-direction: column;
    align-items: center;
  }

  .casino-actions {
    width: 100%;
    align-items: stretch; /* Make buttons full width */
  }
}

/* Contact Section */
.contact-main {
  padding: 60px 0;
}

.form-container {
  background: #fff;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.success-message {
  display: none;
  text-align: center;
  padding: 20px;
  background: var(--light-bg);
  border-left: 5px solid var(--primary-color);
  margin-top: 20px;
}

.success-message .fa-check-circle {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.info-card {
  background: var(--dark-bg);
  color: #fff;
  padding: 30px;
  border-radius: var(--border-radius);
  align-items: center;
 flex-wrap: wrap;
  gap: 20px;

}

.info-card i {
  font-size: 2em;
  color: var(--primary-color);
}

.info-card h3 {
  color: #fff;
  margin-bottom: 5px;
}

@media (max-width: 992px) {
  .contact-section .container {
    grid-template-columns: 1fr;
  }
}

/* policy pages */

.privacy-main {
  padding: 60px 0;
  background-color: #f1faee;
}

.privacy-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.privacy-content h1 {
  font-size: 2.8em;
  color: #1d3557;
  margin-bottom: 20px;
  /* text-align: center; */
}

.privacy-content h2 {
  font-size: 1.8em;
  color: #e63946;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #f1faee;
  padding-bottom: 10px;
}
.privacy-content h3 {
  font-size: 1.4rem;
}

.privacy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .privacy-content h1 {
    font-size: 2.2em;
  }

  .privacy-content h2 {
    font-size: 1.5em;
  }
}

/* Age Verification Modal */
.age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  /* display: none; */
}

.age-overlay {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  position: absolute;
  width: 100%;
  height: 100%;
}
.age-title {
  color: var(--light-text-color);
  font-size: 1.5rem;
}
.age-text {
  color: var(--light-text-color);
  font-size: 1rem;
  margin-bottom: 10px;
}

.age-modal {
  position: relative;
  background: var(--dark-bg);
  max-width: 500px;
  margin: 20vh auto;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  animation: modalEnter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalEnter {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.age-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  margin: -60px auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(225, 50, 50, 0.3);
}
.warning-icon {
  display: flex;
  justify-content: center;
  align-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--light-text-color);
}
.age-icon h2 {
  color: var(--light-text-color);
}

.btn-age {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin: 0 10px;
  transition: all 0.3s var(--transition-speed);
}

.btn-age.confirm {
  background: var(--primary-color);
  color: var(--light-text-color);
  border: none;
  cursor: pointer;
}

.btn-age.decline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  cursor: pointer;
}

/* table */

.table__items .table__item {
  display: flex;
  justify-content: space-between;
  background-color: #f8f9fa;
  border-radius: 20px;
  width: 100%;
  padding: 10px 40px 10px 10px;
  margin-bottom: 20px;
  height: 160px;
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 18%);
  font-family: "NeoSansProRegular";
  border-bottom: 3px solid var(--dark-bg);
}

.table__items .table__item:last-child {
  margin-bottom: 0;
}

.table__items .item__logo {
  display: flex;
  flex-direction: column;
}

.table__items .item__logo .logo {
  display: flex;
  margin: auto 0;
}

.table__items .item__logo h3 {
  font-size: 16px;
  color: #000;
  text-align: center;
}

.table__items .item__offers {
  display: flex;
  flex-direction: column;
  max-width: 250px;
  width: 100%;
}

.table__items .item__offer {
  display: flex;
  flex-direction: column;
}

.table__items .item__offers .reputation {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #44c940;
  font-family: "NeoSansProMedium";
  margin: 10px 0;
}

.table__items .item__offers .reputation img {
  margin: 0 0 -2px 10px;
}

.table__items .item__offers .casino__info li {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #525252;
  font-family: "NeoSansProMedium";
}

.table__items .item__offers .casino__info li > img {
  margin-right: 5px;
  margin-top: -2px;
}

.table__items .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 15px;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff;
  background-color: #cc0012;
  border-radius: 3px;
  font-family: "NeoSansProBold";
}

.table__items .item__logo .badge {
  display: none !important;
}

.table__items .badge.none {
  background-color: transparent;
}

.table__items .item__info {
  margin: auto 0;
  max-width: 225px;
  width: 100%;
}

.table__items .item__info p {
  font-size: 14px;
  color: #cc0012;
  text-align: center;
  margin-bottom: 10px;
  font-family: "NeoSansProBold";
}

.table__items .item__info h4 {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  text-align: center;
  font-family: "NeoSansProBold";
}

.table__items .item__action {
  width: 100%;
  max-width: 280px;
  margin: auto 0;
}

.table__items .item__action .casino__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 100%;
  border-radius: 30px;
  background-color: #ffde00;
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-top: 2px;
  text-decoration: none;
  font-family: "NeoSansProBold";
}

.table__items .item__action .casino__payments {
  display: block;
  position: relative;
  width: 250px;
  height: max-content;
  overflow: hidden;
  margin: 0 auto;
}

.table__items .item__action .casino__payments .items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table__items .item__action .casino__payments img {
  margin: 0 5px;
}
.items img {
  height: 35px;
}
.casino__info img {
  height: 9px;
}
.reputation img {
  height: 8px;
}

/* table responsive */

@media screen and (min-width: 1024px) and (max-width: 1140px) {
  .slick__offers .slide .casino__payments,
  .table__items .item__action .casino__payments {
    width: 200px;
  }

  .table__items .item__logo .badge {
    display: none !important;
  }

  .table__items .item__logo .logo img {
    width: 200px;
  }

  .table__items .item__action {
    max-width: 234px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .table__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .table__items .table__item {
    flex-direction: column;
    margin: 0;
    height: auto;
    padding: 10px;
    align-items: center;
  }

  .table__items .badge {
    margin: 10px auto 0;
  }

  .table__items .item__logo .badge {
    display: flex !important;
  }

  .table__items .item__logo .badge.none {
    margin: 0;
  }

  .table__items .item__offers .badge.none {
    height: 0;
    margin: 0;
  }

  .table__items .item__info {
    margin: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .table__items .table__item {
    flex-direction: column;
    align-items: center;
    height: max-content;
    padding: 20px;
    margin-bottom: 5px;
  }

  .table__casinos thead tr th:nth-child(2),
  .table__casinos thead tr th:nth-child(4) {
    display: none;
  }

  .table__casinos tbody tr td:nth-child(2),
  .table__casinos tbody tr td:nth-child(4) {
    display: none;
  }

  .table__items .badge {
    margin: 10px auto 0;
  }

  .table__items .item__offers {
    display: none;
  }

  .table__items .item__logo .badge {
    display: flex !important;
  }

  .table__items .item__info {
    margin: auto 0 15px;
  }

  .table__items .item__action .casino__payments {
    width: 230px;
  }
}

@media screen and (max-width: 320px) {
  .table__items .item__action .casino__link {
    height: 50px;
  }

  .table__casinos tbody tr td:first-child img {
    height: 45px;
  }
}
.age-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
