@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-weight: normal;
  font-style: normal;
}

:root {
  --primary-color: #1a1a2e;
  --secondary-color: #e94560;
  --accent-color: #0f3460;
  --text-color-light: #f5f5f5;
  --text-color-dark: #333;
  --background-dark: #16213e;
  --card-background: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
  --gold: #d4af37;
  --dark-gold: #b8860b;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
a {
  text-decoration: none;
}
/* Utility Classes */
.rounded-xl {
  border-radius: 1rem;
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.text-center {
  text-align: center;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
}
.font-bold {
  font-weight: 700;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.flex-col {
  flex-direction: column;
}
.p-8 {
  padding: 2rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.mt-12 {
  margin-top: 3rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-8 {
  gap: 2rem;
}
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.text-lg {
  font-size: 1.125rem;
}


@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px){
    .grid-cols-3{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
/* Header */
header {
  background-color: var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--gold);
}

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

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  z-index: 1001;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--text-color-light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
  border-radius: 4px;
}

nav a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.auth-buttons {
  display: flex;
  gap: 0.75rem;
}

.auth-buttons a {
  background-color: var(--gold);
  color: var(--primary-color);
  border-radius: 9999px;
  padding: 0.6rem 1.25rem;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--gold);
  white-space: nowrap;
}

.auth-buttons a:hover {
  background-color: transparent;
  color: var(--gold);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--gold);
  margin: 2px 0;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--primary-color);
  z-index: 1000;
  padding: 5rem 1.5rem 2rem;
  transition: right 0.4s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  color: var(--text-color-light);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: var(--secondary-color);
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.mobile-nav .close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.mobile-auth-buttons a {
  background-color: var(--gold);
  border-radius: 9999px;
  padding: 0.8rem 1.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  border: none;
  margin-bottom: 0;
}

.mobile-auth-buttons a:hover {
  background-color: var(--dark-gold);
  color: var(--primary-color);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0c0c1d 100%);
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 2rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

.hero-text {
  padding: 1rem;
}

@media (min-width: 768px) {
  .hero-text {
    padding: 1.5rem;
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.8rem;
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-color-light);
  opacity: 0.9;
  line-height: 1.6;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-button {
  background: linear-gradient(145deg, var(--secondary-color), #c62b48);
  color: var(--text-color-light);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(233, 69, 96, 0.4);
  border: none;
  cursor: pointer;
  text-align: center;
  flex: 1;
  min-width: 180px;
}

@media (min-width: 768px) {
  .cta-button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    flex: none;
  }
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(233, 69, 96, 0.6);
}

.cta-secondary {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cta-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  width: 100%;
  background: linear-gradient(
    145deg,
    rgba(26, 26, 46, 0.8),
    rgba(15, 52, 96, 0.8)
  );
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
  background-image: radial-gradient(
      circle at 20% 30%,
      var(--gold) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 70%,
      var(--secondary-color) 0%,
      transparent 20%
    );
}

/* Sections */
.section {
  padding: 3rem 1rem;
  background-color: var(--background-dark);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .section {
    padding: 4rem 1rem;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

/* Featured Casinos */
.casino-card {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .casino-card {
    flex-direction: row;
    text-align: left;
  }
}

.casino-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.casino-info {
  flex: 1;
}

/* Aspects Section */
.aspects-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.aspects-list li {
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s;
  border-radius: 8px;
}

.aspects-list li:hover {
  transform: scale(1.02);
  border-color: var(--secondary-color);
}

.aspects-list h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.aspect-number {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* Learn to Play */
.learn-card {
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.learn-card-icon {
  font-size: 3rem;
  color: var(--secondary-color);
}

.learn-card h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
}


/* Promo Banner */
#promo-banner {
  background-color: var(--secondary-color);
  padding: 2.5rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  #promo-banner {
    padding: 3rem 1rem;
  }
}

#promo-banner h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  #promo-banner h2 {
    font-size: 2.5rem;
  }
}

/* Footer */
footer {
  background-color: var(--primary-color);
  padding: 3rem 1rem;
  color: var(--text-color-light);
  border-top: 5px solid var(--secondary-color);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-grid-section h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

.footer-grid-section li {
  margin-bottom: 0.5rem;
}

.footer-grid-section a {
  color: var(--text-color-light);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-logos {
    grid-template-columns: repeat(6, 1fr);
  }
}

.footer-logos img {
  /* width: 100%; */
  height: auto;
  /* max-width: 100px; */
  /* opacity: 0.7; */
  transition: opacity 0.3s;
  height: 2rem;
  display: flex;
}
.footer-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logos img:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  opacity: 0.7;
}
.footer-bottom img {
  height: 3rem;
  margin-bottom: 1.3rem; /* Added margin to separate from text */
}
.footer-bottom a {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .desktop-nav,
  .desktop-auth {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

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

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

  .hero-title,
  .hero-subtitle {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .mobile-nav,
  .overlay {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .logo {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
    padding: 0.8rem 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

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

  #promo-banner h2 {
    font-size: 1.8rem;
  }

  .casino-card {
    text-align: center;
  }

  .aspects-list li {
    padding: 1rem;
  }
  .footer-grid-section {
      text-align:center !important;
  }
}

@media (max-width: 480px) {

  .section {
    padding: 2rem 1rem;
  }

  .casino-logo {
    width: 80px;
    height: 80px;
  }

  .footer-grid-section h5 {
    font-size: 1.1rem;
  }
}

/* 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: 30px;
  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;
  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: 15px;
  }

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

/* privacy policy */

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

/* contact us */

.contact-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.contact-header h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 10px;
}

.contact-header p {
  color: #555;
  font-size: 1rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  align-items: center;
}
.contact-info img {
  /* height: 15rem; */
  width: 80%;
  border-radius: 20px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: #333;
}

.contact-info p {
  margin: 8px 0;
  color: #555;
}

.contact-form {
  padding: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.2);
}

.contact-form button {
  background: #007bff;
  color: #fff;
  padding: 14px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
}

.success-message {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .footer-logos {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  .footer-logos a {
    justify-content: center;
  }
}


/* internal css */

/* Midnight Hero Section */
.midnight-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* background: url("casino-bg.jpg") center/cover no-repeat; */
  padding: 2rem;
  color: #fff;
}

.midnight-overlay {
  position: absolute;
  inset: 0;
  background: rgb(21 22 31 / 60%);
  z-index: 1;
}

.midnight-container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  padding: 1.5rem;
  border: 1px solid var(--dark-gold);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 40px 0;
}

.midnight-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  color: #f5d67b;
}

@media (min-width: 768px) {
  .midnight-title {
    font-size: 3.4rem;
  }
}

.midnight-subtitle {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #eaeaea;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .midnight-subtitle {
    font-size: 1.25rem;
  }
}

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

.midnight-btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Primary Button */
.primary-btn {
  background: linear-gradient(135deg, #e94560, #c62b48);
  color: #fff;
}

.primary-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #c62b48, #a91f35);
}

/* Secondary Button */
.secondary-btn {
  background: transparent;
  border: 2px solid #f5d67b;
  color: #f5d67b;
}

.secondary-btn:hover {
  background: rgba(245, 214, 123, 0.1);
}


/* 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(--accent-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-gold);
  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: -80px auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(225, 50, 50, 0.3);
}
.age-icon img{
    height: 4rem;
}
/* .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;
}

/* age restriction internal  */


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


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

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

        .btn-container {
            margin-top: 30px;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            margin: 0 10px;
        }

        .btn-confirm {
            background-color: var(--secondary-color);
            color: #f1faee;
            border: 2px solid var(--secondary-color);
        }

        .btn-confirm:hover {
            background-color: var(--dark-gold);
            transform: translateY(-2px);
        }

      

        @media (max-width: 480px) {

            .btn {
                display: block;
                margin: 10px 0;
            }
        }
