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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

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

/* Header */
.header {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.sticky {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fb923c;
  letter-spacing: -0.5px;
}

.nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-link {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #fb923c;
}

.nav-link-articles {
  color: #fb923c;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #7c3aed 0%, #6b21a8 100%);
  padding: 4rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(251, 146, 60, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(251, 146, 60, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-features {
  list-style: none;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: #fcd34d;
}

.hero-decorations {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  opacity: 0.3;
}

.decoration-icon {
  width: 48px;
  height: 48px;
  animation: float 3s ease-in-out infinite;
}

.decoration-icon:nth-child(2) {
  animation-delay: 1s;
}

.decoration-icon:nth-child(3) {
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Trust Bar */
.trust-bar {
  background-color: #f9fafb;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.trust-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-text {
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 500;
}

.trust-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #374151;
  font-weight: 600;
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: #7c3aed;
}

/* Featured Casino */
.featured-casino {
  padding: 3rem 0;
  background-color: #ffffff;
}

.casino-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border: 2px solid #f3f4f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.casino-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(251, 146, 60, 0.3);
}

.casino-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.casino-name {
  font-size: 3rem;
  font-weight: 800;
  color: #1f2937;
  text-transform: lowercase;
}

.casino-rating-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  color: white;
}

.rating-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rating-score {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.casino-bonus {
  margin-bottom: 1.5rem;
}

.bonus-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #7c3aed;
  line-height: 1.3;
}

.casino-stars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.star {
  width: 28px;
  height: 28px;
  color: #fbbf24;
  fill: #fbbf24;
}

.casino-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.feature-badge {
  background: #3b82f6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-link {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.feature-link:hover {
  color: #6b21a8;
  text-decoration: underline;
}

.cta-button {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
  color: #1f2937;
  text-align: center;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 211, 77, 0.4);
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 211, 77, 0.5);
}

.casino-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.5;
  text-align: center;
}

/* Content Section */
.content-section {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  text-align: center;
  margin-bottom: 2rem;
}

.content-text {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.content-text p {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
}

.info-icon {
  width: 48px;
  height: 48px;
  color: #7c3aed;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.info-card p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #e5e7eb;
  padding: 3rem 0 1.5rem;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  color: #fb923c;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.9rem;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fb923c;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.1);
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.badge-icon {
  width: 20px;
  height: 20px;
  color: #fbbf24;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Added styles for bilingual footer disclaimer */
.footer-disclaimer {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 8px;
  text-align: left;
}

.footer-disclaimer p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 0.85rem;
  color: #d1d5db;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer strong {
  color: #fb923c;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .casino-name {
    font-size: 2rem;
  }

  .bonus-title {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .nav {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  .trust-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-badges {
    gap: 1rem;
  }

  .casino-card {
    padding: 1.5rem;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .casino-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .casino-rating-box {
    align-self: flex-start;
  }
}
