html {
  scroll-behavior: smooth;
}

:root {
  --deep-blue: #1e3a8a;
  --midnight-black: #0d0d0d;
  --crimson-red: #dc2626;
  --silver: #cbd5e1;
}

body {
  font-family: "Arial", sans-serif;
  background-color: var(--midnight-black);
  color: white;
}

.btn-primary {
  background-color: var(--crimson-red);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--deep-blue);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #1e40af;
}

.card {
  background-color: #1f2937;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid #374151;
}

.casino-card {
  background: linear-gradient(135deg, var(--deep-blue), #1e40af);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border: 2px solid var(--silver);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.casino-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 64px;
  flex-shrink: 0;
}

.casino-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.casino-description {
  margin-bottom: 16px;
  flex-grow: 1;
}

.casino-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.casino-logo img {
  max-width: 100%;
  height: auto;
  filter: brightness(1.1) contrast(1.1);
  transition: all 0.3s ease;
}

.casino-card:hover .casino-logo img {
  transform: scale(1.05);
  filter: brightness(1.2) contrast(1.2);
}

.casino-logo img[src*="super-sport-casino"] {
  max-width: 80%;
  max-height: 80%;
  transform: scale(0.8);
}

.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: white;
  color: black;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(0);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--deep-blue);
  color: white;
  padding: 20px;
  z-index: 999;
  border-top: 3px solid var(--crimson-red);
}

.certificate-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  background-color: #374151;
  border-radius: 8px;
}

.certificate-icon {
  font-size: 24px;
  color: var(--crimson-red);
  margin-right: 15px;
  width: 40px;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #374151;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background-color: #374151;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  border: none;
  width: 100%;
  text-align: left;
  color: white;
  text-decoration: none;
  display: block;
}

.faq-answer {
  padding: 15px;
  background-color: #1f2937;
  display: none;
}

.contact-form {
  background-color: #1f2937;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #374151;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #374151;
  border-radius: 6px;
  background-color: #374151;
  color: white;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  width: auto;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.game-card {
  background-color: #1f2937;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid #374151;
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--crimson-red);
}

.review-card {
  background-color: #1f2937;
  border-radius: 12px;
  padding: 25px;
  border-left: 4px solid var(--crimson-red);
}

.stars {
  color: #fbbf24;
  margin-bottom: 10px;
}

.hidden {
  display: none;
}

.hero-section {
  background: linear-gradient(135deg, var(--midnight-black), var(--deep-blue));
  padding: 80px 0;
}

.hero-image img {
  transition: all 0.3s ease;
  border: 2px solid rgba(220, 38, 38, 0.3);
}

.hero-image img:hover {
  transform: scale(1.02);
  border-color: var(--crimson-red);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.about-image img {
  transition: all 0.3s ease;
  border: 2px solid rgba(30, 58, 138, 0.3);
}

.about-image img:hover {
  transform: scale(1.02);
  border-color: var(--deep-blue);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.security-image img {
  transition: all 0.3s ease;
  border: 2px solid rgba(220, 38, 38, 0.3);
}

.security-image img:hover {
  transform: scale(1.02);
  border-color: var(--crimson-red);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.banner-placeholder {
  background-color: #374151;
  border: 2px dashed var(--silver);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  color: var(--silver);
  margin-bottom: 20px;
}

.banner-item {
  background-color: #1f2937;
  border: 2px solid #374151;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 16px;
}

.banner-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
  border-color: var(--crimson-red);
}

.banner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.banner-item:hover img {
  transform: scale(1.05);
}

.banner-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.banner-link:hover {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 768px) {
  .casino-card {
    padding: 15px;
  }

  .hero-section {
    padding: 40px 0;
  }

  .modal-content {
    padding: 20px;
    margin: 10px;
  }
}
