/* Template 5 - Modern Gradient Tech Theme */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap");

:root {
  --tech-bg: #0f0f23;
  --tech-dark: #1a1a2e;
  --tech-card: #16213e;
  --tech-border: #0e3460;
  --tech-text: #ffffff;
  --tech-muted: #a0a9c0;
  --tech-primary: #00d4ff;
  --tech-secondary: #ff006e;
  --tech-accent: #8338ec;
  --tech-success: #06ffa5;
  --tech-warning: #ffbe0b;

  --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #8338ec 100%);
  --gradient-secondary: linear-gradient(135deg, #ff006e 0%, #ffbe0b 100%);
  --gradient-accent: linear-gradient(135deg, #8338ec 0%, #00d4ff 100%);
  --gradient-bg: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);

  --glow-primary: 0 0 30px rgba(0, 212, 255, 0.3);
  --glow-secondary: 0 0 30px rgba(255, 0, 110, 0.3);
  --glow-accent: 0 0 30px rgba(131, 56, 236, 0.3);

  --font-primary: "Space Grotesk", sans-serif;
  --font-secondary: "JetBrains Mono", monospace;
}

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

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--tech-text);
  background: var(--gradient-bg);
  min-height: 100vh;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(131, 56, 236, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

main {
  flex: 1;
}

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

/* Header */
.site-header {
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--tech-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.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: 12px;
  border: 2px solid transparent;
  background: var(--gradient-primary);
  padding: 2px;
}

.site-name {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.site-nav a {
  color: var(--tech-text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--tech-border);
  background: rgba(22, 33, 62, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}



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

.site-nav a:hover {
  color: #54F9FF;
  border-color: var(--tech-primary);
  box-shadow: var(--glow-primary);
  transform: translateY(-2px);
}

/* Hero Section */
.section.head {
  padding: 10rem 0;
  text-align: center;
  background: var(--gradient-bg);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, var(--tech-primary) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, var(--tech-secondary) 0%, transparent 50%);
  opacity: 0.1;
  animation: techPulse 8s ease-in-out infinite;
}

.section.head h1 {
  font-family: var(--font-secondary);
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.section.head p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  color: var(--tech-muted);
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

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

.section:nth-child(even) {
  background: rgba(26, 26, 46, 0.3);
}

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

.section header h2 {
  font-family: var(--font-secondary);
  font-size: 3.5rem;
  font-weight: 600;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section header p {
  font-size: 1.2rem;
  color: var(--tech-muted);
  max-width: 700px;
  margin: 0 auto;
  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: 350px;
  background: rgba(22, 33, 62, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--tech-border);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.casino-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

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

.casino-item:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--tech-primary);
  box-shadow: var(--glow-primary), 0 25px 50px rgba(0, 0, 0, 0.3);
}

.casino-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-secondary);
  color: var(--tech-text);
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 15px;
  box-shadow: var(--glow-secondary);
}

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

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 5px;
  border: 1px solid var(--tech-border);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  background: rgba(14, 52, 96, 0.3);
}

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

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

.casino-logo:hover {
  transform: scale(1.05);
  border-color: var(--tech-primary);
  box-shadow: var(--glow-primary);
}

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

.casino-name {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.rating .stars {
  width: 130px;
  height: 22px;
  background: var(--tech-border);
  border-radius: 11px;
  position: relative;
  overflow: hidden;
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 11px;
  transition: all 0.4s ease;
  box-shadow: var(--glow-accent);
}

.rating .text {
  color: var(--tech-primary);
  font-weight: 600;
  font-family: var(--font-secondary);
  font-size: 1rem;
}

.casino-body {
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.casino-bonus {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--gradient-primary);
  color: var(--tech-bg);
  border-radius: 15px;
  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: techShimmer 3s infinite;
}

.bonus-amount {
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.8rem;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  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: 2.5rem;
  justify-content: center;
}

.feature-tag {
  background: rgba(22, 33, 62, 0.8);
  color: var(--tech-text);
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--tech-border);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: left 0.4s ease;
  z-index: -1;
}

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

.feature-tag:hover {
  color: var(--tech-bg);
  border-color: var(--tech-accent);
  box-shadow: var(--glow-accent);
  transform: translateY(-3px);
}

.casino-details {
  margin-bottom: 2.5rem;
  background: rgba(15, 15, 35, 0.8);
  border: 1px solid var(--tech-border);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

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

.detail-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  opacity: 0.1;
}

.detail-item:hover::before {
  width: 100%;
}

.detail-item:hover {
  background: rgba(22, 33, 62, 0.5);
}

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

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

.detail-value {
  color: var(--tech-primary);
  font-weight: 600;
  font-family: var(--font-secondary);
}

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

.casino-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--tech-bg);
  padding: 1.3rem 2.5rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-primary);
}

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

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

.casino-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--glow-primary), 0 15px 30px rgba(0, 212, 255, 0.4);
}

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

.faq-item {
  background: rgba(22, 33, 62, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--tech-border);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--tech-primary);
  box-shadow: var(--glow-primary);
}

.accordion-question {
  background: none;
  border: none;
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tech-text);
  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;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accordion-question:hover {
  color: var(--tech-primary);
}

.accordion-icon {
  width: 35px;
  height: 35px;
  border: 2px solid var(--tech-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  background: rgba(0, 212, 255, 0.1);
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--tech-primary);
  transition: all 0.4s 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(--tech-primary);
  box-shadow: var(--glow-primary);
}

.faq-item.active .accordion-icon::before,
.faq-item.active .accordion-icon::after {
  background: var(--tech-bg);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 2.5rem;
  color: var(--tech-muted);
  line-height: 1.8;
}

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

/* Footer */
.footer {
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  color: var(--tech-text);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--tech-border);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  animation: techGlow 4s 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: 500px;
}

.footer-tagline {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 400;
  color: var(--tech-muted);
}

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

.footer-links a {
  color: var(--tech-text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--tech-border);
  background: rgba(22, 33, 62, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  background: var(--gradient-primary);
  color: var(--tech-bg);
  border-color: var(--tech-primary);
  box-shadow: var(--glow-primary);
}

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

.copyright {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--tech-muted);
  font-family: var(--font-secondary);
}

/* Animations */
@keyframes techPulse {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
}

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

@keyframes techGlow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes fadeInTech {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInTech 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.4s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.6s;
}

/* Text Content */
.text-content {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(22, 33, 62, 0.6);
  backdrop-filter: blur(20px);
  padding: 4rem;
  border: 1px solid var(--tech-border);
  border-radius: 20px;
  line-height: 1.8;
}

.text-content h3 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 600;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 2.5rem 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-content p {
  margin-bottom: 1.8rem;
  color: var(--tech-muted);
  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(--tech-muted);
  font-size: 1.1rem;
}
