/* Template 6 - Elegant Purple Corporate Theme */
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  --purple-primary: #6b46c1;
  --purple-secondary: #8b5cf6;
  --purple-accent: #a78bfa;
  --purple-light: #c4b5fd;
  --purple-pale: #f3f4f6;
  --purple-white: #ffffff;
  --purple-gray: #f9fafb;
  --purple-dark: #374151;
  --purple-gold: #f59e0b;
  --purple-success: #10b981;

  --shadow-purple: 0 10px 30px rgba(107, 70, 193, 0.15);
  --shadow-light: 0 4px 15px rgba(107, 70, 193, 0.08);
  --shadow-strong: 0 15px 40px rgba(107, 70, 193, 0.2);

  --font-primary: "Nunito", sans-serif;
  --font-secondary: "Playfair Display", serif;
}

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

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

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

main {
  flex: 1;
}

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

/* Anchor Menu */
.anchor-menu {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  background: var(--purple-white);
  border-radius: 25px;
  padding: 1rem 0.5rem;
  box-shadow: var(--shadow-purple);
  border: 2px solid var(--purple-light);
}

.anchor-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.anchor-menu a {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple-light);
  transition: all 0.3s ease;
  position: relative;
}

.anchor-menu a:hover,
.anchor-menu a.active {
  background: var(--purple-primary);
  transform: scale(1.3);
}

.anchor-menu a::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--purple-primary);
  color: var(--purple-white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.anchor-menu a:hover::after {
  opacity: 1;
}

/* Header */
.site-header {
  background: var(--purple-white);
  box-shadow: var(--shadow-light);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.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: 12px;
  border: 3px solid var(--purple-primary);
}

.site-name {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--purple-primary);
  text-decoration: none;
}

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

.site-nav a {
  color: var(--purple-dark);
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}



.site-nav a:hover::before {
  left: 0;
}

.site-nav a:hover {
  color: #D6ADFF;
  transform: translateY(-2px);
}

/* Hero Section */
.section.head {
  padding: 10rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-secondary) 50%, var(--purple-accent) 100%);
  color: var(--purple-white);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="purple-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="200" height="200" fill="url(%23purple-pattern)"/></svg>')
    repeat;
  animation: purpleFloat 30s linear infinite;
}

@keyframes purpleFloat {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200px 200px;
  }
}

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

.section.head p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0.95;
}

/* Section Styling */
.section {
  padding: 6rem 0;
}

.section:nth-child(even) {
  background: var(--purple-white);
}

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

.section header h2 {
  font-family: var(--font-secondary);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--purple-primary);
  margin-bottom: 1rem;
  position: relative;
}

.section header h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-primary), var(--purple-accent));
  border-radius: 2px;
}

.section header p {
  font-size: 1.2rem;
  color: var(--purple-dark);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

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

.casino-item {
  width: calc(33.333% - 1.5rem);
  min-width: 320px;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
  position: relative;
}

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

.casino-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--purple-gold);
  color: var(--purple-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.casino-header {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--purple-white);
  position: relative;
}

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
}

.casino-logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-purple);
}

.casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.casino-name {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple-primary);
  margin-bottom: 1rem;
}

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

.rating .stars {
  width: 120px;
  height: 24px;
  background: var(--purple-light);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--purple-primary), var(--purple-secondary));
  border-radius: 12px;
  transition: all 0.3s ease;
}

.rating .text {
  color: var(--purple-primary);
  font-weight: 700;
  font-family: var(--font-secondary);
}

.casino-body {
  padding: 2rem;
  background: var(--purple-white);
}

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

.casino-bonus::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-secondary);
  position: relative;
  z-index: 2;
}

.free-spins {
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

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

.feature-tag {
  background: var(--purple-light);
  color: var(--purple-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: var(--purple-primary);
  color: var(--purple-white);
  transform: translateY(-2px);
}

.casino-details {
  margin-bottom: 2rem;
  background: var(--purple-gray);
  border-radius: 15px;
  overflow: hidden;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--purple-light);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: var(--purple-white);
}

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

.detail-label {
  color: var(--purple-dark);
  font-weight: 600;
}

.detail-value {
  color: var(--purple-primary);
  font-weight: 700;
  font-family: var(--font-secondary);
}

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

.casino-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
  color: var(--purple-white);
  padding: 1.2rem 2.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.casino-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.casino-button:hover::before {
  left: 100%;
}

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

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

.faq-item {
  background: var(--purple-white);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-purple);
}

.accordion-question {
  background: none;
  border: none;
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-primary);
  padding: 1.5rem 2rem;
  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(--purple-gray);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--purple-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

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

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 2rem;
  color: var(--purple-dark);
  line-height: 1.6;
}

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

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

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="footer-pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="200" height="200" fill="url(%23footer-pattern)"/></svg>')
    repeat;
  opacity: 0.5;
}

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

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

.footer-tagline {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.9;
}

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

.footer-links a {
  color: var(--purple-white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
  background: var(--purple-white);
  color: var(--purple-primary);
  transform: translateY(-2px);
}

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

.copyright {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

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

.fade-in {
  opacity: 0;
  animation: fadeInPurple 0.6s 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(--purple-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  line-height: 1.7;
}

.text-content h3 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--purple-primary);
  margin: 2rem 0 1rem;
}

.text-content p {
  margin-bottom: 1.5rem;
  color: var(--purple-dark);
}

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

.text-content li {
  margin-bottom: 0.5rem;
  color: var(--purple-dark);
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

