/* Added Poppins font and enhanced styling with decorative elements */

:root {
  --primary-blue: #0066cc;
  --light-blue: #4d94ff;
  --dark-blue: #003d7a;
  --accent-purple: #7c3aed;
  --accent-orange: #f97316;
  --accent-green: #10b981;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --gradient-start: #667eea;
  --gradient-end: #764ba2;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Logo Styling */
.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: -0.5px;
}

/* Hero Section with Decorative Elements */
.hero-banner {
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-banner .hero-body {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 61, 122, 0.85) 0%, rgba(0, 102, 204, 0.75) 100%);
}

.hero-title {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-subtitle {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  font-weight: 300;
}

/* Decorative Circle Elements */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 10%;
  background: rgba(124, 58, 237, 0.15);
}

/* Decorative Pattern */
.decorative-pattern {
  position: absolute;
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 15%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  z-index: 0;
}

/* Section Decorations */
.section-with-decoration {
  position: relative;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.decorative-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, var(--primary-blue) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.1;
}

.dots-left {
  top: 20%;
  left: 5%;
}

.dots-right {
  bottom: 20%;
  right: 5%;
}

/* Decorative Wave */
.decorative-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  opacity: 0.05;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

/* Decorative Lines Background */
.decorative-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 102, 204, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(0, 102, 204, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

/* Decorative Squares Pattern */
.decorative-squares {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-image: linear-gradient(45deg, var(--accent-purple) 25%, transparent 25%),
    linear-gradient(-45deg, var(--accent-purple) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--accent-purple) 75%),
    linear-gradient(-45deg, transparent 75%, var(--accent-purple) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
  opacity: 0.03;
  z-index: 0;
}

.section-header-decorated {
  position: relative;
  overflow: hidden;
}

/* Button Styling */
.button.is-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.button.is-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Casino Cards with Accent Colors */
.casino-card {
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid #e8e8e8;
}

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.casino-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  z-index: 1;
}

.accent-red {
  background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}

.accent-blue {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
}

.accent-purple {
  background: linear-gradient(180deg, #a855f7 0%, #7c3aed 100%);
}

.accent-green {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.accent-orange {
  background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
}

.casino-logo {
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.bonus-offer {
  color: var(--primary-blue);
  font-size: 1.1rem;
  font-weight: 600;
}

.rating {
  color: #fbbf24;
  font-size: 1.3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Section Methodology with Gradient */
.section-methodology {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.decorative-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  z-index: 0;
}

.section-methodology .container {
  position: relative;
  z-index: 1;
}

/* Responsible Gaming Section */
.section-responsible {
  position: relative;
  background: linear-gradient(to right, #ffffff 0%, #f0f9ff 100%);
}

.decorative-border-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-purple) 50%, transparent 100%);
}

/* Contact Boxes */
.contact-box,
.newsletter-box {
  border-radius: 12px;
  border: 2px solid #e8e8e8;
  transition: all 0.3s ease;
}

.contact-box:hover,
.newsletter-box:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.1);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 1.5rem;
  border-top: 3px solid var(--primary-blue);
}

.footer-links a {
  color: var(--primary-blue);
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--dark-blue);
  text-decoration: underline;
}

.disclaimer {
  background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
}

.responsible-gaming-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.footer-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.responsible-gaming-logos-large {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo-large {
  height: 60px;
  width: auto;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.footer-logo-large:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* FAQ Styling */
.faq-container {
  max-width: 800px;
}

.faq-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.faq-item[open] {
  border-color: var(--primary-blue);
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-blue);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-answer {
  margin-top: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
}

/* Contact Info */
.contact-info a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--dark-blue);
  text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .casino-logo {
    max-width: 100px;
  }

  .footer-logo {
    height: 30px;
  }

  .footer-logo-large {
    height: 45px;
  }

  .decorative-circle,
  .decorative-pattern,
  .decorative-dots {
    display: none;
  }
}
