/* Complete redesign with fresh color scheme: teal (#0891B2), dark slate (#1E293B), orange (#F97316) */
/* 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: #334155;
  background-color: #f8fafc;
}

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

/* Updated header with new teal/slate color scheme */
/* Header Styles */
.site-header {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #0891b2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.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: #0891b2;
  border-bottom-color: #0891b2;
}

/* Updated hero section with teal gradient */
/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 20px;
  color: #fef3c7;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Redesigned casino cards as list layout instead of grid */
/* Casino Cards - List Layout */
.featured-casinos {
  padding: 60px 20px;
  background-color: white;
}

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

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Updated casino cards with new border and hover colors */
.casino-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #e2e8f0;
  display: flex;
  gap: 30px;
  align-items: center;
  position: relative;
}

.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(8, 145, 178, 0.15);
  border-color: #0891b2;
}

.casino-left {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.casino-logo {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f1f5f9;
}

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

.casino-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

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

.rating-number {
  font-weight: bold;
  color: #1e293b;
  font-size: 18px;
}

.casino-middle {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Updated bonus highlight with teal gradient */
.bonus-highlight {
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.casino-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.casino-features li {
  color: #334155;
  font-size: 15px;
}

.casino-right {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

/* Updated button styles with teal and orange colors */
.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 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(249, 115, 22, 0.4);
  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(249, 115, 22, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: #0891b2;
  padding: 12px 30px;
  border: 2px solid #0891b2;
  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: #0891b2;
  color: white;
}

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

/* Updated urgency badges with orange gradient */
.urgency-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

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

.limited-time {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1e293b;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

/* Trust Badges */
.trust-badges {
  background-color: #f8fafc;
  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: #1e293b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #0891b2;
}

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

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

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

.feature-card {
  background-color: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #0891b2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(8, 145, 178, 0.1);
}

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

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

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

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

.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: #1e293b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  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;
}

/* Updated responsible gambling section with new colors */
/* Responsible Gambling */
.responsible-gambling {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  text-align: center;
}

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

.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: #0891b2;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.rg-links a:hover {
  color: #06b6d4;
}

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

/* Footer */
.site-footer {
  background-color: #0f172a;
  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: #0891b2;
}

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

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

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

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

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

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

.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 8px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.game-card {
  background-color: #f8fafc;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #0891b2;
}

.game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(8, 145, 178, 0.1);
}

.game-placeholder {
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 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: #1e293b;
  margin-bottom: 10px;
}

/* Legal Page Styles */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: white;
}

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

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

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

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

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

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

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

.legal-content a {
  color: #0891b2;
  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: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
  border-left: 4px solid #0891b2;
}

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

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

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

/* Responsive design for list layout */
/* 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-card {
    flex-direction: column;
    gap: 20px;
  }

  .casino-left,
  .casino-right {
    flex: 1;
    width: 100%;
  }

  .casino-features {
    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-card {
    flex-wrap: wrap;
  }

  .casino-left {
    flex: 0 0 150px;
  }

  .casino-right {
    flex: 0 0 180px;
  }

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