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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f5f5f5;
}

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

/* Header Styles */
.site-header {
  background-color: #1a2332;
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #f4c430;
}

.main-nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #f4c430;
  font-weight: 500;
}

/* Casino Cards */
.featured-casinos {
  padding: 60px 20px;
  background-color: white;
}

.featured-casinos h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #1a2332;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.casino-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #e0e0e0;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.casino-logo {
  /* Updated to display logo images instead of text */
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-logo img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.casino-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.stars {
  color: #f4c430;
  font-size: 20px;
}

.rating-number {
  font-weight: bold;
  color: #1a2332;
}

.bonus-highlight {
  background-color: #f4c430;
  color: #1a2332;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
}

.casino-features {
  list-style: none;
  margin-bottom: 25px;
}

.casino-features li {
  padding: 8px 0;
  color: #333333;
  font-size: 15px;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}

/* Enhanced button styles for Claim Bonus */
.btn-primary {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 17px;
  transition: all 0.3s ease;
  display: block;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #1a2332;
  padding: 12px 30px;
  border: 2px solid #1a2332;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: block;
}

.btn-secondary:hover {
  background-color: #1a2332;
  color: white;
}

.terms {
  text-align: center;
  font-size: 12px;
  color: #666;
}

/* Trust Badges */
.trust-badges {
  background-color: #f5f5f5;
  padding: 40px 20px;
}

.badges-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.badge {
  background-color: white;
  padding: 20px 40px;
  border-radius: 8px;
  font-weight: bold;
  color: #1a2332;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section */
.why-choose {
  padding: 60px 20px;
  background-color: white;
}

.why-choose h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #1a2332;
}

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

.feature-card {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

.feature-card h3 {
  color: #1a2332;
  margin-bottom: 15px;
  font-size: 22px;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Payment Methods */
.payment-methods {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.payment-methods h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #1a2332;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-icon {
  background-color: white;
  padding: 20px 30px;
  border-radius: 8px;
  font-weight: bold;
  color: #1a2332;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-width: 100px;
  text-align: center;
}

.payment-icon.visa {
  background-color: #1434cb;
  color: white;
}

.payment-icon.mastercard {
  background-color: #eb001b;
  color: white;
}

.payment-icon.paypal {
  background-color: #003087;
  color: white;
}

.payment-icon.skrill {
  background-color: #862165;
  color: white;
}

.payment-icon.neteller {
  background-color: #8cc63f;
  color: white;
}

/* Responsible Gambling */
.responsible-gambling {
  padding: 60px 20px;
  background-color: #1a2332;
  color: white;
  text-align: center;
}

.responsible-gambling h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #f4c430;
}

.rg-text {
  font-size: 18px;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.rg-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.rg-links a {
  color: #f4c430;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.rg-links a:hover {
  color: white;
}

.age-warning {
  font-size: 14px;
  color: #f4c430;
  font-weight: bold;
}

/* Footer */
.site-footer {
  background-color: #0f1419;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #f4c430;
}

.license-info {
  margin: 20px 0;
  font-weight: bold;
  color: #f4c430;
}

.copyright {
  color: #999;
  font-size: 14px;
}

/* New Badge */
.new-badge {
  display: inline-block;
  background-color: #e74c3c;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Added urgency badge styles */
.urgency-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.limited-time {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.limited-time::before {
  content: "⏰";
  font-size: 16px;
}

/* Content Sections */
.content-section {
  padding: 60px 20px;
  background-color: white;
}

.content-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #1a2332;
  text-align: center;
}

.content-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1a2332;
}

.content-section p,
.content-section ul {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #666;
}

.content-section ul {
  list-style-position: inside;
  padding-left: 20px;
}

.content-section ul li {
  margin-bottom: 10px;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
  background-color: #1a2332;
  color: white;
  font-weight: bold;
}

.comparison-table tr:hover {
  background-color: #f5f5f5;
}

/* Game Cards */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.game-card {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.game-placeholder {
  background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
  height: 150px;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.game-card h4 {
  color: #1a2332;
  margin-bottom: 10px;
}

/* Added legal page styles */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: white;
}

.legal-content h1 {
  font-size: 36px;
  color: #1a2332;
  margin-bottom: 20px;
  text-align: center;
}

.legal-content h2 {
  font-size: 28px;
  color: #1a2332;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f4c430;
}

.legal-content h3 {
  font-size: 22px;
  color: #1a2332;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #666;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 20px;
  padding-left: 40px;
  line-height: 1.8;
  color: #666;
}

.legal-content li {
  margin-bottom: 12px;
}

.legal-content strong {
  color: #1a2332;
  font-weight: 600;
}

.legal-content a {
  color: #2ecc71;
  text-decoration: none;
  font-weight: 500;
}

.legal-content a:hover {
  text-decoration: underline;
}

.last-updated {
  text-align: center;
  color: #999;
  font-style: italic;
  margin-bottom: 30px;
}

.contact-info {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-method {
  margin: 20px 0;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
}

.contact-method h4 {
  color: #1a2332;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .main-nav {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 10px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

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

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

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
