/* Base */
:root {
    --background: #0a0a0a;
    --foreground: #f8f8f8;
    --card: #0a0a0a;
    --card-foreground: #f8f8f8;
    --popover: #0a0a0a;
    --popover-foreground: #f8f8f8;
    --primary: #aaff00;
    --primary-foreground: #1a2e05;
    --secondary: #1a1a1a;
    --secondary-foreground: #f8f8f8;
    --muted: #1a1a1a;
    --muted-foreground: #a6a6a6;
    --accent: #1a1a1a;
    --accent-foreground: #f8f8f8;
    --destructive: #991b1b;
    --destructive-foreground: #f8f8f8;
    --border: #1a1a1a;
    --input: #1a1a1a;
    --ring: #aaff00;
    --radius: 0.5rem;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Inter", sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /* Typography */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 700;
    line-height: 1.2;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .section-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    max-width: 1200;
  }
  
  @media (min-width: 768px) {
    .hero-title {
      font-size: 3.5rem;
    }
  
    .section-title {
      font-size: 2.5rem;
    }
  }
  
  /* Layout */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .site-container {
    position: relative;
    z-index: 10;
  }
  
  /* Background */
  .background-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  
  .background-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, #0a0a0a 0%, #050505 100%);
  }
  
  .background-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiMyMjIiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDM0aDR2MWgtNHYtMXptMC0yaDF2NGgtMXYtNHptMi0yaDF2MWgtMXYtMXptLTIgMmgxdjFoLTF2LTF6bS0yLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0tMiAyaDF2MWgtMXYtMXptLTIgMGgxdjFoLTF2LTF6bS0yIDBoMXYxaC0xdi0xem0tMiAwaDF2MWgtMXYtMXptLTIgMGgxdjFoLTF2LTF6bS0yIDBoMXYxaC0xdi0xem0tMiAwaDF2MWgtMXYtMXptLTIgMGgxdjFoLTF2LTF6bS0yIDBoMXYxaC0xdi0xem0tMiAwaDF2MWgtMXYtMXptLTIgMGgxdjFoLTF2LTF6bS0yIDBoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xeiIvPjwvZz48L2c+PC9zdmc+");
    opacity: 0.3;
  }
  
  .background-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  }
  
  .background-image {
    position: absolute;
    width: 40vw;
    height: 40vh;
    overflow: hidden;
    opacity: 0.6;
    transition: all 1s ease-out;
  }
  
  .background-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .background-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to center, transparent, #050505);
    opacity: 1;
  }
  
  .background-image .image-glow {
    position: absolute;
    inset: 0;
    background-color: rgba(170, 255, 0, 0.05);
    border-radius: 50%;
    filter: blur(2rem);
  }
  
  .top-left {
    left: 0;
    top: 0;
    transform: translate(-20px, -20px);
  }
  
  .top-right {
    right: 0;
    top: 0;
    transform: translate(20px, -20px);
  }
  
  .bottom-left {
    left: 0;
    bottom: 0;
    transform: translate(-20px, 20px);
  }
  
  .bottom-right {
    right: 0;
    bottom: 0;
    transform: translate(20px, 20px);
  }
  
  .particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  
  /* Header */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid var(--border);
    background-color: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
  }
  
  .site-header .container {
    display: flex;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
  }
  
  .header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .header-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .header-logo img {
    border-radius: 0.375rem;
  }
  
  .header-logo span {
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .header-nav {
    display: none;
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--primary);
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .btn-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.375rem;
    background-color: transparent;
    border: none;
    color: var(--foreground);
    cursor: pointer;
  }
  
  .btn-menu:hover {
    background-color: var(--accent);
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  
  @media (min-width: 768px) {
    .header-nav {
      display: flex;
    }
  
    .btn-menu {
      display: none;
    }
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
  }
  
  .btn-sm {
    height: 2.25rem;
    padding: 0 0.75rem;
    font-size: 0.75rem;
  }
  
  .btn-lg {
    height: 2.75rem;
    padding: 0 2rem;
    font-size: 1rem;
  }
  
  .btn-block {
    width: 100%;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary:hover {
    background-color: rgba(170, 255, 0, 0.9);
    box-shadow: 0 0 15px rgba(170, 255, 0, 0.7);
  }
  
  .btn-primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(170, 255, 0, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .btn-primary:hover::after {
    opacity: 1;
    animation: pulse 2s infinite;
  }
  
  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
  }
  
  .btn-outline:hover {
    background-color: var(--accent);
  }
  
  .btn-outline.active {
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .icon-left {
    margin-right: 0.5rem;
    width: 1rem;
    height: 1rem;
  }
  
  .icon-right {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
  }
  
  .icon-small {
    width: 1rem;
    height: 1rem;
  }
  
  .icon-medium {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .icon-check {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
  }
  
  .icon-chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
  }
  
  /* Badge */
  .badge {
    display: inline-block;
    border-radius: 0.375rem;
    background-color: rgba(170, 255, 0, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
  }
  
  /* Content Container */
  .content-container {
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .player-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    animation: pulse 2s infinite;
  }
  
  .stat-divider {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background-color: var(--muted-foreground);
  }
  
  .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
  }
  
  .image-container img {
    position: relative;
    z-index: 1;
    object-fit: contain;
  }
  
  .image-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgba(170, 255, 0, 0.1);
    filter: blur(2rem);
    z-index: 0;
  }
  
  .dofus-element {
    position: absolute;
    color: var(--primary);
    opacity: 0.1;
    z-index: -1;
  }
  
  .dofus-element.top-left {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    transform: rotate(15deg);
  }
  
  .dofus-element.bottom-right {
    bottom: 10%;
    right: 5%;
    width: 80px;
    height: 80px;
    transform: rotate(-10deg);
  }
  
  @media (min-width: 768px) {
    .hero-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .hero-actions {
      flex-direction: row;
    }
  }
  
  /* Features Section */
  .features-section {
    padding: 5rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .feature-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .feature-icon {
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-description {
    color: var(--muted-foreground);
  }
  
  .feature-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary);
    transition: width 0.3s;
  }
  
  .feature-card:hover .feature-highlight {
    width: 100%;
  }
  
  /* Statistics Section */
  .statistics-section {
    padding: 5rem 0;
    background-color: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(5px);
  }
  
  .statistics-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .stat-card {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(170, 255, 0, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(170, 255, 0, 0.3);
    border-color: rgba(170, 255, 0, 0.5);
  }
  
  .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 5px rgba(170, 255, 0, 0.5);
  }
  
  .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .stat-note {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
  }
  
  .statistics-chart {
    margin-top: 2rem;
  }
  
  .chart-container {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .chart-title {
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .chart-badge {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
  }
  
  .chart-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .chart-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .chart-legend {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--muted-foreground);
  }
  
  .legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .legend-color {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
  }
  
  .legend-color.primary {
    background-color: var(--primary);
  }
  
  .legend-color.lime {
    background-color: #a3e635;
  }
  
  @media (min-width: 768px) {
    .statistics-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* Discord Section */
  .discord-section {
    padding: 5rem 0;
  }
  
  .discord-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(170, 255, 0, 0.3);
    padding: 2rem;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  }
  
  .discord-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(170, 255, 0, 0.05)' fill-rule='evenodd'/%3E%3C/svg%3E"),
      linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: -1;
  }
  
  .discord-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .discord-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #aaff00 0%, #88cc00 100%);
    color: #1a2e05;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s infinite, float-subtle 6s ease-in-out infinite;
  }
  
  .btn-discord::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
  }
  
  .btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px 5px rgba(170, 255, 0, 0.7);
  }
  
  .btn-discord:hover::before {
    animation: shine 1.5s infinite;
  }
  
  .dofus-icon {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
  }
  
  .dofus-icon-1 {
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    transform: rotate(15deg);
  }
  
  .dofus-icon-2 {
    bottom: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    transform: rotate(-10deg);
  }
  
  @media (min-width: 768px) {
    .discord-grid {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  }
  
  /* Footer */
  .site-footer {
    border-top: 1px solid var(--border);
    background-color: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
    padding: 2rem 0;
  }
  
  .footer-grid {
    display: grid;
    gap: 2rem;
  }
  
  .footer-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-logo img {
    border-radius: 0.375rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    color: var(--muted-foreground);
    transition: color 0.2s;
  }
  
  .social-link:hover {
    color: var(--foreground);
  }
  
  .footer-links h3,
  .footer-resources h3,
  .footer-newsletter h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .footer-links ul,
  .footer-resources ul {
    list-style: none;
  }
  
  .footer-links li,
  .footer-resources li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a,
  .footer-resources a {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: color 0.2s;
  }
  
  .footer-links a:hover,
  .footer-resources a:hover {
    color: var(--foreground);
  }
  
  .newsletter-form {
    margin-top: 1rem;
  }
  
  .form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .form-input {
    flex: 1;
    height: 2.25rem;
    border-radius: 0.375rem;
    border: 1px solid var(--border);
    background-color: var(--input);
    color: var(--foreground);
    padding: 0 0.75rem;
    font-size: 0.875rem;
  }
  
  .form-note {
    font-size: 0.75rem;
    color: var(--muted-foreground);
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  
  .copyright {
    font-size: 0.75rem;
    color: var(--muted-foreground);
  }
  
  .footer-legal {
    display: flex;
    gap: 1rem;
  }
  
  .footer-legal a {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    transition: color 0.2s;
  }
  
  .footer-legal a:hover {
    color: var(--foreground);
  }
  
  .footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    .footer-simple {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }
  }
  
  /* Download Page */
  .download-section {
    padding: 3rem 0;
  }
  
  .text-center {
    text-align: center;
  }
  
  .download-grid {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .launcher-image {
    order: 2;
  }
  
  .download-options {
    order: 1;
  }
  
  .image-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
  }
  
  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .image-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--background) 0%, transparent 100%);
  }
  
  .image-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
  
  .image-caption {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .tabs {
    margin-top: 1.5rem;
  }
  
  .tabs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    background-color: var(--muted);
    padding: 0.25rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
  }
  
  .tab-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    background-color: transparent;
    border: none;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .tab-trigger.active {
    background-color: var(--background);
    color: var(--foreground);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .download-card {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: var(--card);
  }
  
  .download-card-header {
    padding: 1.5rem 1.5rem 0;
  }
  
  .download-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
  
  .download-card-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .download-card-content {
    padding: 1.5rem;
  }
  
  .download-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
  }
  
  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .download-card-footer {
    padding: 0 1.5rem 1.5rem;
  }
  
  .hash-info {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
  }
  
  .hash-value {
    font-family: monospace;
    font-size: 0.7rem;
  }
  
  .how-to-start {
    margin: 3rem 0;
  }
  
  .steps-grid {
    display: grid;
    gap: 2rem;
    margin-top: 1.5rem;
  }
  
  .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(170, 255, 0, 0.1);
    color: var(--primary);
    margin-bottom: 0.75rem;
  }
  
  .step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .step-description {
    color: var(--muted-foreground);
    max-width: 300px;
  }
  
  .info-grid {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .section-header-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .requirements-grid {
    display: grid;
    gap: 2rem;
    margin-top: 1.5rem;
  }
  
  .requirements-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .requirements-list {
    list-style-position: inside;
    color: var(--muted-foreground);
    font-size: 0.875rem;
  }
  
  .requirements-list li {
    margin-bottom: 0.5rem;
  }
  
  .accordion-item {
    border-bottom: 1px solid var(--border);
  }
  
  .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    background-color: transparent;
    border: none;
    color: var(--foreground);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
  }
  
  .accordion-header .icon-chevron {
    transition: transform 0.3s;
  }
  
  .accordion-header[aria-expanded="true"] .icon-chevron {
    transform: rotate(180deg);
  }
  
  .accordion-content {
    display: none;
    padding: 0 0 1rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
  }
  
  .accordion-content.active {
    display: block;
  }
  
  .security-section {
    margin: 3rem 0;
  }
  
  .security-features {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .security-feature {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1rem;
  }
  
  .feature-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .cta-section {
    text-align: center;
    margin: 4rem 0;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  /* Auth Pages */
  .auth-section {
    min-height: calc(100vh - 4rem - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
  }
  
  .auth-container {
    width: 100%;
    max-width: 28rem;
    padding: 1.5rem;
    margin: 0 auto;
  }
  
  .auth-card {
    position: relative;
    background-color: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .auth-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .auth-logo {
    margin-bottom: 0.5rem;
  }
  
  .auth-logo img {
    border-radius: 0.375rem;
  }
  
  .auth-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .auth-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
  }
  
  .auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-label {
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .form-label-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .form-link {
    font-size: 0.75rem;
    color: var(--primary);
  }
  
  .form-link:hover {
    text-decoration: underline;
  }
  
  .form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .checkbox {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    border: 1px solid var(--border);
    background-color: var(--input);
    appearance: none;
    cursor: pointer;
  }
  
  .checkbox:checked {
    background-color: var(--primary);
    border-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a2e05'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  }
  
  .checkbox-label {
    font-size: 0.875rem;
  }
  
  .auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
  }
  
  .auth-link {
    color: var(--primary);
  }
  
  .auth-link:hover {
    text-decoration: underline;
  }
  
  .auth-divider {
    position: relative;
    margin: 1.5rem 0;
    text-align: center;
  }
  
  .auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border);
  }
  
  .auth-divider span {
    position: relative;
    padding: 0 0.5rem;
    background-color: var(--card);
    color: var(--muted-foreground);
    font-size: 0.75rem;
  }
  
  .social-auth {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  @media (min-width: 768px) {
    .download-grid {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  
    .launcher-image {
      order: 1;
    }
  
    .download-options {
      order: 2;
    }
  
    .steps-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .info-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .requirements-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .security-features {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .cta-buttons {
      flex-direction: row;
    }
  }
  
  /* Styles pour la boutique et la bannière promotionnelle */
.shop-container {
  display: flex;
  flex-direction: column;
}

.shop-footer {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  margin-top: 10px;
}

.promo-banner {
  display: flex;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
  border: 1px solid rgba(200, 255, 0, 0.3);
  border-radius: 8px;
  margin: 10px 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(200, 255, 0, 0.1);
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNjOGZmMDAiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDM0aDR2MWgtNHYtMXptMC0yaDF2NGgtMXYtNHptMi0yaDF2MWgtMXYtMXptLTIgMmgxdjFoLTF2LTF6bS0yLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0tMiAyaDF2MWgtMXYtMXptLTIgMGgxdjFoLTF2LTF6bS0yIDBoMXYxaC0xdi0xem0tMiAwaDF2MWgtMXYtMXptLTIgMGgxdjFoLTF2LTF6bS0yIDBoMXYxaC0xdi0xem0tMiAwaDF2MWgtMXYtMXptLTIgMGgxdjFoLTF2LTF6bS0yIDBoMXYxaC0xdi0xem0tMiAwaDF2MWgtMXYtMXptLTIgMGgxdjFoLTF2LTF6bS0yIDBoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xem0wLTJoMXYxaC0xdi0xem0yLTJoMXYxaC0xdi0xeiIvPjwvZz48L2c+PC9zdmc+");
  opacity: 0.1;
  z-index: 0;
}

.promo-content {
  flex: 1;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.promo-badge {
  display: inline-block;
  background-color: #c8ff00;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
}

.promo-description {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 15px;
}

.promo-price {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #c8ff00;
  margin-right: 15px;
}

.countdown {
  font-size: 14px;
  color: #ff6b6b;
  background-color: rgba(255, 107, 107, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.countdown span {
  font-weight: 700;
}

.promo-button {
  background-color: #c8ff00;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.promo-button:hover {
  background-color: #d9ff4d;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(200, 255, 0, 0.3);
}

.promo-image {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.promo-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(200, 255, 0, 0.3));
}

.promo-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(200, 255, 0, 0.2) 0%, transparent 70%);
  z-index: 1;
}

/* Animation de pulsation pour attirer l'attention */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(200, 255, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 255, 0, 0);
  }
}

.promo-banner {
  animation: pulse 2s infinite;
}

/* Styles pour le compte à rebours urgent */
.countdown.urgent {
  color: #ff3a3a;
  background-color: rgba(255, 58, 58, 0.15);
  border-color: rgba(255, 58, 58, 0.4);
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 58, 58, 0.4);
  }
  70% {
    box-shadow: 0 0 0 5px rgba(255, 58, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 58, 58, 0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .promo-banner {
    flex-direction: column;
  }

  .promo-image {
    width: 100%;
    height: 120px;
    order: -1;
  }

  .promo-content {
    text-align: center;
  }

  .promo-price {
    justify-content: center;
  }
}

/* Ajouter ces styles pour les onglets de téléchargement s'ils n'existent pas déjà */
.tabs-list {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: rgba(20, 20, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-trigger:hover {
  background-color: rgba(30, 30, 30, 0.9);
  border-color: rgba(200, 255, 0, 0.3);
}

.tab-trigger.active {
  background-color: rgba(200, 255, 0, 0.1);
  border-color: rgba(200, 255, 0, 0.5);
  color: #c8ff00;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Styles pour l'accordéon - CORRIGÉS */
.accordion-item {
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: rgba(20, 20, 20, 0.7);
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: left;
  border: none;
}

.accordion-header:hover {
  background-color: rgba(30, 30, 30, 0.9);
}

.accordion-header.active {
  background-color: rgba(200, 255, 0, 0.1);
  color: #c8ff00;
}

.accordion-header .icon-chevron {
  transition: transform 0.3s ease;
}

.accordion-header.active .icon-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(15, 15, 15, 0.7);
}

.accordion-content p {
  padding: 15px;
  margin: 0;
  color: #aaaaaa;
}

/* Assurez-vous que le contenu de l'accordéon est visible lorsqu'il est actif */
.accordion-header.active + .accordion-content {
  max-height: 1000px; /* Une valeur suffisamment grande pour contenir tout le contenu */
}
