/* Template 6 - Nature/Organic */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Comfortaa:wght@300;400;500;600;700&display=swap");

:root {
  --forest-green: #2d5016;
  --sage-green: #87a96b;
  --moss-green: #5f7a3e;
  --earth-brown: #8b6f47;
  --sand: #e8d5b7;
  --sky-blue: #a8c5dd;
  --sunset-orange: #d97642;

  --bg-primary: #f5f1e8;
  --bg-secondary: #e8e0d5;
  --bg-card: #ffffff;

  --text-primary: #2d3319;
  --text-secondary: #5f6b4a;
  --text-muted: #8a9177;

  --shadow: 0 4px 20px rgba(45, 80, 22, 0.1);
}

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

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

body {
  font-family: "Quicksand", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(135, 169, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 111, 71, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--sage-green);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.site-logo a {
  font-family: "Comfortaa", cursive;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  color: var(--moss-green);
  transform: scale(1.05);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.site-nav a:hover {
  color: var(--forest-green);
  background: var(--bg-secondary);
}

/* Hero Section */
.section.head {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  border-bottom: 2px solid var(--sage-green);
}

.section.head h1 {
  font-family: "Comfortaa", cursive;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--forest-green);
  position: relative;
  z-index: 1;
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.section:nth-child(even) {
  background: var(--bg-secondary);
}

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

.section header h2 {
  font-family: "Comfortaa", cursive;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--forest-green);
}

.section header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.casino-item {
  flex: 0 0 calc(33.333% - 1.5rem);
  min-width: 320px;
  background: var(--bg-card);
  border: 2px solid var(--sage-green);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
}

.casino-item:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 40px rgba(45, 80, 22, 0.2);
  border-color: var(--moss-green);
}

.casino-header {
  padding: 2rem;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--sage-green);
}

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.15);
}

.casino-logo:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.25);
}

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

.casino-name {
  font-family: "Comfortaa", cursive;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest-green);
  margin-bottom: 1rem;
}

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

.rating .stars {
  width: 120px;
  height: 10px;
  background: var(--bg-secondary);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--sage-green);
}

.rating .stars .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sunset-orange) 0%, var(--earth-brown) 100%);
  transition: all 0.4s ease;
  border-radius: 10px;
}

.rating .text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
}

.casino-body {
  padding: 2rem;
}

.casino-bonus {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--moss-green) 100%);
  border-radius: 20px;
  color: white;
  box-shadow: 0 8px 24px rgba(95, 122, 62, 0.3);
}

.bonus-amount {
  font-family: "Comfortaa", cursive;
  font-size: 1.75rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.free-spins {
  font-size: 1.125rem;
  font-weight: 500;
}

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

.feature-tag {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--sage-green);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: var(--sage-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 169, 107, 0.3);
}

.casino-details {
  margin-bottom: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--sage-green);
  border-radius: 16px;
  overflow: hidden;
}

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

.detail-item:hover {
  background: var(--bg-card);
}

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

.detail-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.detail-value {
  color: var(--forest-green);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.casino-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--moss-green) 100%);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.3);
}

.casino-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.4);
  background: linear-gradient(135deg, var(--moss-green) 0%, var(--forest-green) 100%);
}

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

.faq-item {
  background: var(--bg-card);
  border: 2px solid var(--sage-green);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.faq-item:hover {
  box-shadow: 0 8px 32px rgba(45, 80, 22, 0.15);
}

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

.accordion-question:hover {
  color: var(--forest-green);
}

.accordion-icon {
  width: 32px;
  height: 32px;
  background: var(--sage-green);
  border-radius: 50%;
  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: white;
  transition: all 0.3s ease;
}

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

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

.faq-item.active .accordion-icon {
  transform: rotate(135deg);
  background: var(--forest-green);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--sage-green);
  margin-top: 5rem;
}

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

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

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.8;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--forest-green);
}

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

.copyright a{
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.fade-in {
  opacity: 0;
  animation: floatIn 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;
}

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

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

main {
flex: 1;
}