/* Custom Styles for Frumzi Casino */

/* Hero Content Styles */
.hero-content {
  padding: 2rem 0;
  text-align: center;
  background: linear-gradient(135deg, #0e1147 0%, #1a1f6d 100%);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1rem 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  color: #ffffff;
}

.highlight-item .emoji {
  font-size: 1.3rem;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1rem auto;
  color: #ffffff;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.frumzi1_button.mega-cta {
  background: linear-gradient(45deg, #024ffd, #0099ff);
  color: white;
  padding: 1.2rem 2.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 3rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(2,79,253,0.3);
}

.frumzi1_button.mega-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(2,79,253,0.4);
  background: linear-gradient(45deg, #0099ff, #024ffd);
}

.frumzi1_button.secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 2rem;
  border: 2px solid #024ffd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.frumzi1_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2,79,253,0.3);
}

.trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  color: #ffffff;
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-highlights {
    gap: 1rem;
  }
  
  .highlight-item {
    padding: 0.5rem 1rem;
  }
  
  .highlight-item .emoji {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }

  .frumzi1_button.mega-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
}

/* FAQ Accordion Styles */
.faq-section {
  max-width: 100%;
  margin: 30px 0;
}

.faq-accordion {
  max-width: 100%;
}

.faq-item {
  border: 1px solid #e0e6ff;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(2,79,253,0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(2,79,253,0.15);
  transform: translateY(-2px);
}

.faq-question {
  background: linear-gradient(45deg, #024ffd, #0099ff);
  color: white;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  font-family: var(--g);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
}

.faq-question:hover {
  background: linear-gradient(45deg, #0099ff, #024ffd);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #f8f9ff;
  font-family: var(--g);
}

.faq-answer.active {
  padding: 25px;
  max-height: 600px;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.faq-toggle.active {
  transform: rotate(45deg);
}

.faq-answer p {
  margin: 0 0 15px 0;
  line-height: 1.7;
  color: #333333;
  font-size: 16px;
  font-family: var(--g);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: #024ffd;
  font-weight: 600;
}

.faq-answer ul {
  margin: 10px 0;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 8px;
  color: #333333;
  line-height: 1.6;
  font-family: var(--g);
}

/* FAQ Mobile Responsive */
@media (max-width: 768px) {
  .faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  
  .faq-answer.active {
    padding: 20px;
  }
  
  .faq-toggle {
    font-size: 20px;
  }
}

/* Site Title and Description Utility */
.site-title,
.site-description {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Footer Certifications */
.footer-certifications {
  padding: 30px 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.cert-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.cert-badge {
  display: inline-block;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  opacity: 0.8;
  text-decoration: none;
  text-align: center;
  min-width: 70px;
  font-family: var(--g);
}

.cert-badge:hover {
  opacity: 1;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.badge-text {
  font-size: 11px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-subtext {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Specific badge colors */
.mga-badge {
  background: linear-gradient(135deg, #1a4c96, #2563eb);
  border-color: #3b82f6;
}

.ask-badge {
  background: linear-gradient(135deg, #059669, #10b981);
  border-color: #34d399;
}

.casino-badge {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border-color: #f87171;
}

.ecogra-badge {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  border-color: #a78bfa;
}

.therapy-badge {
  background: linear-gradient(135deg, #ea580c, #f97316);
  border-color: #fb923c;
}

.gamcare-badge {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  border-color: #22d3ee;
}

.aware-badge {
  background: linear-gradient(135deg, #991b1b, #dc2626);
  border-color: #ef4444;
}

.responsible-badge {
  background: linear-gradient(135deg, #365314, #65a30d);
  border-color: #84cc16;
}

/* Mobile Responsive for Footer Certifications */
@media (max-width: 768px) {
  .cert-badges {
    gap: 10px;
    padding: 0 10px;
  }
  
  .cert-badge {
    padding: 8px 12px;
    min-width: 60px;
  }
  
  .badge-text {
    font-size: 9px;
    margin-bottom: 1px;
  }
  
  .badge-subtext {
    font-size: 7px;
  }
  
  .footer-certifications {
    padding: 20px 0 15px 0;
  }
} 