/* Complete redesign with new color scheme: Purple (#8B5CF6), Gold (#F59E0B), Dark Blue (#1E40AF) */
/* 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: #1f2937;
  background: linear-gradient(to bottom, #f9fafb 0%, #f3f4f6 100%);
}

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

/* New header with purple gradient and modern design */
.site-header {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: white;
  padding: 25px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(123, 58, 237, 0.3);
}

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

.logo {
  font-size: 26px;
  font-weight: 800;
  color: #fbbf24;
  text-shadow: 0 2px 8px rgba(251, 191, 36, 0.5);
  letter-spacing: -0.5px;
}

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

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  font-size: 15px;
}

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

/* Hero section with purple/gold theme */
.hero {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 50%, #1e40af 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 25px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 22px;
  color: #fde68a;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* New list-based casino card design with purple accents */
.featured-casinos {
  padding: 70px 20px;
  background: white;
}

.featured-casinos h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 50px;
  color: #7c3aed;
  font-weight: 800;
}

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

.casino-card {
  background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
  transition: all 0.4s ease;
  border: 3px solid #e9d5ff;
  display: flex;
  gap: 35px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.05), transparent);
  transition: left 0.6s;
}

.casino-card:hover::before {
  left: 100%;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.25);
  border-color: #7c3aed;
}

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

.casino-logo {
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e9d5ff;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

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

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

.stars {
  color: #f59e0b;
  font-size: 22px;
  text-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.rating-number {
  font-weight: 800;
  color: #7c3aed;
  font-size: 20px;
}

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

/* Bonus highlight with gold gradient */
.bonus-highlight {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 18px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 19px;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.casino-features li {
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
}

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

/* Updated button with purple gradient */
.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: white;
  padding: 18px 36px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  display: block;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 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(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: #7c3aed;
  padding: 14px 32px;
  border: 2px solid #7c3aed;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  transition: all 0.3s ease;
  display: block;
}

.btn-secondary:hover {
  background-color: #7c3aed;
  color: white;
}

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

/* Urgency badge with gold color */
.urgency-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

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

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

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

/* Trust Badges */
.trust-badges {
  background: linear-gradient(135deg, #ede9fe 0%, #f3e8ff 100%);
  padding: 45px 20px;
}

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

.badge {
  background-color: white;
  padding: 22px 45px;
  border-radius: 10px;
  font-weight: 700;
  color: #7c3aed;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
  border-top: 4px solid #7c3aed;
}

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

.why-choose h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 50px;
  color: #7c3aed;
  font-weight: 800;
}

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

.feature-card {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  padding: 35px;
  border-radius: 14px;
  transition: all 0.3s ease;
  border-left: 5px solid #7c3aed;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.2);
}

.feature-card h3 {
  color: #7c3aed;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 700;
}

.feature-card p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 15px;
}

/* Payment Methods */
.payment-methods {
  padding: 70px 20px;
  background: linear-gradient(135deg, #ede9fe 0%, #f3e8ff 100%);
}

.payment-methods h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 45px;
  color: #7c3aed;
  font-weight: 800;
}

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

.payment-icon {
  background-color: white;
  padding: 22px 35px;
  border-radius: 10px;
  font-weight: 700;
  color: #1f2937;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.12);
  min-width: 110px;
  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 with purple gradient */
.responsible-gambling {
  padding: 70px 20px;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: white;
  text-align: center;
}

.responsible-gambling h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #fbbf24;
  font-weight: 800;
}

.rg-text {
  font-size: 19px;
  margin-bottom: 30px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

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

.rg-links a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: color 0.3s ease;
}

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

.age-warning {
  font-size: 15px;
  color: #fde68a;
  font-weight: 700;
}

/* Footer */
.site-footer {
  background-color: #1f2937;
  color: white;
  padding: 50px 20px;
  text-align: center;
}

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

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

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

.license-info {
  margin: 25px 0;
  font-weight: 700;
  color: #fbbf24;
  font-size: 16px;
}

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

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

.content-section h2 {
  font-size: 34px;
  margin-bottom: 35px;
  color: #7c3aed;
  text-align: center;
  font-weight: 800;
}

.content-section h3 {
  font-size: 26px;
  margin-bottom: 18px;
  color: #7c3aed;
  font-weight: 700;
}

.content-section p,
.content-section ul {
  margin-bottom: 22px;
  line-height: 1.8;
  color: #4b5563;
}

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

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

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 35px 0;
  background-color: white;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

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

.comparison-table th {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: white;
  font-weight: 700;
}

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

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

.game-card {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #7c3aed;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.2);
}

.game-placeholder {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  height: 160px;
  border-radius: 10px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.game-card h4 {
  color: #7c3aed;
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 700;
}

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

.legal-content h1 {
  font-size: 40px;
  color: #7c3aed;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 800;
}

.legal-content h2 {
  font-size: 30px;
  color: #7c3aed;
  margin-top: 45px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 3px solid #e9d5ff;
  font-weight: 700;
}

.legal-content h3 {
  font-size: 24px;
  color: #7c3aed;
  margin-top: 35px;
  margin-bottom: 18px;
  font-weight: 700;
}

.legal-content p {
  margin-bottom: 22px;
  line-height: 1.8;
  color: #4b5563;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 22px;
  padding-left: 45px;
  line-height: 1.8;
  color: #4b5563;
}

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

.legal-content strong {
  color: #7c3aed;
  font-weight: 700;
}

.legal-content a {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 600;
}

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

.last-updated {
  text-align: center;
  color: #9ca3af;
  font-style: italic;
  margin-bottom: 35px;
}

.contact-info {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  padding: 35px;
  border-radius: 14px;
  margin: 35px 0;
  border-left: 5px solid #7c3aed;
}

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

.contact-method {
  margin: 22px 0;
  padding: 25px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
}

.contact-method h4 {
  color: #7c3aed;
  margin-bottom: 12px;
  font-weight: 700;
}

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

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

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

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

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

  .casino-card {
    flex-direction: column;
    gap: 25px;
  }

  .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: 18px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .casino-card {
    flex-wrap: wrap;
  }

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

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

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