/* Template 7 - Minimalist Corporate Blue */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  --corp-white: #ffffff;
  --corp-light: #f8fafc;
  --corp-gray: #64748b;
  --corp-dark: #1e293b;
  --corp-blue: #0f172a;
  --corp-accent: #3b82f6;
  --corp-hover: #2563eb;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  --font-primary: "Inter", sans-serif;
  --font-accent: "Playfair Display", 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(--corp-dark);
  background: var(--corp-white);
  min-height: 100vh;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

/* Header */
.site-header {
  background: var(--corp-white);
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

.site-logo img {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  border: 2px solid var(--corp-accent);
}

.site-name {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--corp-blue);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.site-nav a {
  color: var(--corp-gray);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.site-nav a:hover {
  background: var(--corp-light);
  color: var(--corp-accent);
  transform: translateY(-1px);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--corp-light) 0%, var(--corp-white) 100%);
}

.section.head h1 {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--corp-blue);
  letter-spacing: -1px;
}

.section.head p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--corp-gray);
  font-weight: 400;
}

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

.section:nth-child(even) {
  background: var(--corp-light);
}

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

.section header h2 {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--corp-blue);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section header p {
  font-size: 1.1rem;
  color: var(--corp-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(--corp-white);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.casino-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--corp-accent);
}

.casino-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--corp-accent);
  color: var(--corp-white);
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-header {
  padding: 2rem;
  text-align: center;
  background: var(--corp-light);
  border-bottom: 1px solid #e2e8f0;
}

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 5px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--corp-white);
}

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

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

.casino-name {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--corp-blue);
  margin-bottom: 1rem;
}

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

.rating .stars {
  width: 120px;
  height: 20px;
  background: #e2e8f0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--corp-accent);
  transition: all 0.3s ease;
  border-radius: 10px;
}

.rating .text {
  color: var(--corp-gray);
  font-weight: 600;
  font-size: 0.9rem;
}

.casino-body {
  padding: 2rem;
}

.casino-bonus {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--corp-light);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.bonus-amount {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--corp-accent);
  font-family: var(--font-accent);
}

.free-spins {
  font-size: 1rem;
  font-weight: 500;
  color: var(--corp-gray);
}

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

.feature-tag {
  background: var(--corp-white);
  color: var(--corp-gray);
  padding: 0.4rem 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

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

.casino-details {
  margin-bottom: 2rem;
  background: var(--corp-light);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

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

.detail-label {
  color: var(--corp-gray);
  font-weight: 500;
  font-size: 0.9rem;
}

.detail-value {
  color: var(--corp-blue);
  font-weight: 600;
}

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

.casino-button {
  display: inline-block;
  background: var(--corp-accent);
  color: var(--corp-white);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: 2px solid var(--corp-accent);
}

.casino-button:hover {
  background: var(--corp-hover);
  border-color: var(--corp-hover);
  transform: translateY(-2px);
}

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

.faq-item {
  background: var(--corp-white);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

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

.accordion-question:hover {
  background: var(--corp-light);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  background: var(--corp-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--corp-white);
  transition: all 0.3s ease;
}

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

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

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

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

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

/* Footer */
.footer {
  background: var(--corp-blue);
  color: var(--corp-white);
  padding: 3rem 0 1rem;
}

.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: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

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

.footer-links a {
  color: var(--corp-white);
  text-decoration: none;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.text-content h3 {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--corp-blue);
  margin: 2rem 0 1rem;
}

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

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

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

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

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