:root {
  --primary: #f0f0f3;
  --accent: #8ecae6;
  --text: #111111;
  --top-shadow: #f6f1f1;
  --bottom-shadow: #d1d9e6;
  --glow: #1f51ff;
  --success: #10b981;
  --warning: #f59e0b;
}

body.dark-mode {
  --primary: #1f1f1f;
  --accent: #00c896;
  --text: #ffffff;
  --top-shadow: #2a2a2a;
  --bottom-shadow: #0d0d0d;
  --glow: #39ff14;
  --success: #059669;
  --warning: #d97706;
  --color: rgba(114, 114, 114, 0.3);
  background-color: #191a1a;
  background-image: linear-gradient(
      0deg,
      transparent 24%,
      var(--color) 25%,
      var(--color) 26%,
      transparent 27%,
      transparent 74%,
      var(--color) 75%,
      var(--color) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      var(--color) 25%,
      var(--color) 26%,
      transparent 27%,
      transparent 74%,
      var(--color) 75%,
      var(--color) 76%,
      transparent 77%,
      transparent
    );
  background-size: 55px 55px;
  background-attachment: fixed;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--primary);
  color: var(--text);
  --color: #e1e1e1;
  background-color: #f3f3f3;
  background-image: linear-gradient(
      0deg,
      transparent 24%,
      var(--color) 25%,
      var(--color) 26%,
      transparent 27%,
      transparent 74%,
      var(--color) 75%,
      var(--color) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      var(--color) 25%,
      var(--color) 26%,
      transparent 27%,
      transparent 74%,
      var(--color) 75%,
      var(--color) 76%,
      transparent 77%,
      transparent
    );
  background-size: 55px 55px;
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

body::selection {
  background-color: var(--accent);
  color: var(--text);
}

/* Main Layout */
.info-main {
  position: relative;
  padding-top: 100px;
  min-height: 100vh;
}

/* Background Elements */
.background-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: floatBlob 20s ease-in-out infinite alternate;
  background: var(--accent);
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation-duration: 25s;
}

.blob-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -5%;
  animation-duration: 30s;
  animation-delay: -10s;
}

.blob-3 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 50%;
  animation-duration: 35s;
  animation-delay: -20s;
}

/* Hero Section */
.info-hero {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.accent-text {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--accent);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.last-updated {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
  font-style: italic;
}

/* Info Container */
.info-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

/* Info Sections */
.info-section {
  margin-bottom: 3rem;
}

.section-card {
  background: var(--primary);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 20px 20px 60px var(--bottom-shadow), -20px -20px 60px var(--top-shadow);
  transition: all 0.3s ease;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.section-card:hover {
  transform: translateY(-5px);
  box-shadow: 25px 25px 70px var(--bottom-shadow), -25px -25px 70px var(--top-shadow);
}

.section-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 10px 10px 20px var(--bottom-shadow), inset -10px -10px 20px var(--top-shadow);
  transition: all 0.3s ease;
}

.section-icon i {
  font-size: 2rem;
  color: var(--accent);
}

.section-content {
  flex: 1;
}

.section-content h2 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-content h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin: 1.5rem 0 0.5rem 0;
  font-weight: 600;
}

.section-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.section-content p:last-child {
  margin-bottom: 0;
}

/* Lists */
.terms-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.terms-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  opacity: 0.9;
  line-height: 1.6;
}

.terms-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Content List (for Help page) */
.content-list {
  margin-top: 1.5rem;
}

.list-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--primary);
  border-radius: 15px;
  box-shadow: inset 5px 5px 10px var(--bottom-shadow), inset -5px -5px 10px var(--top-shadow);
  transition: all 0.3s ease;
}

.list-item:hover {
  box-shadow: inset 8px 8px 16px var(--bottom-shadow), inset -8px -8px 16px var(--top-shadow);
}

.item-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 5px 10px var(--bottom-shadow), -5px -5px 10px var(--top-shadow);
}

.item-icon i {
  font-size: 1.2rem;
  color: var(--accent);
}

.item-content h4 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.item-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  opacity: 0.8;
  margin: 0;
}

/* FAQ Specific Styles */
.faq-section {
  margin-bottom: 2rem;
}

.faq-item {
  background: var(--primary);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 10px 10px 30px var(--bottom-shadow), -10px -10px 30px var(--top-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--primary);
  box-shadow: inset 5px 5px 10px var(--bottom-shadow), inset -5px -5px 10px var(--top-shadow);
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 6px var(--bottom-shadow), -3px -3px 6px var(--top-shadow);
  transition: all 0.3s ease;
}

.faq-icon i {
  font-size: 1rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  padding: 0 0 1.5rem 0;
  color: var(--text);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon i {
  transform: rotate(180deg);
}

/* CTA Card */
.cta-card {
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--text);
}

.cta-card .section-content h2 {
  color: var(--text);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-card .section-content p {
  color: var(--text);
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 8px 8px 20px var(--bottom-shadow), -8px -8px 20px var(--top-shadow);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 12px 12px 25px var(--bottom-shadow), -12px -12px 25px var(--top-shadow);
}

.cta-btn.primary {
  background: var(--accent);
  color: var(--text);
}

.cta-btn.secondary {
  background: var(--primary);
  color: var(--text);
}

.cta-btn.secondary:hover {
  box-shadow: inset 8px 8px 20px var(--bottom-shadow), inset -8px -8px 20px var(--top-shadow);
}

/* Contact Info */
.contact-info {
  background: var(--primary);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: inset 5px 5px 10px var(--bottom-shadow), inset -5px -5px 10px var(--top-shadow);
}

.contact-info p {
  margin: 0.5rem 0;
  color: var(--text);
  opacity: 0.9;
}

.contact-info strong {
  color: var(--accent);
}

/* Animations */
@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(30px, -20px) scale(1.1) rotate(5deg);
  }
  50% {
    transform: translate(-20px, 15px) scale(0.95) rotate(-3deg);
  }
  75% {
    transform: translate(15px, 25px) scale(1.05) rotate(2deg);
  }
  100% {
    transform: translate(-10px, -15px) scale(1) rotate(-2deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-main {
    padding-top: 80px;
  }

  .info-container {
    padding: 1rem;
  }

  .info-hero {
    padding: 2rem 1rem;
  }

  .section-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }

  .section-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
  }

  .section-icon i {
    font-size: 1.8rem;
  }

  .list-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .item-icon {
    margin: 0 auto;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .background-elements {
    display: none;
  }
}

@media (max-width: 480px) {
  .section-card {
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-content h2 {
    font-size: 1.5rem;
  }

  .list-item {
    padding: 1rem;
  }

  .faq-answer {
    max-height: none;
  }

  .faq-item.active .faq-answer {
    max-height: none;
  }
}
