/* Template 10 - Forest Green Theme */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Source+Sans+Pro:wght@300;400;600;700&display=swap");

:root {
  --forest-dark: #1a3d2e;
  --forest-green: #2d5a3d;
  --forest-light: #4a7c59;
  --forest-sage: #6b8e5a;
  --forest-mint: #8fbc8f;
  --forest-cream: #f5f5dc;
  --forest-beige: #e8dcc0;
  --forest-brown: #8b4513;
  --forest-gold: #daa520;
  --forest-white: #ffffff;

  --shadow-forest: 0 8px 32px rgba(26, 61, 46, 0.3);
  --shadow-deep: 0 12px 40px rgba(26, 61, 46, 0.4);
  --shadow-light: 0 4px 16px rgba(74, 124, 89, 0.2);

  --font-primary: "Merriweather", serif;
  --font-secondary: "Source Sans Pro", sans-serif;
}

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

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

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--forest-dark);
  background: linear-gradient(135deg, var(--forest-cream) 0%, var(--forest-beige) 100%);
  background-image: radial-gradient(circle at 25% 25%, rgba(74, 124, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(107, 142, 90, 0.1) 0%, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  font-weight: 400;
}

.main {
  flex: 1;
}

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

/* Header */
.site-header {
  background: linear-gradient(135deg, var(--forest-dark), var(--forest-green));
  border-bottom: 4px solid var(--forest-gold);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-deep);
}

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

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

.site-logo img {
  width: 55px;
  height: 55px;
  border: 3px solid var(--forest-gold);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.site-name {
  font-family: var(--font-primary);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--forest-gold);
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

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

.site-nav a {
  color: var(--forest-cream);
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 1.8rem;
  border-right: 2px solid var(--forest-sage);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, transparent, transparent);
  position: relative;
}

.site-nav li:last-child a {
  border-right: none;
}



.site-nav a:hover::before {
  opacity: 1;
}

.site-nav a:hover {
  color: var(--forest-gold);
  transform: translateY(-2px);
}

/* Hero Section */
.section.head {
  padding: 11rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-green) 50%, var(--forest-light) 100%);
  color: var(--forest-cream);
  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="rgba(218,165,32,0.3)"/><circle cx="80" cy="40" r="1.5" fill="rgba(218,165,32,0.2)"/><circle cx="60" cy="80" r="1" fill="rgba(218,165,32,0.4)"/><circle cx="30" cy="70" r="1.2" fill="rgba(218,165,32,0.3)"/></svg>');
  background-size: 200px 200px;
  animation: float 8s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.section.head h1 {
  font-family: var(--font-primary);
  font-size: 4.8rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--forest-gold);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.section.head p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

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

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

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

.section header h2 {
  font-family: var(--font-primary);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  position: relative;
}

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

.section header p {
  font-size: 1.2rem;
  color: var(--forest-green);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.8;
}

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

.casino-item {
  width: calc(33.333% - 1.9rem);
  min-width: 350px;
  background: var(--forest-white);
  border: 2px solid var(--forest-sage);
  border-radius: 15px;
  box-shadow: var(--shadow-forest);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.casino-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--forest-sage), var(--forest-gold), var(--forest-mint));
  background-size: 300% 100%;
  animation: forestShimmer 4s ease-in-out infinite;
}

@keyframes forestShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.casino-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-deep);
  border-color: var(--forest-gold);
}

.casino-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--forest-brown), var(--forest-gold));
  color: var(--forest-white);
  padding: 0.7rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.casino-header {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--forest-cream), var(--forest-white));
  border-radius: 15px 15px 0 0;
  border-bottom: 2px solid var(--forest-sage);
}

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

.casino-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.3), transparent);
  transition: left 0.6s ease;
}

.casino-logo:hover::after {
  left: 100%;
}

.casino-logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-forest);
  border-color: var(--forest-gold);
}

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

.casino-name {
  font-family: var(--font-primary);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

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

.rating .stars {
  width: 135px;
  height: 24px;
  background: var(--forest-beige);
  border: 2px solid var(--forest-sage);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--forest-sage), var(--forest-gold));
  transition: all 0.5s ease;
  border-radius: 10px;
}

.rating .text {
  color: var(--forest-dark);
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: 1.1rem;
}

.casino-body {
  padding: 3rem 2rem;
  background: var(--forest-white);
  border-radius: 0 0 15px 15px;
}

.casino-bonus {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--forest-sage), var(--forest-mint));
  color: var(--forest-white);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-forest);
}

.casino-bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255, 255, 255, 0.1) 20px);
}

.bonus-amount {
  font-size: 2.1rem;
  font-weight: 900;
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.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(--forest-cream);
  color: var(--forest-dark);
  padding: 0.7rem 1.2rem;
  border: 2px solid var(--forest-sage);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.feature-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--forest-sage), var(--forest-mint));
  transition: left 0.3s ease;
  z-index: -1;
}

.feature-tag:hover::before {
  left: 0;
}

.feature-tag:hover {
  color: var(--forest-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.casino-details {
  margin-bottom: 2.5rem;
  background: var(--forest-cream);
  border: 2px solid var(--forest-sage);
  border-radius: 12px;
  overflow: hidden;
}

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

.detail-item:hover {
  background: var(--forest-white);
  transform: translateX(8px);
}

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

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

.detail-value {
  color: var(--forest-dark);
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: 1.1rem;
}

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

.casino-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--forest-sage), var(--forest-gold));
  color: var(--forest-white);
  padding: 1.4rem 3rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-forest);
  border: 2px solid var(--forest-sage);
}

.casino-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--forest-gold), var(--forest-mint));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

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

.faq-item {
  background: var(--forest-white);
  border: 2px solid var(--forest-sage);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-item:hover {
  box-shadow: var(--shadow-forest);
  transform: translateY(-3px);
  border-color: var(--forest-gold);
}

.accordion-question {
  background: none;
  border: none;
  border-bottom: 1px solid var(--forest-sage);
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest-dark);
  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(--forest-cream);
  color: var(--forest-green);
}

.accordion-icon {
  width: 30px;
  height: 30px;
  background: var(--forest-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--forest-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(45deg);
  background: var(--forest-gold);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2.5rem;
  color: var(--forest-green);
  line-height: 1.8;
  font-size: 1.1rem;
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--forest-dark), var(--forest-green));
  color: var(--forest-cream);
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--forest-gold);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-gold), var(--forest-sage), var(--forest-gold));
  background-size: 200% 100%;
  animation: forestShimmer 5s ease-in-out infinite;
}

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

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

.footer-tagline {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
}

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

.footer-links a {
  color: var(--forest-cream);
  text-decoration: none;
  font-weight: 600;
  padding: 1.2rem 2rem;
  border-right: 2px solid var(--forest-sage);
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-links li:last-child a {
  border-right: none;
}


.footer-links a:hover::before {
  opacity: 1;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--forest-sage);
}

.copyright {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--forest-gold);
}

/* Animations */
@keyframes fadeInForest {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInForest 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(--forest-white);
  padding: 4rem;
  border: 2px solid var(--forest-sage);
  border-radius: 15px;
  line-height: 1.8;
  box-shadow: var(--shadow-forest);
}

.text-content h3 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin: 2.5rem 0 1.5rem;
  letter-spacing: 0.5px;
}

.text-content p {
  margin-bottom: 1.8rem;
  color: var(--forest-green);
  font-size: 1.1rem;
}

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

.text-content li {
  margin-bottom: 0.8rem;
  color: var(--forest-green);
  font-size: 1.1rem;
}

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

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

main {
  flex: 1;
}
