/* Dark Theme Styles */
:root {
  --primary-red: #dc2626;
  --secondary-gray: #1f2937;
  --accent-yellow: #fbbf24;
  --bg-dark: #111827;
  --bg-card: #1f2937;
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --border-color: #374151;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  background-color: var(--bg-dark);
  color: var(--text-primary);
}

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

/* Container centering */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Casino Cards - Horizontal Layout for Desktop */
.casino-card {
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border: 1px solid #374151;
  border-radius: 12px;
  overflow: hidden;
}

.casino-card:hover {
  border-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
}

/* Desktop horizontal layout */
@media (min-width: 768px) {
  .casino-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 180px;
  }

  .casino-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .bonus-info {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .bonus-info > div {
    width: 100%;
    max-width: 280px;
  }
}

/* Mobile vertical layout */
@media (max-width: 767px) {
  .casino-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Star ratings */
.star-rating {
  color: #fbbf24;
  font-size: 1.2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-red);
  color: white;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

/* Feature lists */
.feature-list {
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header styles */
header {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-bottom: 1px solid #374151;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer styles */
footer {
  background: linear-gradient(135deg, #111827 0%, #0f172a 100%);
  border-top: 1px solid #374151;
}

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

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

  .casino-card-content {
    padding: 1rem;
  }
}

/* Modal styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  border: 1px solid var(--border-color);
}

/* Animation classes */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Casino logo styling */
.casino-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  background-color: white;
  padding: 4px;
}

/* Bonus card styling */
.bonus-card {
  background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: white;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.bonus-details {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

/* Certification logos */
.cert-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 1rem;
  align-items: center;
}

.cert-logos img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: brightness(0.8);
}

.cert-logos img:hover {
  opacity: 1;
  filter: brightness(1);
}

/* Typography improvements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Link styles */
a {
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Form styles */
input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--bg-card);
  color: var(--text-primary);
  font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Cookie banner */
.cookie-banner {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-top: 1px solid #374151;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

/* Age gate modal */
.age-gate {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

/* Utility classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}

/* Smooth transitions */
* {
  transition: color 0.3s ease, background-color 0.3s ease,
    border-color 0.3s ease;
}
