/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-800: #333333;
  --gray-900: #1a1a1a;
  --accent: #ff3366;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--white);
  background-color: var(--black);
}

.dark-theme {
  background-color: var(--black);
  color: var(--white);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}
.nav-link{
  text-decoration: none;
  color: var(--white);
}

.nav-link:hover {
  color: var(--accent);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--gray-900);
  min-width: 200px;
  border-radius: 4px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--white);
  text-decoration: none;
  transition: background 0.3s;
}

.dropdown-menu a:hover {
  background: var(--accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-icon {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 999;
  padding: 80px 4vw 2rem;
  transition: left 0.3s;
  overflow-y: auto;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu .mobile-accordion {
  margin-bottom: 1rem;
}

.mobile-menu .mobile-accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: var(--gray-900);
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}

.mobile-menu .mobile-accordion-panel {
  display: none;
  padding: 1rem;
  background: var(--gray-800);
  border-radius: 4px;
  margin-top: 5px;
}

.mobile-menu .mobile-accordion.open .mobile-accordion-panel {
  display: block;
}

.mobile-menu .mobile-accordion-panel a {
  display: block;
  padding: 0.75rem;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
/* Hero Video Fix */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: #ff1f4f;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* Products Showcase */
.products-showcase {
  padding: 8rem 0;
  position: relative;
  overflow-x: clip;
}

/* Sticky Title avec effet blur - PLEINE LARGEUR ÉCRAN */
.products-showcase .section-title {
  position: sticky;
  top: 80px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 0;
  margin: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  left: 50%;
  right: 50%;
  text-align: center;
  font-size: 3rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.products-showcase .section-subtitle {
  position: sticky;
  top: 140px;
  z-index: 9;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 15px 0 25px 0;
  margin: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  left: 50%;
  right: 50%;
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray-300);
  border-bottom: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* Ajustement pour le contenu en dessous */
.product-grid {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
/* Ajustement pour le contenu en dessous */
.product-grid {
  margin-top: 100px; /* Espace pour que le contenu commence après les titres sticky */
  position: relative;
  z-index: 1;
}

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

.product-card {
  background: var(--gray-900);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 1.5rem;
}

.product-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.product-card p {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.cta-section {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #5865F2;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.cta-btn:hover {
  background-color: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features, .features2{
  padding: 4rem 0;
  background: var(--gray-900);
  color:white;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
  color:white;
}

.feature-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 1.2rem;

}

.feature-item h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gray-300);
}

/* Tutorials Section */
.tutorials {
  padding: 8rem 0;
}

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

.video-card {
  background: var(--gray-900);
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Footer */
.footer {
  background: var(--gray-900);
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--accent);
}

.newsletter p {
  color: var(--gray-300);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 0.75rem 1rem;
  background: var(--black);
  border: 1px solid var(--gray-800);
  border-radius: 4px;
  color: var(--white);
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Product Detail Page */
.product-detail {
  padding: 120px 0 4rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-gallery {
  background: var(--gray-900);
  border-radius: 12px;
  padding: 2rem;
}

.product-gallery img {
  width: 100%;
  height: auto;
}

.product-info h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.product-description {
  color: var(--gray-300);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.product-features {
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
}

.product-features h3 {
  margin-bottom: 1rem;
}

.product-features ul {
  list-style: none;
}

.product-features ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-300);
}

.product-features ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}







.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: #5865F2;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.discord-btn:hover {
  background-color: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.discord-btn i {
  font-size: 20px;
}






.footer-grid {
  display: flex;
  justify-content: space-around; /* espace entre Brand et Socials */
  align-items: flex-start;
  gap: 4rem;
}

.footer-column {
  max-width: 400px;
}

.footer-description {
  color: var(--gray-300);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}



/* Works Grid - Version avec proportions respectées SANS vides */
.works {
  padding: 80px 0;
}

.works .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--white);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 45px;
  align-items: start; /* Important : aligne les éléments en haut */
}

.works-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--gray-900);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  width: 100%;
  height: fit-content; /* Prend la hauteur naturelle de l'image */
}

.works-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -10px rgba(88, 101, 242, 0.4);
}

.works-media {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.works-media img,
.works-media video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.works-card:hover .works-media img,
.works-card:hover .works-media video {
  transform: scale(1.03);
}

/* Vidéos en autoplay sans contrôles */
.works-media video {
  pointer-events: none;
}










.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Pour aligner les boutons Payment */
.product-card {
  background: var(--gray-900);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%; /* Prend toute la hauteur disponible */
}

.product-card .btn-outline {
  margin-top: auto; /* Pousse le bouton vers le bas */
  align-self: center; /* Centre le bouton horizontalement */
  width: fit-content; /* Ajuste la largeur au contenu */
}
/* Ajustement des images dans product-card */
.product-card img {
  width: 100%;
  height: 200px; /* Hauteur fixe pour toutes les images */
  object-fit: contain; /* Garde les proportions sans couper */
  margin-bottom: 1.5rem;
  background: var(--gray-800); /* Fond au cas où l'image est plus petite */
}

/* Ou si tu préfères qu'elles remplissent l'espace (peut couper) */
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* Remplit tout l'espace (peut couper les bords) */
  margin-bottom: 1.5rem;
  border-radius: 8px;
}







/* ============================================================
   MENU MOBILE PROFESSIONNEL - OUVERTURE DE LA DROITE
   ============================================================ */

/* Cache le menu desktop sur mobile/tablette */
@media screen and (max-width: 1024px) {
  .nav-menu {
    display: none !important;
  }
  
  .mobile-menu-btn {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 3px;
  }
  
  /* Animation du burger quand ouvert */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  /* Menu mobile overlay */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 100%; /* Commence caché à droite */
    width: 70%;
    max-width: 400px;
    right: auto;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    z-index: 1000;
    padding: 100px 30px 40px;
    transition: left 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 51, 102, 0.3);
  }
  
  .mobile-menu.open {
    left: auto;
    right: 0;
    /* S'ouvre depuis la droite */
  }
  
  /* Overlay sombre derrière le menu */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.322);
    backdrop-filter: blur(1px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Style des éléments du menu mobile */
  .mobile-menu .nav-item {
    margin-bottom: 5px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
    transition-delay: calc(0.1s * var(--item-index, 0));
  }
  
  .mobile-menu.open .nav-item {
    opacity: 1;
    transform: translateX(0);
  }
  
  .mobile-menu .nav-link {
    display: block;
    padding: 18px 20px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
  }
  
  .mobile-menu .nav-link:hover,
  .mobile-menu .nav-link:active {
    background: rgba(255, 51, 102, 0.15);
    border-color: var(--accent);
    transform: translateX(5px);
  }
  
  /* Bouton Discord dans le menu mobile */
  .mobile-menu .discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #5865F2;
    color: white;
    padding: 18px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 20px 0 10px;
    border: none;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
  }
  
  .mobile-menu .discord-btn:active {
    transform: scale(0.95);
    background: #4752C4;
  }
  .cta-btn a{
    text-align: center;
  }
  
  /* En-tête du menu mobile avec logo */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mobile-menu-logo {
    height: 50px;
    width: auto;
  }
  
  .mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .mobile-menu-close:active {
    background: var(--accent);
    transform: rotate(90deg);
  }
}

/* ============================================================
   OPTIMISATION DES IMAGES POUR MOBILE
   ============================================================ */

@media screen and (max-width: 768px) {
  /* Products cards */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .product-card {
    padding: 20px;
    border-radius: 20px;
    background: #111;
  }
  
  .product-card img {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Works grid */
  .works-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }
  
  .works-media img,
  .works-media video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  
  /* Features */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  
  /* Hero section mobile */
  .hero {
    height: 60vh;
  }
  
  /* Section titles */
  .section-title {
    font-size: 2rem !important;
    padding: 0 20px;
    text-align: center;
  }
  
  .section-subtitle {
    font-size: 1rem !important;
    padding: 0 20px;
    text-align: center;
  }
  
  /* CTA buttons */
  .cta-section {
    flex-direction: column;
    padding: 0 20px;
    gap: 15px;
  }
  .cta-btn a{
    text-align: center;
  }
  .cta-btn,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 16px !important;
    border-radius: 50px !important;
    font-size: 1.1rem !important;
  }
  
  /* Video section */
  .video-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 20px;
  }
  
  .video-card {
    border-radius: 20px;
    overflow: hidden;
  }
  
  /* Footer */
  .footer {
    padding: 40px 20px;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .footer-column ul li {
    margin-bottom: 15px;
  }
  
  .footer-column ul li a {
    font-size: 1.1rem;
    padding: 8px 0;
    display: inline-block;
  }
  
  .footer-description {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* Petits iPhone (SE, etc) */
@media screen and (max-width: 375px) {
  .product-card img {
    max-width: 200px;
  }
  .cta-btn a{
    text-align: center;
  }
  
  .section-title {
    font-size: 1.8rem !important;
  }
  
  .feature-item {
    padding: 25px 15px;
  }
  
  .mobile-menu {
    width: 90%;
    padding: 80px 20px 30px;
  }
}

/* Support iPhone X et + (safe areas) */
@supports (padding: max(0px)) {
  .mobile-menu {
    padding-top: max(100px, env(safe-area-inset-top));
    padding-bottom: max(40px, env(safe-area-inset-bottom));
    padding-right: max(30px, env(safe-area-inset-right));
  }
  .cta-btn a{
    text-align: center;
  }
  .navbar {
    padding-left: max(4vw, env(safe-area-inset-left));
    padding-right: max(4vw, env(safe-area-inset-right));
  }
}
/* BOUTON DE FERMETURE - Version plus belle à droite */
.mobile-menu .close-btn {
  position: absolute;
  top: 30px;
  right: 30px;  /* Changé de left à right */
  width: 40px;
  height: 40px;
  background: rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0);
  border-radius: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 32px;
  font-weight: 300;
  transition: all 0.3s ease;
  z-index: 1002;
  backdrop-filter: blur(5px);
  line-height: 1;
  padding: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-btn {
    display: block;
    align-items: center;
    gap: 5px;
    background-color: #5865F2;
    color: white;
    padding: 15px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}