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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0a0a0a;
  background-image: url('assets/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.85);
  z-index: -1;
}

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

/* Header */
.header {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}

.logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

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

.logo-img {
  height: 100px;
  width: auto;
  max-width: 600px;
}

/* Offers Counter */
.offers-counter {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  padding: 1rem 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.counter-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.counter-icon {
  height: 20px;
  width: auto;
}

#offers-count {
  font-weight: 900;
  font-size: 1.3rem;
}

/* Navigation Menu */
.main-nav {
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-menu li {
  margin: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: #00ff88;
  border-bottom-color: #00ff88;
}

/* Hero Section */
.hero {
  padding: 3rem 0 2rem;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-text {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

/* Casinos Table Section */
.casinos-section {
  padding: 3rem 0;
  position: relative;
}

.casinos-table-wrapper {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  overflow-x: auto;
}

.casinos-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 1200px;
}

.casinos-table thead {
  background: rgba(255, 255, 255, 0.05);
}

.casinos-table th {
  padding: 1.5rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.casinos-table th.col-casino {
  width: 25%;
}

.casinos-table th.col-bonus {
  width: 25%;
}

.casinos-table th.col-slots {
  width: 12%;
  text-align: center;
}

.casinos-table th.col-rating {
  width: 15%;
  text-align: center;
}

.casinos-table th.col-action {
  width: 23%;
  text-align: center;
}

.casinos-table tbody tr {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.casinos-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.casinos-table td {
  padding: 1.5rem 1rem;
  vertical-align: middle;
}

/* Casino Cell - White Background Design */
.casinos-table td.col-casino {
  position: relative;
  padding-top: 2.2rem;
}

.casino-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.category-badge {
  position: absolute;
  top: -14px;
  left: 0;
  background: #ff0000;
  color: #ffffff;
  padding: 0.4rem 0.85rem;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.5);
  white-space: nowrap;
}

.category-no-wagering {
  background: #ff0000;
}

.category-exclusive-offer {
  background: #ff8800;
}

.category-exclusive-to-us,
.category-brand-new-offer,
.category-fast-withdrawals,
.category-new-offer {
  background: #ff3333;
}

.category-best-choice {
  background: #ff8800;
}

.category-premium-offer {
  background: #8b5cf6;
}

.casino-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  min-width: 25px;
  flex-shrink: 0;
}

.casino-logo-table {
  height: 70px;
  width: auto;
  max-width: 150px;
  min-width: 120px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.6rem;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.casino-row:hover .casino-logo-table {
  transform: scale(1.03);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.casino-name-table {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  flex: 1;
}

/* Bonus Cell */
.bonus-cell {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.bonus-main {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
}

.bonus-subtext {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

/* Slots Cell */
.slots-count {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
}

.slots-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 0.3rem;
}

/* Rating Cell */
.rating-cell {
  text-align: center;
}

.rating-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.rating-score-table {
  font-size: 2rem;
  font-weight: 900;
  color: #fbbf24;
  text-align: center;
}

/* Action Cell */
.action-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.play-btn {
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #ffffff;
  min-width: 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.play-btn-blue {
  background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
}

.play-btn-blue:hover {
  background: linear-gradient(135deg, #0055ee 0%, #0033bb 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}

.play-btn-green {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: #000000;
}

.play-btn-green:hover {
  background: linear-gradient(135deg, #00ee77 0%, #00bb59 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

.play-btn-red {
  background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
}

.play-btn-red:hover {
  background: linear-gradient(135deg, #ee2222 0%, #bb0000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 51, 51, 0.5);
}

.play-btn-orange {
  background: linear-gradient(135deg, #ff8800 0%, #cc6600 100%);
}

.play-btn-orange:hover {
  background: linear-gradient(135deg, #ee7700 0%, #bb5500 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 136, 0, 0.5);
}

.play-btn-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.play-btn-purple:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.play-btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #000000;
}

.play-btn-gold:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.play-btn-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.play-btn-green:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.visit-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.visit-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.terms-text-table {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  margin-top: 0.5rem;
  text-align: left;
  max-width: 300px;
}


.organizations-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.org-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.org-logo-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  min-width: 100px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.org-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.org-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 10px;
  margin: 0 auto 6px auto;
}

.org-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 3px;
}

.org-name.large {
  font-size: 0.9rem;
}

.org-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  line-height: 1.2;
}

.help-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  backdrop-filter: blur(10px);
}

.help-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.help-icon {
  font-size: 2rem;
}

.help-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.help-contacts {
  margin-bottom: 2rem;
}

.help-contact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info strong {
  color: #ffffff;
}

.contact-link {
  color: #00ff88;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #00cc6a;
  text-decoration: underline;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-safer-gambling {
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section-title {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-safer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  text-align: justify;
}

.footer-links {
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  margin-bottom: 2rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

.footer-link {
  color: #00ff88;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #00cc6a;
  text-decoration: underline;
}

.footer-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 200, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 200, 0, 0.3);
  flex-wrap: wrap;
  text-align: center;
}

.warning-triangle {
  font-size: 1.5rem;
}

.footer-warning-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.age-verification-link {
  color: #00ff88;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.age-verification-link:hover {
  color: #00cc6a;
  text-decoration: underline;
}

/* Help Page Styles */
.help-page-section {
  padding: 4rem 0;
}

.page-title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.help-intro {
  margin-bottom: 3rem;
  text-align: center;
}

.help-intro-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

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

.help-contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.help-contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.help-contact-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon-large {
  font-size: 2.5rem;
}

.help-contact-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.help-contact-body {
  color: rgba(255, 255, 255, 0.9);
}

.help-contact-phone {
  font-size: 1.3rem;
  color: #00ff88;
  margin-bottom: 0.5rem;
}

.help-contact-hours {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.help-contact-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.help-contact-link {
  display: inline-block;
  background: #00ff88;
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.help-contact-link:hover {
  background: #00cc6a;
  transform: translateY(-2px);
}

.help-info-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.help-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.help-signs-list,
.help-tools-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.help-signs-list li,
.help-tools-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.help-signs-list li::before,
.help-tools-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00ff88;
  font-size: 1.5rem;
  line-height: 1;
}

.help-info-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.help-urgent {
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.help-urgent-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.help-urgent-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.help-urgent-contacts {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.help-urgent-contacts p {
  margin: 0.5rem 0;
}

/* FAQ Page Styles */
.faq-page-section {
  padding: 4rem 0;
}

.faq-intro {
  margin-bottom: 3rem;
  text-align: center;
}

.faq-intro-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-page {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item-page:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question-page {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.faq-answer-page {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.faq-answer-page p {
  margin-bottom: 1rem;
}

.faq-answer-page ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.faq-answer-page li {
  margin-bottom: 0.5rem;
}

.faq-contact {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
}

.faq-contact-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.faq-contact-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Safe Gambling Page Styles */
.safe-gambling-page-section {
  padding: 4rem 0;
}

.safe-gambling-intro {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.intro-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.content-section {
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-page {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.warning-box-content {
  background: rgba(255, 200, 0, 0.1);
  border: 2px solid rgba(255, 200, 0, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.warning-box-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.warning-icon-box {
  font-size: 2rem;
}

.warning-box-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.warning-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.warning-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 200, 0, 0.2);
}

.warning-list li:last-child {
  border-bottom: none;
}

.warning-list li::before {
  content: "⚠️";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.info-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.info-card-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.questions-list {
  margin: 2rem 0;
}

.question-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 1rem;
  border-left: 3px solid #00ff88;
}

.question-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.question-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

.alert-box {
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.alert-text {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

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

.resource-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-3px);
}

.resource-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 0.75rem;
}

.resource-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.resource-link {
  display: inline-block;
  background: #00ff88;
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background: #00cc6a;
  transform: translateY(-2px);
}

/* Site Menu Section */
.site-menu-section {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-menu-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.site-menu-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 2.5rem;
}

.site-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.site-menu-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.site-menu-category:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.menu-category-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-links-list li {
  margin-bottom: 0.75rem;
}

.menu-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.2rem;
}

.menu-link::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #00ff88;
  transition: transform 0.3s ease;
}

.menu-link:hover {
  color: #00ff88;
  transform: translateX(5px);
}

.menu-link:hover::before {
  transform: translateX(3px);
}

.menu-link.external::after {
  content: "↗";
  margin-left: 0.3rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .casinos-table {
    min-width: 1000px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 60px;
    max-width: 360px;
  }

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

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    gap: 1rem;
    padding: 0 1rem;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .casinos-table-wrapper {
    padding: 1rem;
  }

  .casinos-table {
    min-width: 800px;
  }

  .casinos-table th,
  .casinos-table td {
    padding: 1rem 0.5rem;
    font-size: 0.85rem;
  }

  .play-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .organizations-logos {
    flex-direction: column;
    gap: 1rem;
  }

  .help-contacts {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 2rem;
  }

  .help-contact-title,
  .faq-question-page {
    font-size: 1.3rem;
  }

  .footer-warning {
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-menu-title {
    font-size: 1.5rem;
  }

  .site-menu-subtitle {
    font-size: 0.9rem;
  }

  .section-title-page {
    font-size: 1.5rem;
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .question-item {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Age Verification Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: #1a1a1a;
  border: 2px solid #00ff88;
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-body {
  text-align: center;
}

.age-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.modal-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.modal-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-btn-primary {
  background: #00ff88;
  color: #000000;
}

.modal-btn-primary:hover {
  background: #00cc6a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.modal-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  z-index: 9999;
}

.cookie-modal {
  max-width: 600px;
}

.cookie-options {
  margin: 1.5rem 0;
  text-align: left;
}

.cookie-option {
  display: block;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
}

.cookie-option input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-label {
  display: block;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.cookie-desc {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-policy-link {
  display: block;
  margin-top: 1rem;
  color: #00ff88;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.cookie-policy-link:hover {
  color: #00cc6a;
  text-decoration: underline;
}

/* Affiliate Disclosure */
.affiliate-disclosure {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 200, 0, 0.1);
  border: 1px solid rgba(255, 200, 0, 0.3);
  border-radius: 12px;
}

.disclosure-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disclosure-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .modal-content {
    padding: 1.5rem;
    max-width: 100%;
  }

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

  .age-icon {
    font-size: 3rem;
  }

  .modal-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}
