/* Template 11 - Sunset Orange Theme */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --sunset-orange: #ff6b35;
  --sunset-red: #e55039;
  --sunset-yellow: #ffa726;
  --sunset-pink: #ff7675;
  --sunset-coral: #fd79a8;
  --sunset-dark: #2d3436;
  --sunset-gray: #636e72;
  --sunset-light-gray: #b2bec3;
  --sunset-cream: #ffeaa7;
  --sunset-white: #ffffff;

  --shadow-sunset: 0 8px 32px rgba(255, 107, 53, 0.3);
  --shadow-warm: 0 12px 40px rgba(229, 80, 57, 0.4);
  --shadow-light: 0 4px 16px rgba(255, 167, 38, 0.2);

  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

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

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

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--sunset-dark);
  background: linear-gradient(135deg, var(--sunset-cream) 0%, var(--sunset-white) 100%);
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 167, 38, 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(--sunset-orange), var(--sunset-red));
  border-bottom: 3px solid var(--sunset-yellow);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-warm);
}

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

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

.site-logo img {
  width: 50px;
  height: 50px;
  border: 2px solid var(--sunset-yellow);
  border-radius: 50%;
  box-shadow: var(--shadow-light);
}

.site-name {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sunset-white);
  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.5rem;
}

.site-nav a {
  color: var(--sunset-white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.site-nav a:hover {
  background: var(--sunset-yellow);
  color: var(--sunset-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

/* Hero Section */
.section.head {
  padding: 10rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--sunset-red) 50%, var(--sunset-pink) 100%);
  color: var(--sunset-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="10" cy="10" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="90" cy="30" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="70" cy="70" r="2.5" fill="rgba(255,255,255,0.2)"/><circle cx="30" cy="80" r="1.5" fill="rgba(255,255,255,0.4)"/></svg>');
  background-size: 150px 150px;
  animation: twinkle 6s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.section.head h1 {
  font-family: var(--font-primary);
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--sunset-white);
  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.3rem;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

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

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

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

.section header h2 {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--sunset-dark);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  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(--sunset-orange), var(--sunset-yellow));
  border-radius: 2px;
}

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

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

.casino-item {
  width: calc(33.333% - 1.7rem);
  min-width: 340px;
  background: var(--sunset-white);
  border-radius: 20px;
  box-shadow: var(--shadow-sunset);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sunset-light-gray);
}

.casino-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sunset-orange), var(--sunset-yellow), var(--sunset-pink));
  background-size: 200% 100%;
  animation: sunsetShimmer 3s ease-in-out infinite;
}

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

.casino-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-warm);
}

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

.casino-header {
  padding: 2.5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--sunset-cream), var(--sunset-white));
  border-radius: 20px 20px 0 0;
}

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 5px;
  border: 2px solid var(--sunset-orange);
  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(255, 167, 38, 0.4), transparent);
  transition: left 0.6s ease;
}

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

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

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

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

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

.rating .stars {
  width: 130px;
  height: 22px;
  background: var(--sunset-light-gray);
  border-radius: 11px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--sunset-orange);
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--sunset-orange), var(--sunset-yellow));
  transition: all 0.4s ease;
  border-radius: 9px;
}

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

.casino-body {
  padding: 2.5rem 2rem;
  background: var(--sunset-white);
  border-radius: 0 0 20px 20px;
}

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

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

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

.free-spins {
  font-size: 1.1rem;
  font-weight: 600;
}

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

.feature-tag {
  background: var(--sunset-cream);
  color: var(--sunset-dark);
  padding: 0.6rem 1rem;
  border: 2px solid var(--sunset-orange);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--sunset-light-gray);
  transition: all 0.3s ease;
}

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

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

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

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

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

.casino-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-yellow));
  color: var(--sunset-white);
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sunset);
}

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

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

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

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

.faq-item {
  background: var(--sunset-white);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--sunset-light-gray);
}

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

.accordion-question {
  background: none;
  border: none;
  border-bottom: 1px solid var(--sunset-light-gray);
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sunset-dark);
  padding: 1.5rem 2rem;
  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(--sunset-cream);
  color: var(--sunset-orange);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  background: var(--sunset-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 50%;
  box-shadow: var(--shadow-light);
}

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

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

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

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-red));
  color: var(--sunset-white);
  padding: 3rem 0 1.5rem;
  border-top: 3px solid var(--sunset-yellow);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sunset-yellow), var(--sunset-coral), var(--sunset-yellow));
  background-size: 200% 100%;
  animation: sunsetShimmer 4s ease-in-out infinite;
}

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

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

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

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

.footer-links a {
  color: var(--sunset-white);
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.footer-links a:hover {
  background: var(--sunset-yellow);
  color: var(--sunset-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

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

.copyright {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sunset-yellow);
}

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

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

/* Text Content */
.text-content {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--sunset-white);
  padding: 3rem;
  border-radius: 20px;
  line-height: 1.7;
  box-shadow: var(--shadow-sunset);
  border: 1px solid var(--sunset-light-gray);
}

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

.text-content p {
  margin-bottom: 1.5rem;
  color: var(--sunset-gray);
}

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

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

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

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

main {
  flex: 1;
}
