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

:root {
  --primary: #d97706;
  --primary-dark: #b45309;
  --secondary: #92400e;
  --accent: #f59e0b;
  --success: #059669;

  --bg-primary: #fefdf8;
  --bg-secondary: #fef3e2;
  --bg-tertiary: #fed7aa;
  --bg-card: #ffffff;

  --text-primary: #451a03;
  --text-secondary: #78350f;
  --text-muted: #a16207;
  --text-light: #fbbf24;

  --border: #fed7aa;
  --border-light: #fef3e2;
  --shadow: 0 4px 6px -1px rgb(217 119 6 / 0.1), 0 2px 4px -2px rgb(217 119 6 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(217 119 6 / 0.1), 0 8px 10px -6px rgb(217 119 6 / 0.1);

  --font-serif: "Merriweather", serif;
  --font-sans: "Open Sans", sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(217, 119, 6, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(146, 64, 14, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header */
.site-header {
  background: var(--bg-card);
  border-bottom: 2px solid var(--border);
  padding: 1rem 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: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
  border: 2px solid transparent;
}

.site-nav a:hover {
  background: var(--bg-tertiary);
  border-color: var(--primary);
  color: var(--text-primary);
}

/* Hero Section */
.section.head {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border-bottom: 2px solid var(--border);
}

.section.head h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}

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

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

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

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

.section header h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

/* Casino Table Layout */
.casino_list {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.casino-table {
  width: 100%;
  border-collapse: collapse;
}

.casino-table thead {
  background: var(--bg-tertiary);
  border-bottom: 2px solid var(--border);
}

.casino-table th {
  padding: 1.5rem 1rem;
  text-align: left;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 16px;
  border-right: 1px solid var(--border-light);
}

.casino-table th:last-child {
  border-right: none;
}

.casino-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.casino-table tbody tr:hover {
  background: var(--bg-secondary);
  transform: scale(1.01);
}

.casino-table tbody tr:last-child {
  border-bottom: none;
}

.casino-table td {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border-light);
  vertical-align: middle;
}

.casino-table td:last-child {
  border-right: none;
}

.casino-logo-cell {
  width: 200px;
}

.casino-logo {
  width: 360px;
  height: 120px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid var(--border);
  background: var(--bg-primary);
  margin: 0 auto;
}

.casino-logo:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
}

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

.casino-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.casino-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating .stars {
  width: 100px;
  height: 16px;
  background: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.rating .stars .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 7px;
  transition: all 0.3s ease;
}

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

.casino-bonus {
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 8px;
  color: white;
  margin-bottom: 0.5rem;
}

.bonus-amount {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.free-spins {
  font-size: 12px;
  font-weight: 500;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.feature-tag {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid var(--border);
}

.feature-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

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

.casino-button {
  display: inline-block;
  background: var(--success);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-button:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

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

.faq-item {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.1);
}

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

.accordion-question:hover {
  background: var(--bg-secondary);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

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

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

.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(--border);
  margin-top: 4rem;
}

.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.6;
}

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

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

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

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

.copyright {
  color: var(--text-muted);
  font-size: 14px;
}

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

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


.site-nav {
position: absolute;
right: 2rem;
top: 50%;
transform: translateY(-50%);
}


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

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

main {
flex: 1;
}