.support-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-primary);
}

.support-screen .header {
  background: rgba(26, 29, 36, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.support-screen .header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 20px;
}

.support-screen .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.support-screen .logo:hover {
  transform: scale(1.05);
}

.support-screen .nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.support-screen .nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.support-screen .nav-link:hover {
  color: var(--primary-light);
  transform: translateY(-2px);
}

.support-screen .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.support-screen .nav-link:hover::after {
  width: 100%;
}

.support-content {
  flex: 1;
  padding: 5rem 0;
  background: var(--bg-primary);
}

.support-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease;
}

.support-title {
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.support-subtitle {
  font-size: 1.35rem;
  text-align: center;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

.support-quick-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.quick-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(183, 28, 28, 0.1), transparent);
  transition: left 0.5s ease;
}

.quick-link:hover::before {
  left: 100%;
}

.quick-link:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 24px rgba(183, 28, 28, 0.4);
  background: var(--bg-elevated);
}

.support-sections {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.support-section {
  background: var(--bg-card);
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 10px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.support-section:hover {
  box-shadow: 0 12px 24px rgba(183, 28, 28, 0.3);
  border-color: var(--primary);
  background: var(--bg-elevated);
}

.section-header-inline {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 16px;
  border-left: 5px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
  background: var(--bg-card);
  box-shadow: 0 8px 16px rgba(183, 28, 28, 0.3);
  transform: translateX(5px);
  border-left-width: 6px;
}

.faq-item.active {
  background: var(--bg-elevated);
  box-shadow: 0 8px 24px rgba(183, 28, 28, 0.4);
  border-color: var(--primary-light);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(183, 28, 28, 0.4));
}

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

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 1rem;
  font-size: 1.05rem;
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-label {
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.form-label svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(183, 28, 28, 0.4));
}

.form-input,
.form-textarea {
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(183, 28, 28, 0.2);
  background: var(--bg-card);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-tertiary);
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}

.resources-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.resource-item {
  padding: 2.5rem;
  background: var(--bg-secondary);
  border-radius: 20px;
  border-top: 5px solid var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.resource-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(183, 28, 28, 0.4);
  background: var(--bg-card);
  border-top-width: 6px;
  border-color: var(--primary-light);
}

.resource-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.resource-item:nth-child(2) .resource-icon {
  animation-delay: 0.5s;
}

.resource-item:nth-child(3) .resource-icon {
  animation-delay: 1s;
}

.resource-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.resource-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.resource-link {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.resource-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0f1115 100%);
  color: var(--text-primary);
  padding: 5rem 0 2.5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
  padding-left: 5px;
}

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

.footer-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .support-title {
    font-size: 2.75rem;
  }

  .support-subtitle {
    font-size: 1.15rem;
  }

  .support-quick-links {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-link {
    justify-content: center;
  }

  .support-section {
    padding: 2.5rem 2rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .section-header-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .resources-list {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
