/**
 * Support Page Styles
 * Modern, clean design with smooth animations
 */

/* ============================================
   PAGE LAYOUT
   ============================================ */
.support-page {
  padding: 2rem 0;
  min-height: calc(100vh - 160px);
}

/* ============================================
   HEADER
   ============================================ */
.support-header {
  text-align: center;
  padding: 6rem 0 4rem;
}

@media (max-width: 1023px) {
  .support-header {
    padding: 2rem 0 2rem;
  }
}

@media (max-width: 1920px) {
  .support-header {
    padding: 4rem 0 3rem;
  }
}

.support-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.support-title-normal {
  color: var(--foreground);
}

.support-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted-foreground);
  margin: 0;
  animation-delay: 0.1s;
}

/* ============================================
   HERO IMAGE
   ============================================ */
.support-hero-image {
  max-width: 800px;
  margin: 0 auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.support-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   INSTRUCTIONS CARD
   ============================================ */
.support-instructions {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
  .support-instructions {
    padding: 1.5rem;
  }
}

/* ============================================
   NOTICE SECTION
   ============================================ */
.support-notice {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(226, 1, 205, 0.1), rgba(31, 158, 158, 0.1));
  border-left: 4px solid var(--primary);
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 2rem;
}

.support-notice-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--primary); */
  /* border-radius: 12px; */
  color: var(--primary-foreground);
}

.support-notice-content {
  flex: 1;
}

.support-notice-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.5rem 0;
}

.support-notice-text {
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   WARNING SECTION
   ============================================ */
.support-warning {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid hsl(45, 100%, 50%);
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 2.5rem;
}

.support-warning-icon {
  flex-shrink: 0;
  color: hsl(45, 100%, 50%);
}

.support-warning-content {
  flex: 1;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.support-warning-content strong {
  color: var(--foreground);
  font-weight: 600;
}

/* ============================================
   STEPS
   ============================================ */
.support-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.support-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem;
  background: rgba(226, 1, 205, 0.05);
  border-radius: calc(var(--radius) - 4px);
  /* border: 1px solid var(--glass-border); */
  transition: all 0.3s ease;
}

.support-step:hover {
  background: rgba(226, 1, 205, 0.08);
  border-color: rgba(226, 1, 205, 0.3);
  transform: translateX(8px);
}

.support-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  color: var(--foreground);
  font-size: 1.5rem;
  font-weight: 700;
  /* box-shadow: 0 4px 12px rgba(226, 1, 205, 0.3); */
  /* padding: 0.25rem 0.75rem; */
  border-radius: var(--radius-secondary);
  background: rgba(255, 255, 255, 0.05);
  /* color: var(--muted-foreground); */
  /* font-size: 0.75rem; */
  /* font-weight: 500; */
  border: 1px solid var(--glass-border);
}

.support-step-content {
  flex: 1;
}

.support-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.5rem 0;
}

.support-step-text {
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   DEMO SECTION
   ============================================ */
/* .support-demo {
  margin-bottom: 2.5rem;
} */

.support-demo-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.support-demo-image {
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
}

.support-demo-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   ACTION BUTTON
   ============================================ */
.support-action {
  display: flex;
  justify-content: center;
}

.support-btn {
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 1, 205, 0.4);
}

.support-btn:active {
  transform: translateY(0);
}

.support-btn svg {
  flex-shrink: 0;
}

/* ============================================
   LINKS
   ============================================ */
.support-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.support-link:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slide-up 0.8s ease-out forwards;
  opacity: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .support-header {
    padding: 3rem 0 2rem;
  }
  
  .support-hero-image {
    margin-bottom: 2rem;
  }
  
  .support-notice {
    flex-direction: column;
    gap: 1rem;
  }
  
  .support-notice-icon {
    width: 40px;
    height: 40px;
  }
  
  .support-warning {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .support-steps {
    gap: 1rem;
  }
  
  .support-step {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .support-step:hover {
    transform: translateX(0);
  }
  
  .support-step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .support-demo {
    margin-bottom: 2rem;
  }
  
  .support-btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .support-page {
    padding: 1rem 0;
  }
  
  .support-header {
    padding: 2rem 0 1.5rem;
  }
  
  .support-instructions {
    padding: 1.25rem;
  }
  
  .support-notice {
    padding: 1.25rem;
  }
  
  .support-notice-title {
    font-size: 1.125rem;
  }
  
  .support-warning {
    padding: 1rem;
  }
  
  .support-step {
    padding: 1rem;
  }
  
  .support-step-title {
    font-size: 1rem;
  }
  
  .support-demo-title {
    font-size: 1.125rem;
  }
  
  .support-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* ============================================
   DARK THEME ADJUSTMENTS
   ============================================ */
[data-theme="dark"] .support-step {
  background: rgba(226, 1, 205, 0.03);
}

[data-theme="dark"] .support-step:hover {
  background: rgba(226, 1, 205, 0.06);
}

[data-theme="dark"] .support-demo-image {
  border-color: rgba(255, 255, 255, 0.1);
}
