/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0d0a1a;
  --secondary-color: #1a1b2e;
  --accent-color: #6366f1;
  --accent-light: #8b5cf6;
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --border-color: #2d3748;
  --gradient-primary: linear-gradient(135deg, #0d0a1a 0%, #1a1b2e 100%);
  --gradient-accent: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
  font-family: "Inter", sans-serif;
  background: var(--gradient-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Responsibility Banner */
.responsibility-banner {
  background: rgba(99, 102, 241, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.responsibility-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 92, 246, 0.2),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.responsibility-banner p {
  margin: 0;
  position: relative;
  z-index: 1;
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.responsibility-banner a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  padding: 2px 4px;
  border-radius: 4px;
}

.responsibility-banner a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-light);
  transition: width 0.3s ease;
}

.responsibility-banner a:hover {
  color: var(--accent-light);
  background: rgba(139, 92, 246, 0.2);
}

.responsibility-banner a:hover::after {
  width: 100%;
}

.responsibility-banner strong {
  color: var(--accent-light);
  font-weight: 700;
}

/* Header */
.header {
  background: rgba(13, 10, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo h1 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

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

.nav a:hover {
  color: var(--text-primary);
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 80px 0 200px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.hero-text {
  max-width: 100%;
}

/* UT Section */
.ut-section {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.ut-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ut-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.ut-icon {
  font-size: 18px;
}

/* Hero Title and Description */
.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Hero Wheel */
.hero-wheel {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.wheel-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin-bottom: -200px;
}

.wheel-container::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--gradient-accent);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  filter: blur(20px);
  animation: wheelGlow 3s ease-in-out infinite alternate;
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-heavy);
  animation: wheelSpin 20s linear infinite;
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.wheel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.wheel:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) brightness(1.1);
}

.wheel:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.4);
}

.wheel-placeholder {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-primary);
}

.wheel-placeholder span {
  font-size: 80px;
  display: block;
  margin-bottom: 16px;
  animation: bounce 2s ease-in-out infinite;
}

.wheel-placeholder p {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

/* Offers Section */
.offers-section {
  padding: 120px 0 80px;
  position: relative;
  z-index: 2;
  margin-top: -260px;
}

.offers-section .section-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
  box-shadow: var(--shadow-medium);
}

.offers-section .section-header h2 {
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offers-section .section-header p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
}

.offers-section::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
  z-index: -1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
  width: 100%;
}

.casino-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;

  border-radius: 8px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.casino-card:hover::before {
  transform: scaleX(1);
}

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  background: rgba(255, 255, 255, 0.08);
}

.casino-card.featured {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  border: 2px solid orange !important;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
}


.casino-card.featured .casino-header {
  flex: 1;
  margin-bottom: 0;
}

.casino-card .casino-stats {
  margin-bottom: 0;
}

.casino-card .casino-bonus {
  flex: 1;
  margin-bottom: 0;
}

.casino-card .casino-actions {
  flex-shrink: 0;
  min-width: 200px;
}

.casino-card.featured::before {
  background: linear-gradient(90deg, #ffd700 0%, #ffa500 100%);
  
}

.casino-badge {
  position: absolute;
  top: -20px;
  left: 20px;
  background: var(--gradient-accent);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-logo {
  display: flex;
  align-items: center;
}

.casino-logo img {
  width: 330px;
  height: 155px;
  object-fit: contain;

  transition: all 0.3s ease;
}

.casino-logo img:hover {
  transform: scale(1.05);
}

.casino-logo h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.casino-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  min-height: 80px;
}

.casino-rating {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
}

.votes {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stars {
  font-size: 20px;
  font-weight: 600;
  color: #ffd700;
}

.casino-stats {
}

.online-users {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: var(--text-secondary);
}

.online-users .icon {
  font-size: 16px;
}

.casino-bonus {
}

.casino-bonus h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: end;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  min-height: 120px;
}

.btn-bonus {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--gradient-accent);
  border: none;
  border-radius: 12px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-bonus::before {
  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.5s ease;
}

.btn-bonus:hover::before {
  left: 100%;
}

.btn-bonus:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.payment-methods {
  display: flex;
  justify-content: center;
  min-height: 50px;
  align-items: center;
}

.payment-methods img {
  width: 240px;
}


/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--text-primary);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Animations */
@keyframes wheelSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes wheelGlow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 36px;
  }

  .ut-section {
    justify-content: center;
  }

  .wheel-container {
    width: 450px;
    height: 450px;
    margin-bottom: -452px;
  }

  .offers-section {
    margin-top: -75px;
  }

  .casino-logo img {
    width: 250px;
    height: 125px;
  }

  .hero {
    margin-top: -150px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .nav ul {
    gap: 20px;
  }

  .hero {
    padding: 0  0 150px;
    margin-top: -65px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  .ut-section {
    flex-direction: column;
    align-items: center;
  }

  .wheel-container {
    width: 350px;
    height: 350px;
    margin-bottom: -339px;
  }

  .wheel-placeholder span {
    font-size: 60px;
  }

  .wheel-placeholder p {
    font-size: 18px;
  }

  .offers-section {
    padding: 80px 0 60px;
    margin-top: -50px;
  }

  /* Offers section responsive */
  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  .offers-grid {
    gap: 20px;
  }

  .casino-card {
    padding: 25px;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .casino-logo img {
    width: 250px;
    height: 150px;
  }

  .casino-header {
    min-height: 60px;
    margin-bottom: 15px;
  }

  .casino-rating {
    min-height: 60px;
  }

  .casino-stats-bonus-container {
    gap: 15px;
  }

  .casino-stats {
    min-height: 30px;
  }

  .casino-bonus {
    min-height: 50px;
  }

  .casino-actions {
    min-height: 100px;
  }

  .casino-logo h3 {
    font-size: 20px;
  }

  .casino-bonus h4 {
    font-size: 16px;
  }

  .btn-bonus {
    padding: 14px 20px;
    font-size: 14px;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-description {
    font-size: 14px;
  }

  .wheel-container {
    width: 350px;
    height: 350px;
    margin-bottom: -339px;
  }

  .wheel-placeholder span {
    font-size: 40px;
  }

  .wheel-placeholder p {
    font-size: 16px;
  }

  .offers-section {
    padding: 60px 0 40px;
    margin-top: -25px;
  }

  /* Offers section responsive */
  .section-header h2 {
    font-size: 24px;
  }

  .offers-grid {
    gap: 15px;
  }

  .casino-card {
    padding: 20px;
  }

  .casino-header {
    flex-direction: column;
    gap: 15px;
  }

  .casino-rating {
    text-align: left;
  }

  .payment-methods {
    gap: 8px;
  }

  .payment-icon {
    font-size: 18px;
    padding: 6px;
  }
}

@media (max-width: 600px) {
  .casino-logo img {
    width: 250px;
    height: 150px;
  }
}

@media (max-width: 900px) {
  .casino-card {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px;
  }

  .casino-header,
  .casino-rating,
  .casino-stats-bonus-container,
  .casino-actions {
    justify-content: center !important;
    text-align: left !important;
    align-items: center !important;
  }
}

.casino-stats-bonus-container {
  display: flex;
  justify-content: flex-start;
  align-items: end;
  flex-direction: column;
  flex: 1;
}

.casino-stats {
  margin-bottom: 0;
}

.reviews-section {
  padding: 80px 0 60px;
  position: relative;
  z-index: 2;
  background: none;
}
.reviews-section .section-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
  box-shadow: var(--shadow-medium);
}
.reviews-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: stretch;

  flex-direction: row;
  scrollbar-width: thin;
  scrollbar-color: #6366f1 #23214a;
  padding-bottom: 8px;
}
.reviews-list::-webkit-scrollbar {
  height: 8px;
}
.reviews-list::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 8px;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(99, 102, 241, 0.18), 0 0 24px 0 #8b5cf655;
  padding: 36px 32px 32px 32px;
  min-width: 340px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
  position: relative;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  overflow: hidden;
}
.review-card:hover {
  box-shadow: 0 16px 48px 0 #6366f1cc, 0 0 32px 0 #8b5cf6cc;
  border: 1.5px solid #8b5cf6;
  transform: translateY(-6px) scale(1.04);
}

.review-stars {
  font-size: 2.1rem;
  color: #8b5cf6;
  margin-bottom: 18px;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 8px #8b5cf655;
}

.review-author {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  text-shadow: 0 0 8px #6366f1cc;
}

.review-text {
  font-size: 1.08rem;
  color: #e2e8f0;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  text-shadow: 0 0 6px #23214a99;
}

@media (max-width: 1200px) {
  .review-card {
    min-width: 300px;
    max-width: 340px;
    padding: 28px 18px 24px 18px;
  }
}

@media (max-width: 1024px) {
  .reviews-list {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .reviews-section {
    padding: 40px 0 30px;
  }
  .reviews-list {
    gap: 50px;
  }
  .review-card {
    min-width: 260px;
    max-width: 95vw;
    padding: 18px 4vw 16px 4vw;
  }
}
@media (max-width: 600px) {
  .reviews-fire {
    font-size: 1.2rem;
  }
  .review-card {
    min-width: 220px;
    padding: 12px 2vw 12px 2vw;
  }
  .review-stars {
    font-size: 1.1rem;
  }
  .review-author {
    font-size: 1rem;
  }
  .review-text {
    font-size: 0.98rem;
  }
}

.faq-section {
  padding: 80px 0 60px;
  background: none;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 32px;

  justify-content: center;
}
.faq-item {
  flex: 1 1 45%;
  min-width: 320px;
  max-width: 48%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  padding: 32px 28px 24px 28px;
  margin-bottom: 0;
  box-shadow: 0 4px 24px 0 rgba(99, 102, 241, 0.08);
  transition: box-shadow 0.3s, border 0.3s;
}
.faq-item:hover {
  box-shadow: 0 8px 32px 0 #6366f1cc;
  border: 1.5px solid #8b5cf6;
}
.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 12px;
  margin-top: 8px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px #23214a22;
  transition: color 0.2s;
}
.faq-item:hover .faq-question {
  color: #6366f1;
}

.faq-answer {
  font-size: 1.08rem;
  color: #e2e8f0;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;

 
  margin-bottom: 0;

}

.faq-divider {
  display: none;
}
@media (max-width: 900px) {
  .faq-list {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }
  .faq-item {
    max-width: 100%;
    min-width: 0;
  }
  .faq-question {
    font-size: 1.05rem;
  }
  .faq-answer {
    font-size: 0.98rem;
  }
}
@media (max-width: 600px) {
  .faq-item {
    padding: 10px 2vw 10px 2vw;
  }
  .faq-question {
    font-size: 0.98rem;
  }
  .faq-answer {
    font-size: 0.92rem;
  }
  .faq-divider {
    font-size: 1.3rem;
  }
}

/* --- Footer Section --- */
.footer-section {
  background: linear-gradient(135deg, #0d0a1a 80%, #1a1440 100%);
  color: #fff;
  padding: 48px 0 0 0;
  font-family: "Inter", "Poppins", Arial, sans-serif;
  margin-top: 64px;
}
.footer-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}
.footer-link {
  color: #a18aff;
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #fff;
  text-shadow: 0 0 8px #a18aff;
}
.footer-warning {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 32px;
  font-size: 1.02rem;
  line-height: 1.6;
  box-shadow: 0 4px 32px 0 rgba(20, 10, 60, 0.08);
  backdrop-filter: blur(8px);
  color: #e0e0ff;
}
.footer-warning strong {
  color: #a18aff;
  font-weight: 700;
}
.footer-warning-small {
  color: #a18aff;
  font-size: 0.98em;
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  filter: grayscale(0.2) brightness(1.1) drop-shadow(0 0 6px #a18aff44);
  transition: filter 0.2s, transform 0.2s;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 8px;
}
.footer-logo:hover img {
  filter: none;
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 0 12px #a18aff99;
}
.footer-bottom {
  text-align: center;
  color: #bdbdf7;
  font-size: 0.98rem;
  padding: 18px 0 8px 0;
  border-top: 1px solid rgba(161, 138, 255, 0.08);
  margin-top: 12px;
}

@media (max-width: 700px) {
  .footer-section .container {
    padding: 0 8px;
  }
  .footer-links {
    gap: 18px;
    font-size: 0.98rem;
  }
  .footer-warning {
    padding: 18px 8px;
    font-size: 0.98rem;
  }
  .footer-logos {
    gap: 10px;
  }
  .footer-logo img {
    height: 28px;
    padding: 2px 4px;
  }
  .footer-bottom {
    font-size: 0.92rem;
    padding: 12px 0 4px 0;
  }
}

/* --- Termos Page Styles --- */
.termos-page {
  font-family: "Inter", "Poppins", Arial, sans-serif;
  background: linear-gradient(135deg, #0d0a1a 0%, #1a1440 100%);
  color: #2d1b69;
  line-height: 1.6;
  min-height: 100vh;
}

.termos-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.termos-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(45, 27, 105, 0.1);
}

.termos-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d0a1a;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #0d0a1a, #2d1b69);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.termos-header p {
  font-size: 1.1rem;
  color: #5a4b8a;
  font-weight: 500;
}

.termos-content {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 48px 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(45, 27, 105, 0.08);
  margin-bottom: 32px;
}

.termos-section {
  margin-bottom: 32px;
}

.termos-section:last-child {
  margin-bottom: 0;
}

.termos-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0d0a1a;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #a18aff;
}

.termos-section p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #2d1b69;
}

.termos-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.termos-section li {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #2d1b69;
}

.termos-highlight {
  background: linear-gradient(135deg, #a18aff22, #6b46c122);
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 4px solid #a18aff;
  margin: 20px 0;
}

.termos-back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0d0a1a, #2d1b69);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(45, 27, 105, 0.2);
}

.termos-back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 27, 105, 0.3);
}

.termos-footer {
  text-align: center;
  padding: 24px 0;
  color: #5a4b8a;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .termos-container {
    padding: 20px 16px;
  }

  .termos-header h1 {
    font-size: 2rem;
  }

  .termos-content {
    padding: 32px 24px;
  }

  .termos-section h2 {
    font-size: 1.3rem;
  }

  .termos-section p,
  .termos-section li {
    font-size: 1rem;
  }
}

/* --- Floating Particles Background --- */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: linear-gradient(135deg, #a18aff66, #6b46c166);
  border-radius: 50%;
  animation: float 8s infinite linear;
  opacity: 0.6;
  box-shadow: 0 0 10px rgba(161, 138, 255, 0.3);
}

.particle:nth-child(1) {
  width: 6px;
  height: 6px;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  width: 8px;
  height: 8px;
  left: 20%;
  animation-delay: 1s;
  animation-duration: 10s;
}

.particle:nth-child(3) {
  width: 4px;
  height: 4px;
  left: 30%;
  animation-delay: 2s;
  animation-duration: 14s;
}

.particle:nth-child(4) {
  width: 7px;
  height: 7px;
  left: 40%;
  animation-delay: 3s;
  animation-duration: 11s;
}

.particle:nth-child(5) {
  width: 5px;
  height: 5px;
  left: 50%;
  animation-delay: 4s;
  animation-duration: 13s;
}

.particle:nth-child(6) {
  width: 9px;
  height: 9px;
  left: 60%;
  animation-delay: 5s;
  animation-duration: 9s;
}

.particle:nth-child(7) {
  width: 4px;
  height: 4px;
  left: 70%;
  animation-delay: 6s;
  animation-duration: 15s;
}

.particle:nth-child(8) {
  width: 6px;
  height: 6px;
  left: 80%;
  animation-delay: 7s;
  animation-duration: 12s;
}

.particle:nth-child(9) {
  width: 5px;
  height: 5px;
  left: 90%;
  animation-delay: 8s;
  animation-duration: 11s;
}

.particle:nth-child(10) {
  width: 7px;
  height: 7px;
  left: 15%;
  animation-delay: 9s;
  animation-duration: 13s;
}

.particle:nth-child(11) {
  width: 4px;
  height: 4px;
  left: 25%;
  animation-delay: 10s;
  animation-duration: 14s;
}

.particle:nth-child(12) {
  width: 6px;
  height: 6px;
  left: 35%;
  animation-delay: 11s;
  animation-duration: 10s;
}

.particle:nth-child(13) {
  width: 5px;
  height: 5px;
  left: 45%;
  animation-delay: 12s;
  animation-duration: 12s;
}

.particle:nth-child(14) {
  width: 8px;
  height: 8px;
  left: 55%;
  animation-delay: 13s;
  animation-duration: 11s;
}

.particle:nth-child(15) {
  width: 4px;
  height: 4px;
  left: 65%;
  animation-delay: 14s;
  animation-duration: 13s;
}

.particle:nth-child(16) {
  width: 6px;
  height: 6px;
  left: 75%;
  animation-delay: 15s;
  animation-duration: 10s;
}

.particle:nth-child(17) {
  width: 5px;
  height: 5px;
  left: 85%;
  animation-delay: 16s;
  animation-duration: 14s;
}

.particle:nth-child(18) {
  width: 7px;
  height: 7px;
  left: 95%;
  animation-delay: 17s;
  animation-duration: 12s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-50px) rotate(360deg);
    opacity: 0;
  }
}

/* Оптимизация для мобильных устройств */
@media (max-width: 768px) {
  .particle {
    animation-duration: 8s;
  }

  .particle:nth-child(n) {
    animation-duration: 6s;
  }
}

/* Отключение анимации для пользователей с предпочтением reduced motion */
@media (prefers-reduced-motion: reduce) {
  .particle {
    animation: none;
    opacity: 0.2;
  }
}
