/* Variables CSS */
:root {
  --background: hsl(230, 25%, 8%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(230, 25%, 12%);
  --card-foreground: hsl(0, 0%, 98%);
  --popover: hsl(230, 25%, 12%);
  --popover-foreground: hsl(0, 0%, 98%);
  --primary: hsla(41, 88%, 60%, 0.795);
  --primary-foreground: hsl(0, 0%, 98%);
  --secondary: hsl(230, 25%, 18%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --muted: hsl(230, 25%, 15%);
  --muted-foreground: hsl(0, 0%, 75%);
  --accent: hsla(41, 88%, 60%, 0.76);
  --accent-foreground: hsl(0, 0%, 98%);
  --destructive: hsl(0, 62%, 50%);
  --destructive-foreground: hsl(0, 0%, 98%);
  --border: hsl(230, 25%, 18%);
  --input: hsl(230, 25%, 18%);
  --ring: hsla(41, 88%, 60%, 0.678);
  --radius: 0.75rem;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
}

body {
  background: linear-gradient(135deg, var(--background) 0%, hsl(260, 25%, 12%) 50%, hsl(290, 25%, 8%) 100%);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Classes utilitaires */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, hsl(17, 100%, 50%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-gradient {
  background: linear-gradient(135deg, var(--card) 0%, hsl(230, 25%, 15%) 100%);
  border: 1px solid var(--border);
}

.hero-gradient {
  background: linear-gradient(135deg, var(--background) 0%, hsl(260, 25%, 12%) 50%, hsl(290, 25%, 8%) 100%);
}

/* Navigation */
.nav-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(20, 17, 25, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
}

.nav-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.discord-btn {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  display: block;
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-destructive {
  background: var(--destructive);
  color: var(--destructive-foreground);
}

.btn-full {
  width: 100%;
}

/* Section Hero */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem 0;
}

.hero-container {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  color: var(--foreground);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, hsl(19, 100%, 50%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* Sections générales */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

/* Section Packages */
.packages-section {
  padding: 5rem 1rem;
}

.packages-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.packages-grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .packages-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.package-card {
  background: linear-gradient(135deg, var(--card) 0%, hsl(230, 25%, 15%) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.package-card.premium {
  border: 2px solid var(--primary);
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.package-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.package-price {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.package-price.primary {
  background: rgba(255, 123, 0, 0.1);
  color: var(--primary);
}

.package-price.accent {
  background: rgba(255, 123, 0, 0.1);
  color: var(--accent);
}

.package-price.full {
  background: var(--primary);
  color: var(--primary-foreground);
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.package-features i {
  color: var(--primary);
}

.package-features i.accent {
  color: var(--accent);
}

.package-special {
  margin-bottom: 1.5rem;
}

.special-notice {
  background: rgba(255, 123, 0, 0.1);
  border: 1px solid rgba(255, 123, 0, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.special-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.special-subtitle {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.discord-info {
  text-align: center;
}

.discord-text {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.discord-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff0000;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
}

/* Section Shop */
.shop-section {
  padding: 5rem 1rem;
  background: rgba(30, 27, 39, 0.2);
}

.shop-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shop-card {
  background: linear-gradient(135deg, var(--card) 0%, hsl(230, 25%, 15%) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.shop-icon {
  color: var(--primary);
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

.shop-icon.accent {
  color: var(--accent);
}

.shop-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.shop-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.shop-price {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.shop-price.primary {
  color: var(--primary);
}

.shop-price.accent {
  color: var(--accent);
}

/* Section Testimonials */
.testimonials-section {
  padding: 5rem 1rem;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: linear-gradient(135deg, var(--card) 0%, hsl(230, 25%, 15%) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.testimonial-name {
  font-weight: 700;
}

.testimonial-title {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-text {
  color: var(--muted-foreground);
}

/* Section Support */
.support-section {
  padding: 5rem 1rem;
  background: rgba(30, 27, 39, 0.2);
}

.support-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.support-card {
  background: linear-gradient(135deg, var(--card) 0%, hsl(230, 25%, 15%) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.support-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.support-title i {
  color: var(--destructive);
}

.support-title.discord i {
  color: #ff0000;
}

/* Formulaires */
.support-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: var(--foreground);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  ring: 2px solid var(--ring);
}

.form-group textarea {
  resize: vertical;
  min-height: 6rem;
}

/* Support Discord */
.discord-support {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.discord-notice {
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.2);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.discord-notice-title {
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 0.75rem;
}

.discord-notice-text {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.discord-features {
  list-style: none;
}

.discord-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.discord-features i {
  color: #ff0000;
}

.discord-join-btn {
  width: 100%;
  background: #f25858;
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.125rem;
}

.discord-response-time {
  text-align: center;
}

.discord-response-time p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.discord-response-time span {
  color: var(--primary);
  font-weight: 600;
}

/* FAQ */
.faq-section {
  margin-top: 4rem;
}

.faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-card {
  background: linear-gradient(135deg, var(--card) 0%, hsl(230, 25%, 15%) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.faq-question {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 1rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  color: var(--muted-foreground);
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: var(--muted-foreground);
  text-decoration: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--secondary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--muted-foreground);
}

/* Notification */
.notification {
  position: fixed;
  top: 5rem;
  right: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  max-width: 300px;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.success {
  border-color: var(--primary);
}

.notification.error {
  border-color: var(--destructive);
}

/* Responsive */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .packages-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .shop-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.flex-ticket {
  display: flex;
  flex-direction: column;
}
.ticket-discord {
  font-size: 12px;
}