/* Template 6 - Warm Earth Tones Theme */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap");

:root {
  --earth-primary: #8b4513;
  --earth-secondary: #d2691e;
  --earth-accent: #ff8c00;
  --earth-warm: #daa520;
  --earth-cream: #f5f5dc;
  --earth-brown: #654321;
  --earth-dark: #3e2723;
  --earth-light: #efebe9;
  --earth-white: #faf8f5;
  --earth-gray: #8d6e63;

  --warm-shadow: 0 4px 20px rgba(139, 69, 19, 0.2);
  --warm-shadow-lg: 0 8px 30px rgba(139, 69, 19, 0.3);
  --warm-glow: 0 0 20px rgba(255, 140, 0, 0.4);

  --font-primary: "Open Sans", sans-serif;
  --font-accent: "Merriweather", 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(--earth-dark);
  background: linear-gradient(135deg, var(--earth-cream) 0%, var(--earth-light) 100%);
  min-height: 100vh;
  font-weight: 400;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
  z-index: -1;
  
}

@keyframes warmFloat {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.6;
  }
}

.main {
  flex: 1;
}

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

/* Header */
.site-header {
  background: var(--earth-white);
  border-bottom: 3px solid var(--earth-primary);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--warm-shadow);
}

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

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

.site-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--earth-secondary);
  box-shadow: var(--warm-shadow);
}

.site-name {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 900;
  color: var(--earth-primary);
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
}

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

.site-nav a {
  color: var(--earth-brown);
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0;
  transition: all 0.3s ease;
  background: var(--earth-cream);
  border-right: 2px solid var(--earth-primary);
  position: relative;
  overflow: hidden;
}

.site-nav li:last-child a {
  border-right: none;
  border-radius: 0 25px 25px 0;
}

.site-nav li:first-child a {
  border-radius: 25px 0 0 25px;
}



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

.site-nav a:hover {
  background: var(--earth-secondary);
  color: var(--earth-white);
  transform: translateY(-2px);
  box-shadow: var(--warm-shadow);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--earth-primary) 0%, var(--earth-secondary) 100%);
  color: var(--earth-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 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="60" cy="60" r="2.5" fill="%23ffffff" opacity="0.1"/></svg>');
  animation: warmSparkle 20s linear infinite;
}

@keyframes warmSparkle {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(50px, 50px) rotate(360deg);
  }
}

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

.section.head p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

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

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

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

.section header h2 {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 700;
  color: var(--earth-primary);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.2);
  position: relative;
}

.section header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--earth-secondary), var(--earth-accent));
  border-radius: 2px;
  box-shadow: var(--warm-glow);
}

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

/* 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: var(--earth-white);
  border: 3px solid var(--earth-secondary);
  border-radius: 25px;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: var(--warm-shadow);
  position: relative;
}

.casino-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(139, 69, 19, 0.05), rgba(255, 140, 0, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.casino-item:hover::before {
  opacity: 1;
}

.casino-item:hover {
  transform: translateY(-8px) rotate(1deg);
  border-color: var(--earth-accent);
  box-shadow: var(--warm-shadow-lg), var(--warm-glow);
}

.casino-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--earth-accent), var(--earth-warm));
  color: var(--earth-white);
  padding: 0.7rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
  border-radius: 20px;
  box-shadow: var(--warm-shadow);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: warmPulse 3s infinite;
}

@keyframes warmPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: var(--warm-glow);
  }
}

.casino-header {
  padding: 2.5rem;
  text-align: center;
  background: var(--earth-cream);
  border-bottom: 2px solid var(--earth-secondary);
  position: relative;
  z-index: 1;
}

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

.casino-logo:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: var(--warm-shadow-lg);
  border-color: var(--earth-accent);
}

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

.casino-name {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--earth-primary);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(139, 69, 19, 0.3);
}

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

.rating .stars {
  width: 130px;
  height: 24px;
  background: var(--earth-light);
  border: 2px solid var(--earth-secondary);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--earth-accent), var(--earth-warm));
  transition: all 0.4s ease;
  border-radius: 10px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rating .text {
  color: var(--earth-brown);
  font-weight: 700;
  font-family: var(--font-accent);
  font-size: 0.9rem;
}

.casino-body {
  padding: 2.5rem;
  background: var(--earth-white);
  position: relative;
  z-index: 1;
}

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

.casino-bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: warmShine 4s linear infinite;
}

@keyframes warmShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.bonus-amount {
  font-size: 2rem;
  font-weight: 900;
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-accent);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

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

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

.feature-tag {
  background: var(--earth-cream);
  color: var(--earth-brown);
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--earth-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-tag:hover {
  background: var(--earth-secondary);
  color: var(--earth-white);
  transform: translateY(-2px);
  box-shadow: var(--warm-shadow);
}

.casino-details {
  margin-bottom: 2rem;
  background: var(--earth-cream);
  border: 2px solid var(--earth-secondary);
  border-radius: 15px;
  overflow: hidden;
}

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

.detail-item:hover {
  background: rgba(255, 140, 0, 0.1);
}

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

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

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

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

.casino-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--earth-primary), var(--earth-secondary));
  color: var(--earth-white);
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--warm-shadow);
  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.3), transparent);
  transition: left 0.6s;
}

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

.casino-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--warm-shadow-lg), var(--warm-glow);
  background: linear-gradient(135deg, var(--earth-accent), var(--earth-warm));
}

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

.faq-item {
  background: var(--earth-white);
  border: 2px solid var(--earth-secondary);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: var(--warm-shadow);
}

.faq-item:hover {
  box-shadow: var(--warm-shadow-lg);
  border-color: var(--earth-accent);
}

.accordion-question {
  background: none;
  border: none;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--earth-primary);
  padding: 1.8rem 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(--earth-cream);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--earth-secondary), var(--earth-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--warm-shadow);
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--earth-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: linear-gradient(135deg, var(--earth-accent), var(--earth-warm));
  box-shadow: var(--warm-glow);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2.5rem;
  color: var(--earth-gray);
  line-height: 1.7;
}

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

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

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 140, 0, 0.1), rgba(218, 165, 32, 0.1));
  animation: warmFooter 15s ease-in-out infinite;
}

@keyframes warmFooter {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

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

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

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

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

.footer-links a {
  color: var(--earth-white);
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 1.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  border-radius: 0;
}

.footer-links li:last-child a {
  border-right: none;
  border-radius: 0 20px 20px 0;
}

.footer-links li:first-child a {
  border-radius: 20px 0 0 20px;
}

.footer-links a:hover {
  background: var(--earth-secondary);
  transform: translateY(-2px);
  box-shadow: var(--warm-shadow);
}

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

.copyright {
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-accent);
  opacity: 0.8;
}

/* Text Content */
.text-content {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--earth-white);
  padding: 3.5rem;
  border: 3px solid var(--earth-secondary);
  border-radius: 25px;
  line-height: 1.8;
  box-shadow: var(--warm-shadow);
  position: relative;
}

.text-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(139, 69, 19, 0.02), rgba(255, 140, 0, 0.02));
  border-radius: 22px;
}

.text-content h3 {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--earth-primary);
  margin: 2.5rem 0 1.5rem;
  text-shadow: 1px 1px 3px rgba(139, 69, 19, 0.2);
  position: relative;
  z-index: 1;
}

.text-content p {
  margin-bottom: 1.5rem;
  color: var(--earth-gray);
  position: relative;
  z-index: 1;
}

.text-content ul,
.text-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  position: relative;
  z-index: 1;
}

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

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

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

main {
  flex: 1;
}
