/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
}

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

/* 18+ Age Warning */
.age-warning {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.age-warning.hidden {
  transform: translateY(-100%);
}

.warning-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 15px;
}

.warning-icon {
  font-size: 1.2em;
}

.warning-text {
  font-weight: 600;
  font-size: 0.95em;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
  padding: 0 10px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.close-btn:hover {
  opacity: 1;
}

/* Header */
.header {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  margin-top: 50px;
}

.navbar {
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.8em;
  font-weight: 700;
  color: #ecf0f1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-menu a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #3498db;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ecf0f1;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.hero-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.badge {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  font-size: 24px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

/* Casinos Section */
.casinos-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-weight: 700;
}

.casinos-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.casino-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3498db, #2980b9);
}

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

.casino-rank {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.casino-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.casino-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.casino-logo {
  width: 60px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.casino-name {
  font-size: 1.5em;
  font-weight: 700;
  color: #2c3e50;
}

.casino-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.casino-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #7f8c8d;
  font-size: 0.95em;
}

.casino-features img {
  width: 16px;
  height: 16px;
}

.visit-btn {
  background: linear-gradient(135deg, #27ae60, #229954);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1em;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
  border: none;
  cursor: pointer;
}

.visit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
  background: linear-gradient(135deg, #229954, #1e8449);
}

/* Responsible Gambling Section */
.responsible-gambling {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  padding: 3rem 0;
  color: white;
  text-align: center;
}

.responsible-gambling h3 {
  font-size: 2em;
  margin-bottom: 1rem;
  font-weight: 700;
}

.responsible-gambling p {
  font-size: 1.1em;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.gambling-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
}

.org-logo {
  height: 60px;
  width: auto;
  background: white;
  padding: 10px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.org-logo:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #2c3e50;
  color: #bdc3c7;
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  color: #ecf0f1;
  margin-bottom: 1rem;
  font-size: 1.2em;
  font-weight: 600;
}

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

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

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #3498db;
}

.footer-orgs {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9em;
  opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .casino-header {
    flex-direction: column;
  }

  .casino-features {
    align-items: center;
  }

  .casino-logo {
    height: auto;
    width: 100px;
  }

  .age-warning {
    position: fixed;
  }

  .warning-content {
    gap: 8px;
    padding: 8px 15px;
  }

  .warning-text {
    font-size: 12px;
    text-align: center;
  }

  .header {
    margin-top: 70px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #2c3e50;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.2em;
  }

  .hero-subtitle {
    font-size: 1.1em;
  }

  .trust-badges {
    gap: 1rem;
  }

  .badge {
    width: 50px;
    height: 50px;
    font-size: 20px;
    padding: 10px;
  }

  .casino-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 1.5rem;
  }

  .casino-header {
    justify-content: center;
  }

  .gambling-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-orgs {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 1.8em;
  }

  .casinos-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2em;
  }

  .casino-card {
    padding: 1rem;
  }

  .casino-rank {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }

  .casino-name {
    font-size: 1.3em;
  }

  .visit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1em;
  }
}
