/* Template 4 - Vibrant Gradient Modern Theme */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

:root {
  --vibrant-purple: #8b5cf6;
  --vibrant-pink: #ec4899;
  --vibrant-orange: #f97316;
  --vibrant-cyan: #06b6d4;
  --vibrant-green: #10b981;
  --vibrant-dark: #0f172a;
  --vibrant-gray: #64748b;
  --vibrant-light: #f1f5f9;
  --vibrant-white: #ffffff;

  --gradient-primary: linear-gradient(135deg, var(--vibrant-purple), var(--vibrant-pink));
  --gradient-secondary: linear-gradient(135deg, var(--vibrant-orange), var(--vibrant-pink));
  --gradient-accent: linear-gradient(135deg, var(--vibrant-cyan), var(--vibrant-green));

  --shadow-vibrant: 0 8px 32px rgba(139, 92, 246, 0.2);
  --shadow-strong: 0 20px 60px rgba(139, 92, 246, 0.3);

  --font-primary: "Poppins", sans-serif;
  --font-accent: "Space Grotesk", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--vibrant-dark);
  background: var(--vibrant-white);
  min-height: 100vh;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header with vibrant gradients */
.site-header {
  background: var(--gradient-primary);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-vibrant);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  border: 3px solid var(--vibrant-white);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.site-name {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--vibrant-white);
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

.site-nav a {
  color: var(--vibrant-white);
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 1.8rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.site-nav a:hover {
  background: var(--vibrant-white);
  color: var(--vibrant-purple);
  border-color: var(--vibrant-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.section.head {
  padding: 12rem 0;
  text-align: center;
  background: var(--gradient-primary);
  color: var(--vibrant-white);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.section.head h1 {
  font-family: var(--font-accent);
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section.head p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Section Styling */
.section {
  padding: 8rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--vibrant-light);
}

.section header {
  text-align: center;
  margin-bottom: 5rem;
}

.section header h2 {
  font-family: var(--font-accent);
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  position: relative;
}

.section header h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: var(--gradient-accent);
  border-radius: 3px;
}

.section header p {
  font-size: 1.3rem;
  color: var(--vibrant-gray);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

/* Casino List */
.casino_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.casino-item {
  width: calc(33.333% - 1.7rem);
  min-width: 320px;
  background: var(--vibrant-white);
  border-radius: 20px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
}

.casino-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
}

.casino-item:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: var(--shadow-strong);
}

.casino-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-secondary);
  color: var(--vibrant-white);
  padding: 0.7rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 800;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

.casino-header {
  padding: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--vibrant-light), var(--vibrant-white));
}

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 5px;
  border: 3px solid transparent;
  background: var(--gradient-accent);
  background-clip: padding-box;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.casino-logo::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-primary);
  border-radius: 8px;
  z-index: -1;
}

.casino-logo:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--vibrant-white);
  border-radius: 2px;
}

.casino-name {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.rating .stars {
  width: 140px;
  height: 28px;
  background: var(--vibrant-light);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--vibrant-light);
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--gradient-accent);
  transition: all 0.5s ease;
  border-radius: 18px;
}

.rating .text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-family: var(--font-accent);
  font-size: 1.1rem;
}

.casino-body {
  padding: 2.5rem;
}

.casino-bonus {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--gradient-primary);
  color: var(--vibrant-white);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.casino-bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.bonus-amount {
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-accent);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.free-spins {
  font-size: 1.2rem;
  font-weight: 600;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.feature-tag {
  background: var(--gradient-accent);
  color: var(--vibrant-white);
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

.feature-tag:hover {
  background: var(--gradient-secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.casino-details {
  margin-bottom: 2.5rem;
  background: var(--vibrant-light);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(139, 92, 246, 0.05);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--vibrant-gray);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.detail-value {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-family: var(--font-accent);
}

.casino-action {
  text-align: center;
}

.casino-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--vibrant-white);
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-vibrant);
  position: relative;
  overflow: hidden;
}

.casino-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  transition: left 0.4s ease;
}

.casino-button:hover::before {
  left: 0;
}

.casino-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.casino-button span {
  position: relative;
  z-index: 2;
}

/* FAQ Section */
.faq_list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--vibrant-white);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.faq-item:hover {
  box-shadow: var(--shadow-vibrant);
  transform: translateY(-3px);
}

.accordion-question {
  background: none;
  border: none;
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 2rem 2.5rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-question:hover {
  background: var(--vibrant-light);
}

.accordion-icon {
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--vibrant-white);
  transition: all 0.4s ease;
}

.accordion-icon::before {
  width: 14px;
  height: 2px;
}

.accordion-icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.active .accordion-icon {
  transform: rotate(45deg);
  background: var(--gradient-accent);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2.5rem;
  color: var(--vibrant-gray);
  line-height: 1.8;
  font-weight: 500;
}

.faq-item.active .accordion-answer {
  max-height: 400px;
  padding: 0 2.5rem 2rem;
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: var(--vibrant-white);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--vibrant-white);
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.footer-links a:hover {
  background: var(--vibrant-white);
  color: var(--vibrant-purple);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.copyright {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-accent);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes vibrantSlide {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: vibrantSlide 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

/* Text Content */
.text-content {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--vibrant-white);
  padding: 4rem;
  border-radius: 20px;
  line-height: 1.8;
  box-shadow: var(--shadow-vibrant);
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.text-content h3 {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 2.5rem 0 1.5rem;
}

.text-content p {
  margin-bottom: 1.8rem;
  color: var(--vibrant-gray);
  font-weight: 500;
}

.text-content ul,
.text-content ol {
  margin: 2rem 0;
  padding-left: 2rem;
}

.text-content li {
  margin-bottom: 0.8rem;
  color: var(--vibrant-gray);
  font-weight: 500;
}
