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

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

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

:root {
  --primary-color: #74acdf; /* Light Blue */
  --secondary-color: #ffd700; /* Gold */
  --accent-color: #fdb813; /* Sun Yellow */
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --white-color: #ffffff;
  --text-color: #34495e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

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

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.logo i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s;
}

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

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

.mobile-menu-btn {
  display: none;
  color: var(--dark-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #a1c4fd 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  color: var(--white-color);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  text-align: left;
  animation: slideInFromLeft 1s ease-out forwards;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero .highlight {
  color: var(--accent-color);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-graphics {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 300px;
  animation: fadeIn 1.5s ease-out forwards;
}

.card {
  width: 150px;
  height: 220px;
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: absolute;
  transition: transform 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  color: var(--primary-color);
}

.card-1 {
  transform: rotate(-15deg) translate(-30%, -10%);
  z-index: 1;
}

.card-2 {
  transform: rotate(0deg) scale(1.1);
  z-index: 2;
}

.card-3 {
  transform: rotate(15deg) translate(30%, -10%);
  z-index: 1;
}

.hero-graphics:hover .card-1 {
  transform: rotate(-20deg) translate(-40%, -5%) scale(1.05);
}

.hero-graphics:hover .card-2 {
  transform: rotate(0deg) scale(1.15);
}

.hero-graphics:hover .card-3 {
  transform: rotate(20deg) translate(40%, -5%) scale(1.05);
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(
    45deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: var(--dark-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.btn-secondary:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

/* Top Casinos Section */
.top-casinos {
  padding: 6rem 2rem;
  background: var(--light-color);
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 3rem;
  font-weight: 700;
}

.casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.casino-card {
  background: var(--white-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  overflow: hidden;
}

.casino-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.casino-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--light-color);
}

.casino-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-color);
}

.casino-rating {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.casino-rating i {
  color: var(--secondary-color);
}

.casino-body {
  padding: 1.5rem;
}

.casino-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
}

.feature i {
  color: var(--primary-color);
}

.casino-bonus {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.bonus-amount {
  font-size: 2rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.casino-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Why Choose Us Section */
.why-choose {
  padding: 6rem 2rem;
  background: var(--dark-color);
  color: var(--white-color);
}

.why-choose .section-title {
  color: var(--white-color);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.why-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Review Process Section */
.review-process {
  padding: 6rem 1rem;
  background: var(--white-color);
}

.process-scroller {
  display: flex;
  gap: 2rem;
  padding: 2rem 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}

.process-scroller::-webkit-scrollbar {
  height: 12px;
}

.process-scroller::-webkit-scrollbar-track {
  background: var(--light-color);
  border-radius: 10px;
}

.process-scroller::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
  border: 3px solid var(--light-color);
}

.process-step-card {
  flex: 0 0 400px;
  background: var(--white-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.process-step-card h3 {
  color: var(--dark-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Payment Methods Section */
.payment-methods {
  padding: 6rem 2rem;
  background: var(--light-color);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.payment-card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.payment-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Responsible Gaming Section */
.responsible-gaming {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 4rem 2rem;
  text-align: center;
}

.responsible-gaming h2 {
  color: var(--white-color);
  margin-bottom: 1.5rem;
}

.responsible-gaming p {
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.responsible-gaming .disclaimer {
  font-weight: bold;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 1rem;
  border-radius: 10px;
  display: inline-block;
}
.juego-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.juego-logos a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.juego-logos img {
  height: 2rem;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section a {
  color: var(--light-color);
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid #4a627a;
  padding-top: 2rem;
  text-align: center;
  color: #95a5a6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}
.footer-bottom a {
  color: var(--accent-color);
}
.footer-bottom img {
  height: 3rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-graphics {
    margin-top: 3rem;
  }

  .casinos-grid,
  .why-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .process-scroller {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    display: grid;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    gap: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    text-align: center;
  }

  .nav-menu a {
    padding: 1rem;
    display: block;
    width: 100%;
  }

  .nav-menu a:hover::after {
    width: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  .hero p {
    text-align: center;
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2rem;
    text-align: center;
  }
  .footer-bottom {
    justify-content: center;
  }
  .footer-bottom img {
    margin-top: 1rem;
  }
  .footer-content{
      text-align: center;
  }
}

/* Animations */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.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(--primary);
}

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

/* policy pages */

.privacy-main {
  background-color: var(--border-color);
  padding: 3rem 1.5rem;
  max-width: 1200px;
  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.2em;
  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.8rem;
  }
}

/* contact us */

.contact-section {
  padding: 6rem 2rem;
  background: var(--light-color);
}
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--white-color);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-info h2,
.contact-form-container h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 2rem;
}
.contact-info p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}
.contact-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-img img {
  width: 100%;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}
.success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1rem;
}
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

/* age modal */

#age-restriction-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  max-width: 600px;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.popup-content h1 {
  font-size: 2rem;
  color: #c0392b;
  margin-bottom: 1rem;
}

.popup-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.popup-content .buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.btn-confirm {
  background-color: #27ae60;
  color: #fff;
}
.btn-confirm:hover {
  background-color: #229954;
}
.btn-exit {
  background-color: #c0392b;
  color: #fff;
}
.btn-exit:hover {
  background-color: #a93226;
}

@media (max-width: 768px) {
  .popup-content {
    padding: 20px;
  }
  .popup-content h1 {
    font-size: 1.5rem;
  }
  .popup-content p {
    font-size: 1rem;
  }
  .btn-confirm {
    font-size: 1rem;
  }
  .btn-exit {
    font-size: 1rem;
  }
}
