/* Added Poppins font family and enhanced design with decorative elements */

/* General Styles */
body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.section {
  flex: 1;
  position: relative;
}

/* Enhanced navbar with gradient and shadow */
.navbar.is-danger {
  background: linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

.navbar-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

/* Added decorative elements */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
  z-index: 0;
  pointer-events: none;
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
}

.circle-3 {
  width: 350px;
  height: 350px;
  top: 100px;
  right: -150px;
}

.circle-4 {
  width: 280px;
  height: 280px;
  bottom: 50px;
  left: -80px;
}

.circle-5 {
  width: 320px;
  height: 320px;
  top: 50px;
  right: -120px;
}

.decorative-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(196, 30, 58, 0.03) 0px,
    rgba(196, 30, 58, 0.03) 2px,
    transparent 2px,
    transparent 10px
  );
  z-index: 0;
  pointer-events: none;
}

.pattern-1 {
  top: 50%;
  left: 10%;
  transform: rotate(15deg);
}

.pattern-2 {
  top: 20%;
  right: 15%;
  transform: rotate(-20deg);
}

.decorative-dot-grid {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, rgba(196, 30, 58, 0.15) 2px, transparent 2px);
  background-size: 20px 20px;
  top: 10%;
  left: 5%;
  z-index: 0;
  pointer-events: none;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-background {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.92) 0%, rgba(160, 23, 41, 0.88) 100%);
}

.hero-title {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Enhanced CTA button with animation */
.cta-button {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
}

/* Enhanced section titles */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #c41e3a 0%, #a01729 100%);
  border-radius: 2px;
}

/* Enhanced content section */
.content-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

/* Casino Cards */
.casino-cards {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

/* Enhanced casino cards with better shadows and hover effects */
.casino-cards .card,
.casino-card {
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(196, 30, 58, 0.1);
}

.casino-cards .card:hover,
.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(196, 30, 58, 0.25);
  border-color: rgba(196, 30, 58, 0.3);
}

.casino-logo {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.rating {
  color: #ffd700;
  font-size: 1.3rem;
  margin: 0.5rem 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced bonus offer styling */
.bonus-offer {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  border-left: 5px solid #c41e3a;
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.1);
}

/* Methodology Section */
.methodology-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(196, 30, 58, 0.1);
  position: relative;
  z-index: 1;
}

/* Responsible Gaming Section */
.responsible-gaming-section {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
  padding: 2.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(196, 30, 58, 0.15);
  position: relative;
  z-index: 1;
}

.responsible-gaming-logos,
.responsible-gaming-logos-large {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.responsible-gaming-logos img,
.responsible-gaming-logos-large img {
  max-height: 50px;
  max-width: 100px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(20%);
}

.responsible-gaming-logos-large img {
  max-height: 70px;
  max-width: 120px;
}

.responsible-gaming-logos img:hover,
.responsible-gaming-logos-large img:hover {
  transform: scale(1.15);
  filter: grayscale(0%);
}

/* Enhanced FAQ section */
.faq-section {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  border-left: 5px solid #c41e3a;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.15);
  transform: translateX(5px);
}

.faq-item summary {
  cursor: pointer;
  user-select: none;
  color: #c41e3a;
  font-weight: 600;
}

.faq-item summary:hover {
  color: #a01729;
}

.faq-item p {
  margin-top: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
}

/* Enhanced contact boxes */
.contact-box,
.newsletter-box {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(196, 30, 58, 0.1);
  position: relative;
  z-index: 1;
}

.contact-box:hover,
.newsletter-box:hover {
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.15);
  transform: translateY(-3px);
}

/* Contact Page */
.contact-info {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.contact-info a {
  color: #c41e3a;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #a01729;
}

.newsletter-form {
  margin-top: 1.5rem;
}

.privacy-notice {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

/* Thank You Page */
.thank-you-box {
  padding: 3rem;
  margin-top: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

/* Footer */
.footer {
  margin-top: auto;
  padding: 2rem 1.5rem 3rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.footer-links {
  margin: 1rem 0;
}

.footer-links a {
  color: #c41e3a;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #a01729;
}

.disclaimer {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
  border-radius: 8px;
  border: 1px solid rgba(196, 30, 58, 0.15);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .casino-cards .columns {
    flex-direction: column;
  }

  .casino-logo {
    max-width: 120px;
    max-height: 60px;
  }

  .responsible-gaming-logos img,
  .responsible-gaming-logos-large img {
    max-height: 40px;
    max-width: 80px;
  }

  .navbar-menu {
    background: linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
  }

  .decorative-circle {
    width: 200px !important;
    height: 200px !important;
  }

  .decorative-pattern,
  .decorative-dot-grid {
    display: none;
  }
}

/* Enhanced button styles */
.button.is-danger {
  background: linear-gradient(135deg, #c41e3a 0%, #a01729 100%);
  border-color: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.button.is-danger:hover {
  background: linear-gradient(135deg, #a01729 0%, #8a1423 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 30, 58, 0.4);
}

.button.is-outlined.is-danger {
  color: #c41e3a;
  border-color: #c41e3a;
  border-width: 2px;
  font-weight: 600;
}

.button.is-outlined.is-danger:hover {
  background-color: #c41e3a;
  color: white;
  transform: translateY(-2px);
}

/* Utility Classes */
.has-text-danger {
  color: #c41e3a !important;
}

/* Added smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Enhanced input fields */
.input:focus,
.textarea:focus {
  border-color: #c41e3a;
  box-shadow: 0 0 0 0.125em rgba(196, 30, 58, 0.25);
}
