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

:root {
  --grad-black: #0a0a0a;
  --grad-dark: #1a1a1a;
  --grad-gray: #2a2a2a;
  --grad-light-gray: #3a3a3a;
  --grad-white: #ffffff;
  --grad-purple: #8b5cf6;
  --grad-pink: #ec4899;
  --grad-blue: #3b82f6;
  --grad-cyan: #06b6d4;
  --grad-green: #10b981;
  --grad-yellow: #f59e0b;
  --grad-orange: #f97316;
  --grad-red: #ef4444;

  --gradient-primary: linear-gradient(135deg, var(--grad-purple), var(--grad-pink));
  --gradient-secondary: linear-gradient(135deg, var(--grad-blue), var(--grad-cyan));
  --gradient-accent: linear-gradient(135deg, var(--grad-green), var(--grad-yellow));
  --gradient-warm: linear-gradient(135deg, var(--grad-orange), var(--grad-red));

  --shadow-gradient: 0 10px 40px rgba(139, 92, 246, 0.3);
  --shadow-hover: 0 20px 60px rgba(139, 92, 246, 0.4);
  --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.5);
}

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

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--grad-white);
  background: var(--grad-black);
  background-image: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  min-height: 100vh;
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 49%, rgba(139, 92, 246, 0.03) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(236, 72, 153, 0.03) 50%, transparent 51%);
  background-size: 60px 60px;
  z-index: -1;
  animation: gradientMove 20s ease-in-out infinite;
}

@keyframes gradientMove {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 30px);
  }
}

a {
  color: var(--grad-purple);
  text-decoration: none;
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

a:hover {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main {
  flex: 1;
}

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

/* Header */
.site-header {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-gradient);
}

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

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

.site-logo img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.site-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

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

.site-nav a {
  color: var(--grad-white);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
  -webkit-text-fill-color: var(--grad-white);
}

.site-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.site-nav a:hover {
  color: var(--grad-white);
  -webkit-text-fill-color: var(--grad-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gradient);
}

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

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--grad-dark), var(--grad-gray));
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: heroGradient 8s ease-in-out infinite alternate;
}

@keyframes heroGradient {
  0% {
    background: var(--gradient-primary);
    transform: rotate(0deg) scale(1);
  }
  100% {
    background: var(--gradient-secondary);
    transform: rotate(180deg) scale(1.1);
  }
}

.section.head h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
  animation: titleFloat 6s ease-in-out infinite;
}

@keyframes titleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section.head .content p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: var(--grad-white);
  font-weight: 400;
  position: relative;
  z-index: 1;
  line-height: 1.8;
  opacity: 0.9;
}

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

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

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

.section header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  position: relative;
}

.section header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.section header p {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
}

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

.casino-item {
  width: calc(33.333% - 1.7rem);
  min-width: 320px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

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

.casino-item:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: transparent;
  box-shadow: var(--shadow-hover);
}

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

.casino-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-warm);
  color: var(--grad-white);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-gradient);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%,
  100% {
    box-shadow: var(--shadow-gradient);
  }
  50% {
    box-shadow: var(--shadow-glow);
  }
}

.casino-header {
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  z-index: 1;
}

.casino-logo {
  width: 360px;
  height: 120px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 5px;
  border: 2px solid transparent;
  background: linear-gradient(var(--grad-dark), var(--grad-dark)) padding-box, var(--gradient-primary) border-box;
  transition: all 0.4s ease;
  position: relative;
}

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

.casino-logo:hover {
  background: linear-gradient(var(--grad-dark), var(--grad-dark)) padding-box, var(--gradient-secondary) border-box;
  transform: scale(1.05);
}

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

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

.casino-name {
  font-family: "Space Grotesk", sans-serif;
  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;
  letter-spacing: 0.5px;
}

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

.rating .stars {
  width: 120px;
  height: 20px;
  background: var(--grad-gray);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.rating .stars .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--gradient-accent);
  transition: all 0.4s ease;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.rating .text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.casino-bonus {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.casino-bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.05;
  animation: bonusWave 5s ease-in-out infinite;
}

@keyframes bonusWave {
  0%,
  100% {
    transform: translateX(-100%) rotate(0deg);
  }
  50% {
    transform: translateX(100%) rotate(180deg);
  }
}

.bonus-amount {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.free-spins {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

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

.feature-tag {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
  color: var(--grad-white);
  padding: 0.7rem 1.4rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

.feature-tag:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gradient);
}

.feature-tag:hover::before {
  opacity: 0.3;
}

.casino-details {
  margin-bottom: 2.5rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 1.8rem;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  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);
  opacity: 0.1;
  transition: width 0.3s ease;
}

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

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

.detail-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.detail-value {
  color: var(--grad-white);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

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

.casino-button {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--grad-white);
  padding: 1.2rem 3rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gradient);
}

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

.casino-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-hover);
  background: var(--gradient-secondary);
}

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

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

.faq-item {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 15px;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: var(--shadow-gradient);
}

.accordion-question {
  background: transparent;
  border: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--grad-white);
  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(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accordion-icon {
  width: 30px;
  height: 30px;
  border: 2px solid transparent;
  background: linear-gradient(var(--grad-dark), var(--grad-dark)) padding-box, var(--gradient-primary) border-box;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--grad-white);
  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: linear-gradient(var(--grad-dark), var(--grad-dark)) padding-box, var(--gradient-secondary) border-box;
  box-shadow: var(--shadow-glow);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-weight: 400;
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--grad-black), var(--grad-dark));
  color: var(--grad-white);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  animation: footerGradient 4s linear infinite;
}

@keyframes footerGradient {
  0% {
    background: var(--gradient-primary);
  }
  50% {
    background: var(--gradient-secondary);
  }
  100% {
    background: var(--gradient-primary);
  }
}

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

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

.footer-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-weight: 400;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  background: transparent;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.copyright {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
  .casino-item {
    width: calc(50% - 1.25rem);
  }
}

@media (max-width: 768px) {
  .casino-item {
    width: 100%;
    max-width: 400px;
  }

  .section.head h1 {
    font-size: 3rem;
  }

  .section header h2 {
    font-size: 2.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .casino-logo {
    width: 100%;
    height: 100px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links ul {
    justify-content: center;
  }
}

.section.tx-block {
background: #000000; /* или другой темный цвет */
}

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


body:not(.faq) h3,
:not(section.faq) h3 {
font-size: 1.4rem;
color: #ffffff; /
margin-top: 20px;
margin-bottom: 10px;
 text-align: left;
}