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

:root {
  --pastel-lavender: #e6e6fa;
  --pastel-mint: #f0fff0;
  --pastel-peach: #ffe4e1;
  --pastel-sky: #e0f6ff;
  --pastel-rose: #ffc0cb;
  --pastel-cream: #fffdd0;
  --pastel-gray: #f8f9fa;
  --pastel-dark: #495057;
  --pastel-medium: #6c757d;
  --pastel-light: #adb5bd;
  --pastel-white: #ffffff;

  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-gentle: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-floating: 0 8px 24px rgba(0, 0, 0, 0.08);

  --font-primary: "Inter", sans-serif;
  --font-display: "Playfair Display", 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.7;
  color: var(--pastel-dark);
  background: linear-gradient(135deg, var(--pastel-cream) 0%, var(--pastel-mint) 50%, var(--pastel-sky) 100%);
  min-height: 100vh;
  font-weight: 400;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(230, 230, 250, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 192, 203, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.main {
  flex: 1;
}

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

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(230, 230, 250, 0.3);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

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

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

.site-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow-gentle);
}

.site-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--pastel-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.site-nav a {
  color: var(--pastel-medium);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-lavender), var(--pastel-rose));
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: var(--pastel-dark);
}

.site-nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section.head h1 {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--pastel-dark);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  letter-spacing: -2px;
  line-height: 1.1;
}

.section.head p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--pastel-medium);
  position: relative;
  z-index: 1;
  font-weight: 400;
  line-height: 1.6;
}

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

.section:nth-child(even) {
  background: rgba(255, 255, 255, 0.3);
}

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

.section header h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--pastel-dark);
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: -1px;
  line-height: 1.2;
}

.section header p {
  font-size: 1.125rem;
  color: var(--pastel-medium);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7;
}

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

.casino-item {
  width: calc(33.333% - 2rem);
  min-width: 320px;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.casino-item:hover {
  transform: translateY(-8px);
}

.casino-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--pastel-rose);
  color: var(--pastel-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: var(--shadow-gentle);
  letter-spacing: 0.5px;
}

.casino-header {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--pastel-white);
  border-radius: 24px 24px 0 0;
  box-shadow: var(--shadow-soft);
}

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

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

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

.casino-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pastel-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

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

.rating .stars {
  width: 120px;
  height: 16px;
  background: var(--pastel-gray);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--pastel-peach), var(--pastel-rose));
  border-radius: 20px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.rating .text {
  color: var(--pastel-medium);
  font-weight: 500;
  font-size: 0.9rem;
}

.casino-body {
  padding: 2rem;
  background: var(--pastel-white);
  border-radius: 0 0 24px 24px;
  box-shadow: var(--shadow-soft);
}

.casino-bonus {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-sky) 100%);
  border-radius: 20px;
  color: var(--pastel-dark);
  box-shadow: var(--shadow-gentle);
}

.bonus-amount {
  font-size: 1.75rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

.free-spins {
  font-size: 1rem;
  color: var(--pastel-medium);
  font-weight: 500;
}

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

.feature-tag {
  background: var(--pastel-mint);
  color: var(--pastel-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(230, 230, 250, 0.3);
}

.feature-tag:hover {
  background: var(--pastel-peach);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gentle);
}

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

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(230, 230, 250, 0.3);
  transition: all 0.3s ease;
}

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

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

.detail-label {
  color: var(--pastel-medium);
  font-weight: 500;
}

.detail-value {
  color: var(--pastel-dark);
  font-weight: 600;
}

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

.casino-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-peach) 100%);
  color: var(--pastel-dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-gentle);
  letter-spacing: 0.5px;
}

.casino-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-floating);
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-rose) 100%);
}

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

.faq-item {
  background: var(--pastel-white);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.accordion-question {
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--pastel-dark);
  padding: 2rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  letter-spacing: -0.5px;
}

.accordion-question:hover {
  background: var(--pastel-gray);
}

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

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

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

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

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

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 2rem;
  color: var(--pastel-medium);
  line-height: 1.7;
  font-weight: 400;
}

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

/* Footer */
.footer {
  background: var(--pastel-white);
  color: var(--pastel-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(230, 230, 250, 0.3);
}

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

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

.footer-tagline {
  font-size: 1rem;
  color: var(--pastel-medium);
  line-height: 1.7;
  font-weight: 400;
}

.footer-links {
  margin-left: auto;
}

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

.footer-links a {
  color: var(--pastel-medium);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--pastel-dark);
  transform: translateY(-1px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(230, 230, 250, 0.3);
}

.copyright {
  font-size: 0.875rem;
  color: var(--pastel-light);
  font-weight: 400;
}

/* Text Content */
.text-content {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--pastel-white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  line-height: 1.8;
}

.text-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pastel-dark);
  margin: 2rem 0 1rem;
  letter-spacing: -0.5px;
}

.text-content p {
  margin-bottom: 1.5rem;
  color: var(--pastel-medium);
  font-weight: 400;
}

/* Animations */
@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 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;
}

/* Gentle hover animations */
.casino-logo {
  animation: gentleFloat 6s ease-in-out infinite;
}

.casino-logo:nth-child(2n) {
  animation-delay: 2s;
}

.casino-logo:nth-child(3n) {
  animation-delay: 4s;
}
