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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #e1e1e1;
  background-color: #0a0a0a;
  font-size: 16px;
}

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

/* Header */
.header {
  background: #0a0a0a;
  border-bottom: 1px solid #1a1a1a;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 100px;
  display: block;
  margin: 0 auto;
  width: auto;
  object-fit: contain;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #a0a0a0;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  color: #c0c0c0;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 40px 0;
  background: #111111;
}

.features-content {
  text-align: center;
}

.features-content h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 600;
}

.features-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
}

.features-list li {
  font-size: 18px;
  color: #00ff88;
  font-weight: 500;
}

.warning {
  font-size: 14px;
  color: #ffaa00;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Casino List Section */
.casino-list {
  padding: 60px 0;
  background: #0a0a0a;
}

.casino-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.casino-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: #3a3a3a;
}

.casino-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #2a2a2a;
}

.casino-logo img {
  height: 40px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}

.casino-rating {
  text-align: right;
}

.stars {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 4px;
}

.evaluations {
  font-size: 12px;
  color: #a0a0a0;
  font-weight: 500;
}

.casino-details {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.bonus-section {
  text-align: left;
}

.bonus-label {
  font-size: 12px;
  color: #a0a0a0;
  margin-bottom: 8px;
  font-weight: 500;
}

.bonus-amount {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.amount {
  font-size: 20px;
  font-weight: 700;
  color: #00ff88;
}

.score-section {
  text-align: center;
}

.score-label {
  font-size: 12px;
  color: #a0a0a0;
  margin-bottom: 8px;
  font-weight: 500;
}

.score {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(45deg, #00ff88, #00ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(45deg, #00ff88, #00ccff);
  color: #0a0a0a;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #3a3a3a;
}

.btn-secondary:hover {
  background: #3a3a3a;
  border-color: #4a4a4a;
}

/* Casino Card Specific Styles */
.casino-card.codere {
  background: linear-gradient(135deg, #1a1a1a 0%, #1a2a1a 100%);
}

.casino-card.betsson {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 100%);
}

/* Section Titles */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

/* Review Factors Section */
.review-factors {
  padding: 80px 0;
  background: #111111;
}

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

.factor-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.factor-card:hover {
  transform: translateY(-2px);
  border-color: #3a3a3a;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.factor-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

.factor-card p {
  color: #c0c0c0;
  line-height: 1.6;
}

/* Tips Section */
.tips {
  padding: 80px 0;
  background: #0a0a0a;
}

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

.tip-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.tip-card:hover {
  transform: translateY(-2px);
  border-color: #3a3a3a;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.tip-icon {
  font-size: 24px;
  color: #00ff88;
  flex-shrink: 0;
}

.tip-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
}

.tip-card p {
  color: #c0c0c0;
  line-height: 1.6;
}

/* Conclusion Section */
.conclusion {
  padding: 80px 0;
  background: #111111;
  text-align: center;
}

.conclusion-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #c0c0c0;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1a1a1a;
}

.footer-links a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.legal-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1a1a1a;
  flex-wrap: wrap;
}

.legal-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.legal-icons a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.legal-icons img {
  height: 40px;
  width: auto;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.legal-icons a:hover img {
  filter: brightness(1);
}

.responsible-gaming {
  text-align: center;
}

.responsible-gaming p {
  margin-bottom: 16px;
  color: #c0c0c0;
}

.warning-footer {
  color: #ffaa00;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

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

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

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

  .features-list {
    flex-direction: column;
    gap: 16px;
  }

  .casino-details {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .actions {
    flex-direction: row;
    justify-content: center;
  }

  .section-title {
    font-size: 28px;
  }

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

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

  .tip-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .legal-icons {
    gap: 16px;
  }

  .legal-icons img {
    height: 32px;
  }
}

/* Desktop specific styles for horizontal casino cards */
@media (min-width: 769px) {
  .casino-details {
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* Large screens */
@media (min-width: 1024px) {
  .casino-grid {
    grid-template-columns: 1fr;
    max-width: 1000px;
    margin: 0 auto;
  }

  .casino-card {
    padding: 0;
  }

  .casino-details {
    padding: 32px;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 48px;
  }

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

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.factor-card,
.tip-card,
.casino-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
  outline: 2px solid #00ff88;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .casino-card {
    border-color: #fff;
  }

  .factor-card,
  .tip-card {
    border-color: #fff;
  }
}
