:root {
  --primary-color: #6c5ce7;
  --primary-dark: #5649c0;
  --secondary-color: #00cec9;
  --accent-color: #fd79a8;
  --dark-bg: #0f0f1a;
  --card-bg: #1a1a2e;
  --text-color: #f8f9fa;
  --text-muted: #b8b8d9;
  --border-radius: 16px;
  --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  --gradient: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
  padding-top: 0;
}

header {
  background: rgba(15, 15, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 36px;
  margin-right: 12px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: var(--border-radius);
}

.nav-link:hover {
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.05);
}

.discord-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.discord-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--card-bg);
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  padding: 10px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.15) 0%, rgba(15, 15, 26, 0) 70%);
  z-index: 1;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--gradient);
  color: white;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.5);
}

section {
  padding: 80px 5%;
  position: relative;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.box {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.box:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
  border-color: rgba(108, 92, 231, 0.3);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.service-card.premium {
  border: 1px solid rgba(253, 121, 168, 0.3);
}

.service-card.premium:hover {
  border-color: var(--accent-color);
}

.service-card.deluxe {
  border: 1px solid rgba(0, 206, 201, 0.3);
}

.service-card.deluxe:hover {
  border-color: var(--secondary-color);
}

.card-header {
  padding: 30px 30px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-body {
  padding: 25px 30px;
  flex-grow: 1;
}

.card-body p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.features {
  list-style: none;
  margin-top: 20px;
}

.features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features i {
  color: var(--secondary-color);
}

.card-footer {
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 25px;
  background: var(--primary-color);
  color: white;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.service-btn i {
  font-size: 1.2rem;
}

.service-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.premium .service-btn {
  background: var(--accent-color);
}

.premium .service-btn:hover {
  background: #e84393;
}

.deluxe .service-btn {
  background: var(--secondary-color);
}

.deluxe .service-btn:hover {
  background: #00a8a5;
}

.top-services {
  margin-bottom: 50px;
}

.bottom-services {
  margin-top: 30px;
}

footer {
  background: var(--card-bg);
  padding: 40px 5% 25px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  text-align: left;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-info {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: right;
}

.lnk {
  color: var(--secondary-color);
  text-decoration: none;
  display: inline-block;
  margin: 5px 0 15px;
  transition: color 0.3s ease;
}

.lnk:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.tuto {
  height: 300px;
}
.tuto2 {
  height: 500px;
}
.steps {
  font-size:18px;
  padding:0px;
  margin-top: 100px;
  font-weight: bold;
}
.steps a, .steps img {
  display: block;
}
@media (max-width: 768px) {
  footer {
    padding: 20px 5% 15px;
  }
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .discord-btn {
    display: none;
  }
  
  .mobile-menu .discord-btn {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
  .tuto {
    width: 300px;
    height: 150px
  }
  .tuto2 {
    width: 300px;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .cta-button {
    padding: 12px 24px;
  }
  
  .discord-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}