@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;
}

/* Base Styles */
:root {
  --primary: #d9534f;
  --secondary: #ffcc00;
  --dark: #292b2c;
  --light: #f7f7f7;
  --success: #5cb85c;
  --accent: #d9534f;
  --text: #333;
  --background: #fff;
  --footer-bg: #222;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
/* Header Styles */
header {
  background-color: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.logo {
  color: var(--light);
  /* font-size: 1.8rem; */
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--secondary);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

/* Hamburger Button */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--light);
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--dark);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  nav.active {
    display: block;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(rgb(79 51 51 / 70%), rgb(49 29 29 / 70%)),
    url("../images/bg-demo5.webp") no-repeat center center / cover;
  color: var(--light);
  padding: 100px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s;
}

.btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Games Section */
.section-title {
  text-align: center;
  margin: 0px 0 30px;
  font-size: 2.2rem;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
}
.games {
  padding: 60px 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.game-card {
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.game-card:hover {
  transform: translateY(-10px);
}

.game-img {
  height: 200px;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.game-content {
  padding: 20px;
}

.game-content h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

/* Why Choose Us */
.why-us {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 30px 20px;
  background: var(--background);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

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

.feature i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

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

/* Promotions */
/* Updated Promotions Section */
.promotions {
  padding: 60px 0;
  background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.promo-header {
  text-align: center;
  margin-bottom: 40px;
}

.promo-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.guide-section {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.guide-section h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.aspects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.aspect-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.aspect-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.aspect-item h4 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.aspect-item h4 i {
  margin-right: 10px;
  color: var(--secondary);
}

.aspect-item p {
  color: #666;
  line-height: 1.6;
}

.current-promos {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.current-promos h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
}

.promo-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.promo-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.promo-card p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.promo-card .btn {
  background: white;
  color: var(--primary);
}

.promo-card .btn:hover {
  background: var(--dark);
  color: white;
}

.why-playpampa {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-playpampa h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.why-playpampa p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Expert Guides */
.guides {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.guide-card {
  background: var(--background);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.guide-img {
  height: 150px;
  background-color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.guide-content {
  padding: 20px;
  text-align: center;
}

.guide-content h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

/* About Section */
.about {
  padding: 60px 0;
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: var(--light);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
  justify-content: center;
  align-items: center;
}
.footer-disclamer {
  text-align: center;
}

.partner-logos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 40px 0;
}

.partner-logo {
  width: 160px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--secondary);
  position: relative;
  padding: 10px;
}
.partner-logo img {
  max-width: 100%;
  /* height: 2rem; */
}
.age-logo {
  height: 3rem;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright a {
  color: var(--accent);
}
a {
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.footer-links {
  display: flex;
  justify-content: end;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 10px;
  }

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

  .hero-content p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* table */

.table__items .table__item {
  display: flex;
  justify-content: space-between;
  background-color: #f8f9fa;
  border-radius: 10px;
  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";
}

.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%;
  justify-content: center;
}

.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;
  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;
}

/* policy pages */

.privacy-main {
  padding-top: 50px;
  padding-bottom: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.privacy-content h2 {
  font-size: 2.5em;
  color: var(--accent-dark);
  margin-bottom: 15px;
  padding-bottom: 10px;
  text-align: center;
}
.privacy-content h3 {
  font-size: 1.2rem;
}

.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 restriction page */


        .age-restriction {
        
            background-color: var(--dark);
            color: #f1faee;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            margin: 0;
            text-align: center;
        }

        .age-container {
            max-width: 600px;
            padding: 40px;
           
            border-radius: 8px;
            
        }

       .age-container h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5em;
            color: var(--light);
            margin-bottom: 20px;
        }

       .age-container p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .warning-box {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid #e63946;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .warning-box p {
            margin: 0;
            font-size: 1em;
            color: #f1faee;
        }


        /* Age Verification Modal */
        .age-verification {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .age-overlay {
            background: rgba(26, 32, 44, 0.95);
            backdrop-filter: blur(10px);
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .age-modal {
            position: relative;
            background: var(--secondary);
            max-width: 500px;
            width: 100%;
            border-radius: 10px;
            padding: 0;
            text-align: center;
            animation: modalEnter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border: 3px solid var(--accent);
            overflow: hidden;
            margin: auto 0;
        }

        .age-icon {
            width: 100px;
            height: 100px;
            background: var(--accent);
            border-radius: 50%;
            margin: auto 0;
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 4px solid var(--secondary);
        }

        .warning-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            color: var(--background);
            font-size: 20px;
            font-weight: 700;
        }

        .age-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .age-content {
            padding: 40px 30px 30px;
        }

        .age-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .age-text {
            color: var(--text);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .age-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .btn-age {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        

        .btn-age:hover::before {
            left: 100%;
        }

        .btn-age.confirm {
            background: var(--success);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-age.confirm:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
        }

        .btn-age.decline {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--text);
        }

        .btn-age.decline:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: rgba(255, 107, 53, 0.05);
        }

        .btn-icon {
            font-weight: 700;
            font-size: 1.1rem;
        }

        .age-footer {
            font-size: 0.85rem;
            color: var(--text-light);
            opacity: 0.8;
        }

        /* Modal Animations */
        @keyframes modalEnter {
            from {
                transform: translateY(-50px) scale(0.9);
                opacity: 0;
            }
            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        @keyframes modalExit {
            from {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
            to {
                transform: translateY(-50px) scale(0.9);
                opacity: 0;
            }
        }

        /* Responsive Design for Age Modal */
        @media (max-width: 768px) {
            .age-modal {
                max-width: 90%;
                margin: 20px;
            }

            .age-content {
                padding: 30px 20px 25px;
            }

            .age-title {
                font-size: 1.5rem;
            }

            .age-text {
                font-size: 0.95rem;
            }

            .age-icon {
                width: 80px;
                height: 80px;
               
            }

            .age-number {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .age-buttons {
                gap: 10px;
            }

            .btn-age {
                padding: 14px 20px;
                font-size: 0.95rem;
            }

            .age-warning {
                padding: 10px 12px;
                font-size: 0.85rem;
            }
        }