/**
 * CYBERPUNK 2077 THEME - COMPLETE OVERRIDE
 * This will transform the entire PrestaShop into a cyberpunk theme
 */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
pre code {
    color: #ff0000 !important;
    font-size: 18px !important;
}
.cyber-blog .blog-ia-article-image {
    height: 60px!important;
    background: linear-gradient(135deg, #bd00ff 0%, #00f5ff 100%);
    position: relative;
    margin: -10px -10px 10px 0px!important;
    overflow: hidden;
}
article.alert.alert-warning {
    color: #93ff71!important;
}
.page-addresses .address {
    color: #88e8ff!important;
    background: none!important;
}
blog-ia-article-content ul, .blog-ia-article-content ol {
    color: #ffd600!important;
    font-size: 18px!important;
}
section:has(.breadcrumb), div:has(.breadcrumb) {
    top: 50px;
}
section#wrapper {
    padding-top: unset!important;
}
side#notifications {
    margin-top: unset!important;
}
body #notifications {
    margin-top: unset;
}
header#header {
    top: -50px!important;
}
.category-description.matrix-text p,
.category-description.matrix-text span{
	    background-color: #ffffff00!important;
}
.product-price {
    margin-bottom: -5px!important;
}
article.product-miniature.js-product-miniature {
    height: 200px !important;
}
#footer {
    padding-top: unset !important;
}
.image-title-overlay {
    top: -10px!important;
}
  /* Effet K.I.T.T. pour le breadcrumb */
  .breadcrumb {
      background: #000;
      padding: 15px 20px;
      border-radius: 5px;
      overflow: hidden;
      position: relative;
  }

  .breadcrumb ol {
      position: relative;
      z-index: 2;
  }

  .breadcrumb li,
  .breadcrumb a,
  .breadcrumb span {
      color: #fff !important;
      text-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
  }



  /* Effet de pulsation sur les liens au passage du scanner */
  .breadcrumb a {
      transition: all 0.3s ease;
  }

  .breadcrumb:hover a {
      animation: pulse-red 1s ease-in-out infinite;
  }

  @keyframes pulse-red {
      0%, 100% {
          text-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
      }
      50% {
          text-shadow:
              0 0 10px rgba(255, 0, 0, 1),
              0 0 20px rgba(255, 0, 0, 0.8),
              0 0 30px rgba(255, 0, 0, 0.6);
      }
  }

  /* Séparateurs style K.I.T.T. */
  .breadcrumb li:not(:last-child)::after {
      content: ' >';
      color: #ff0000;
      margin: 0 10px;
      font-weight: bold;
      text-shadow: 0 0 5px rgba(255, 0, 0, 1);
  }







 /* Breadcrumb style de base */
  .breadcrumb {
      background: #000;
      padding: 15px 20px;
      border-radius: 5px;
  }

  .breadcrumb ol {
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
  }

  .breadcrumb li {
      position: relative;
      overflow: hidden;
  }

  .breadcrumb li,
  .breadcrumb a,
  .breadcrumb span {
      color: #fff !important;
  }

  /* L'effet scanner K.I.T.T. sur chaque élément li */
  .breadcrumb li::before {
      content: '';
      position: absolute;
      top: 0;
      left: -50%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
          90deg,
          transparent 0%,
          transparent 60%,
          rgba(255, 0, 0, 0.1) 70%,
          rgba(255, 0, 0, 0.3) 80%,
          rgba(255, 0, 0, 0.6) 90%,
          rgba(255, 0, 0, 0.8) 95%,
          rgba(255, 0, 0, 1) 100%
      );
      animation: kitt-text-scanner 3s ease-in-out infinite;
      animation-delay: calc(var(--item-index) * 0.2s);
      mix-blend-mode: screen;
  }

  /* Animation avec délai pour chaque élément */
  .breadcrumb li:nth-child(1) { --item-index: 0; }
  .breadcrumb li:nth-child(2) { --item-index: 1; }
  .breadcrumb li:nth-child(3) { --item-index: 2; }
  .breadcrumb li:nth-child(4) { --item-index: 3; }

  @keyframes kitt-text-scanner {
      0% {
          left: -50%;
          transform: scaleX(1);
      }
      45% {
          left: 100%;
          transform: scaleX(1);
      }
      50% {
          left: 100%;
          transform: scaleX(-1);
      }
      95% {
          left: -50%;
          transform: scaleX(-1);
      }
      100% {
          left: -50%;
          transform: scaleX(1);
      }
  }

  /* Effet de lueur sur le texte quand le scanner passe */
  .breadcrumb a,
  .breadcrumb span {
      display: inline-block;
      transition: all 0.3s ease;
      position: relative;
  }

  /* Version alternative : scanner uniquement sous le texte */
  .breadcrumb.kitt-underline li a::after,
  .breadcrumb.kitt-underline li span::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: -30%;
      width: 30%;
      height: 3px;
      background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(255, 0, 0, 0.2) 50%,
          rgba(255, 0, 0, 0.5) 70%,
          rgba(255, 0, 0, 0.8) 85%,
          rgba(255, 0, 0, 1) 100%
      );
      box-shadow:
          0 0 5px rgba(255, 0, 0, 0.8),
          0 0 10px rgba(255, 0, 0, 0.6);
      animation: kitt-underline-scan 3s ease-in-out infinite;
      animation-delay: calc(var(--item-index) * 0.3s);
  }

 @keyframes kitt-underline-scan {
      0% {
          left: -30%;
          transform: scaleX(1);
      }
      45% {
          left: 100%;
          transform: scaleX(1);
      }
      50% {
          left: 100%;
          transform: scaleX(-1);
      }
      95% {
          left: -30%;
          transform: scaleX(-1);
      }
      100% {
          left: -30%;
          transform: scaleX(1);
      }
  }

  /* Séparateurs */
  .breadcrumb li:not(:last-child)::after {
      content: ' > ';
      color: #ff0000;
      margin: 0 10px;
      font-weight: bold;
  }




a.nav-link {
    color: #07a923 !important;
    text-shadow: 0 0 9px #1cdb30 !important;
}
span.value {
    color: #05efef!important;
}
span.label {
    color: #05efef!important;
}
span.block-title {
    color: #f1f985 !important;
    font-weight: 500;
	margin-left: 40px !important;
}
.blockreassurance_product .item-product {
    display: inline-block;
    height: 35px;
    float: left;
    /* margin-right: 5px; */
    padding-top: 5px;
    width: 0!important;
}
.blockreassurance_product p {
	color: #f4f7c8 !important;
}
#checkout #wrapper #opc_main #opc_content #opc_steps {
    background-color: unset!important;
}

#checkout #wrapper #opc_main #opc_step_my_account #opc_step_my_account_content .tabs-view .nav-tabs .nav-link
Specificity: (5,3,0)
 {
    border-bottom: 2px solid var(--neon-purple)!important;
}
label, .label {
    color: #abecf7!important;
}
#checkout #wrapper #opc_main #opc_step_payment #opc_step_payment_content #payment_method_container .module_payment_container .payment-option .payment_content span {
    color: #71c4fb!important;
}

span.text-uppercase {
    color: black!important;
}
#order-items table tr.total-value {
    background-color: #ffb822!important;
    color: black!important;
}
.definition-list dl dd, .definition-list dl dt {
    background: #764e01!important;
}
.definition-list dl dd:nth-of-type(even), .definition-list dl dt:nth-of-type(even) {
    background: #ff2fbd!important;
}
.block-categories {
    background: #ffffff00!important;
}
#search_filters, #search_filters_brands, #search_filters_suppliers {
    background: #ffffff00!important;
}
/* Cibler tous les éléments enfants directs */
.product-information > * {
  background: #ffffff00!important;
}
/* Cibler des éléments spécifiques à l'intérieur */
.product-information p {
  background: #ffffff00!important;
      margin-left: 40px!important;
}
.product-prices .tax-shipping-delivery-label {
    color: #ffa7a7!important;
}
.product-subscribe-form.card.card-block input,
.product-subscribe-form.card.card-block div,
.product-subscribe-form.card.card-block span {
	color: #41f3ab!important;
}
.social-sharing span {
	    color: #d1ff21!important;
}
a.nav-link.active.js-product-nav-active {
    background: #1893ff14!important;
    color: #fafaff !important;
}
blog-ia-block {
    background-color: #8a2be200!important;
}
.blog-ia-block.blog-ia-block-grid {
    background: #f0ffff00!important;
}
.blog-ia-block-grid .blog-ia-block-article-inner {
    background-color: #d5f59e00!important;
    height: 220px!important;
    border: 1px solid #9af3c9!important;
}
.blog-ia-block-grid .blog-ia-block-article-inner div,
.blog-ia-block-grid .blog-ia-block-article-inner span,
.blog-ia-block-grid .blog-ia-block-article-inner h5 {
color: #fafaff !important;
}
.clearfix input {
	color: #41f3ab!important;
}
.product-add-to-cart.js-product-add-to-cart span{
	    color: #4da8eb!important;
}
.video_desc h3 {
	color: #4da8eb!important;
}

/* ROOT VARIABLES */
:root {
    /* Colors */
    --cyber-black: #0a0a0a;
    --cyber-dark: #1a1a1a;
    --cyber-dark-blue: #0f1419;
    --cyber-neon-pink: #ff006e;
    --cyber-neon-blue: #00f5ff;
    --cyber-neon-yellow: #ffff00;
    --cyber-neon-green: #00ff00;
    --cyber-neon-purple: #bd00ff;
    --cyber-neon-orange: #ff8800;
    --cyber-red: #ff0040;
    --cyber-white: #ffffff;
    --cyber-gray: #666666;
    
    /* Gradients */
    --cyber-gradient-1: linear-gradient(45deg, #ff006e, #8338ec);
    --cyber-gradient-2: linear-gradient(45deg, #00f5ff, #00ff88);
    --cyber-gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* Fonts */
    --cyber-font-primary: 'Orbitron', sans-serif;
    --cyber-font-secondary: 'Rajdhani', sans-serif;
}

/* RESET EVERYTHING */
* {
    transition: all 0.3s ease;
}

/* BODY & BACKGROUND */
body {
    background: var(--cyber-black) !important;
    color: var(--cyber-white) !important;
    font-family: var(--cyber-font-secondary) !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    position: relative;
    overflow-x: hidden;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(189, 0, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* HEADER */
#header {
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(26,26,26,0.9) 100%) !important;
    border-bottom: 2px solid var(--cyber-neon-blue) !important;
    box-shadow: 0 5px 30px rgba(0, 245, 255, 0.5) !important;
}

.header-nav {
    background: var(--cyber-dark) !important;
    border-bottom: 1px solid var(--cyber-neon-pink) !important;
}

/* LOGO */
#_desktop_logo img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--cyber-neon-blue));
}

/* NAVIGATION */
#top-menu {
    background: transparent !important;
}

#top-menu > li > a {
    color: var(--cyber-white) !important;
    font-family: var(--cyber-font-primary) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    position: relative;
    padding: 15px 20px !important;
}

#top-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cyber-neon-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#top-menu > li > a:hover::before,
#top-menu > li.current > a::before {
    width: 80%;
    box-shadow: 0 0 10px var(--cyber-neon-blue);
}

#top-menu > li > a:hover {
    color: var(--cyber-neon-blue) !important;
    text-shadow: 0 0 10px var(--cyber-neon-blue) !important;
}

/* SEARCH BAR */
.search-widget form {
    background: var(--cyber-dark) !important;
    border: 2px solid var(--cyber-neon-purple) !important;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.5);
}

.search-widget form input[type="text"] {
    background: transparent !important;
    color: var(--cyber-white) !important;
    border: none !important;
    font-family: var(--cyber-font-secondary) !important;
}

.search-widget form button {
    background: var(--cyber-neon-purple) !important;
    border: none !important;
    color: var(--cyber-white) !important;
}

/* PRODUCTS GRID */
.products {
    display: grid !important;
    gap: 30px !important;
}

.product-miniature {
    background: linear-gradient(145deg, rgba(26,26,26,0.9), rgba(10,10,10,0.9)) !important;
    border: 2px solid transparent !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    transform: translateY(0);
    transition: all 0.3s ease !important;
}

.product-miniature::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--cyber-gradient-2);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-miniature:hover {
    transform: translateY(-10px) !important;
    border-color: var(--cyber-neon-blue) !important;
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4) !important;
}

.product-miniature:hover::before {
    opacity: 1;
}

/* Product Title */
.h3.product-title {
    font-family: var(--cyber-font-primary) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}

.h3.product-title a {
    color: var(--cyber-white) !important;
    text-decoration: none !important;
}

.h3.product-title a:hover {
    color: var(--cyber-neon-blue) !important;
    text-shadow: 0 0 5px var(--cyber-neon-blue) !important;
}

/* Product Price */
.product-price-and-shipping {
    margin-top: 10px !important;
}

.price {
    color: var(--cyber-neon-green) !important;
    font-family: var(--cyber-font-primary) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px var(--cyber-neon-green) !important;
}

#checkout #wrapper #opc_main #opc_cart #cart_body .cart-summary-products #cart-summary-product-list .media-list .media .media-product-detail .product-name {
    color: #ccc;
}
span.br {
    color: aquamarine!important;
}
.message {
    color: aquamarine!important;
}
div#expressCheckoutButtonListContent {
color: aquamarine!important;
}
button.btn.btn-link {
    /* margin: 10px; */
    padding: 10px!important;
    padding-right: 20px!important;
    padding-left: 20px!important;
}
p#go_to_register {
    color: #056c04;
    /* font-size: 19px; */
    font-weight: 600;
}
/* BUTTONS */
.btn {
    background: linear-gradient(45deg, var(--cyber-neon-pink), var(--cyber-neon-purple)) !important;
    border: none !important;
    color: var(--cyber-white) !important;
    font-family: var(--cyber-font-primary) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    /* padding: 12px 30px !important; */
    position: relative !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 30%, 100% 100%, 10px 100%, 0 70%);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    box-shadow: 0 5px 30px rgba(255, 0, 110, 0.6) !important;
    transform: translateY(-2px) !important;
}

.btn-primary {
    background: linear-gradient(45deg, var(--cyber-neon-blue), var(--cyber-neon-green)) !important;
}

.btn-primary:hover {
    box-shadow: 0 5px 30px rgba(0, 245, 255, 0.6) !important;
}

/* CART */
.cart-summary {
    background: var(--cyber-dark) !important;
    border: 2px solid var(--cyber-neon-purple) !important;
    padding: 20px !important;
}

.cart-summary .label {
    color: var(--cyber-gray) !important;
    font-family: var(--cyber-font-secondary) !important;
}

.cart-summary .value {
    color: var(--cyber-white) !important;
    font-family: var(--cyber-font-primary) !important;
    font-weight: 600 !important;
}

/* FOOTER */
.footer-container {
    background: linear-gradient(180deg, rgba(26,26,26,0.9) 0%, rgba(10,10,10,0.95) 100%) !important;
    border-top: 2px solid var(--cyber-neon-pink) !important;
    padding: 40px 0 !important;
    margin-top: 60px !important;
}

.footer-container h3,
.footer-container h4 {
    color: var(--cyber-neon-blue) !important;
    font-family: var(--cyber-font-primary) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 20px !important;
}

.footer-container a {
    color: var(--cyber-gray) !important;
    text-decoration: none !important;
}

.footer-container a:hover {
    color: var(--cyber-neon-pink) !important;
    text-shadow: 0 0 5px var(--cyber-neon-pink) !important;
}

/* FORMS */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    background: var(--cyber-dark) !important;
    border: 1px solid var(--cyber-neon-purple) !important;
    color: var(--cyber-white) !important;
    padding: 10px 15px !important;
    font-family: var(--cyber-font-secondary) !important;
    border-radius: 0 !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: var(--cyber-neon-blue) !important;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5) !important;
    outline: none !important;
}

/* ANIMATIONS */
@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 
            2px 0 var(--cyber-neon-blue),
            -2px 0 var(--cyber-neon-pink);
    }
    25% {
        text-shadow: 
            -2px 0 var(--cyber-neon-blue),
            2px 0 var(--cyber-neon-pink);
    }
    50% {
        text-shadow: 
            2px 0 var(--cyber-neon-pink),
            -2px 0 var(--cyber-neon-blue);
    }
}

/* PAGE TITLES */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--cyber-font-primary) !important;
    color: var(--cyber-white) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

h1 {
    font-size: 48px !important;
    animation: glitch 3s infinite !important;
}

/* BREADCRUMB */
.breadcrumb {
    background: transparent !important;
    padding: 20px 0 !important;
}

.breadcrumb li a {
    color: var(--cyber-gray) !important;
    text-decoration: none !important;
}

.breadcrumb li a:hover {
    color: var(--cyber-neon-blue) !important;
}

.breadcrumb li.active {
    color: var(--cyber-neon-pink) !important;
}

/* OVERRIDE WHITE BACKGROUNDS */
.page-content,
#main,
.container,
.card,
.panel {
    background: transparent !important;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
    background: var(--cyber-black);
}

::-webkit-scrollbar-thumb {
    background: var(--cyber-neon-purple);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyber-neon-pink);
}

/* LOADING ANIMATION */
.loading::after {
    content: 'LOADING...';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--cyber-font-primary);
    font-size: 24px;
    color: var(--cyber-neon-blue);
    animation: glitch 1s infinite;
}

/* HERO SECTION FOR HOME */
#index .page-content {
    padding-top: 0 !important;
}

/* Grid Builder Integration */
.wpgrid-container {
    margin: 40px 0;
    padding: 20px;
    background: rgba(26,26,26,0.5);
    border: 1px solid var(--cyber-neon-purple);
}

.wpgrid-item {
    transition: all 0.3s ease;
}

.wpgrid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(189, 0, 255, 0.6);
}

/**
 * CYBERPUNK OVERRIDE - Account Links
 * Effets spéciaux de fou pour la page Mon Compte
 */

/* Base style pour les liens */
.page-my-account #content .links a {
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1) !important;
    transform-style: preserve-3d !important;
    perspective: 1000px !important;
}

/* Style pour le span.link-item */
.page-my-account #content .links a span.link-item {
    display: block !important;
    height: 100% !important;
    padding: 1.5rem !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    color: #00f5ff !important;
    border: 2px solid #00f5ff !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px)) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: bold !important;
}

/* Effet de scan au repos */
.page-my-account #content .links a span.link-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 245, 255, 0.4), 
        transparent) !important;
    transition: left 0.8s ease !important;
}

/* Lignes de données en arrière-plan */
.page-my-account #content .links a span.link-item::after {
    content: '010110101' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 80px !important;
    color: rgba(0, 245, 255, 0.05) !important;
    font-family: monospace !important;
    letter-spacing: 10px !important;
    pointer-events: none !important;
    white-space: nowrap !important;
}

/* Icône Material Icons cyberpunk */
.page-my-account #content .links a span.link-item i.material-icons {
    font-size: 40px !important;
    display: block !important;
    margin-bottom: 10px !important;
    color: #00f5ff !important;
    text-shadow: 0 0 20px #00f5ff !important;
    transition: all 0.3s ease !important;
}

/* EFFETS AU SURVOL - LE TRUC DE FOU */
.page-my-account #content .links a:hover span.link-item {
    transform: rotateY(15deg) rotateX(-10deg) scale(1.05) !important;
    background: linear-gradient(45deg, 
        rgba(0, 245, 255, 0.2) 0%, 
        rgba(189, 0, 255, 0.2) 50%, 
        rgba(255, 0, 110, 0.2) 100%) !important;
    border-color: #ff006e !important;
    color: #fff !important;
    animation: glitchDistort 0.3s ease-out !important;
    box-shadow: 
        0 10px 40px rgba(0, 245, 255, 0.6),
        0 20px 80px rgba(189, 0, 255, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2) !important;
}

/* Animation de distorsion glitch */
@keyframes glitchDistort {
    0% {
        clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px)) !important;
    }
    20% {
        clip-path: polygon(10px 0, calc(100% - 5px) 5px, 100% 30px, 95% 100%, 10px 95%, 0 calc(100% - 10px)) !important;
    }
    40% {
        clip-path: polygon(0 10px, calc(100% - 30px) 0, 100% 10px, 100% 90%, 30px 100%, 5px calc(100% - 30px)) !important;
    }
    60% {
        clip-path: polygon(5px 5px, calc(100% - 10px) 0, 95% 25px, 100% 95%, 15px 100%, 0 calc(100% - 15px)) !important;
    }
    80% {
        clip-path: polygon(0 5px, calc(100% - 25px) 5px, 100% 15px, 95% 95%, 25px 100%, 0 calc(100% - 25px)) !important;
    }
    100% {
        clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px)) !important;
    }
}

/* Scan effect au survol */
.page-my-account #content .links a:hover span.link-item::before {
    left: 100% !important;
    transition: left 0.4s ease !important;
}

/* Icône au survol - rotation et changement de couleur */
.page-my-account #content .links a:hover span.link-item i.material-icons {
    transform: rotate(360deg) scale(1.3) !important;
    color: #ff006e !important;
    text-shadow: 
        0 0 20px #ff006e,
        0 0 40px #bd00ff,
        0 0 60px #00f5ff !important;
    animation: iconPulse 0.6s ease-in-out !important;
}

@keyframes iconPulse {
    0%, 100% {
        filter: brightness(1) !important;
    }
    50% {
        filter: brightness(1.5) drop-shadow(0 0 30px currentColor) !important;
    }
}

/* Effet de données binaires au survol */
.page-my-account #content .links a:hover span.link-item::after {
    animation: dataFlow 2s linear infinite !important;
    color: rgba(0, 245, 255, 0.1) !important;
}

@keyframes dataFlow {
    0% {
        content: '010110101' !important;
    }
    25% {
        content: '101011010' !important;
    }
    50% {
        content: '110101101' !important;
    }
    75% {
        content: '011010110' !important;
    }
    100% {
        content: '101101011' !important;
    }
}

/* Effet de bordure néon animée */
.page-my-account #content .links a {
    background: transparent !important;
}

.page-my-account #content .links a::before {
    content: '' !important;
    position: absolute !important;
    inset: -3px !important;
    background: linear-gradient(45deg, #00f5ff, #bd00ff, #ff006e, #00f5ff) !important;
    opacity: 0 !important;
    z-index: -1 !important;
    transition: opacity 0.3s ease !important;
    filter: blur(10px) !important;
    animation: borderRotateGlow 3s linear infinite !important;
}

.page-my-account #content .links a:hover::before {
    opacity: 0.8 !important;
}

@keyframes borderRotateGlow {
    0% {
        filter: blur(10px) hue-rotate(0deg) !important;
    }
    100% {
        filter: blur(10px) hue-rotate(360deg) !important;
    }
}

/* Effet de particules flottantes */
.page-my-account #content .links a:hover {
    animation: floatEffect 2s ease-in-out infinite !important;
}

@keyframes floatEffect {
    0%, 100% {
        transform: translateY(0) !important;
    }
    50% {
        transform: translateY(-5px) !important;
    }
}

/* Texte glitch au survol */
.page-my-account #content .links a:hover span.link-item {
    animation: textGlitch 0.3s ease-out, glitchDistort 0.3s ease-out !important;
}

@keyframes textGlitch {
    0%, 100% {
        text-shadow: 
            2px 2px 0 #ff006e,
            -2px -2px 0 #00f5ff !important;
    }
    25% {
        text-shadow: 
            -2px 2px 0 #bd00ff,
            2px -2px 0 #00ff88 !important;
    }
    50% {
        text-shadow: 
            2px -2px 0 #ff006e,
            -2px 2px 0 #00f5ff !important;
    }
    75% {
        text-shadow: 
            -2px -2px 0 #00ff88,
            2px 2px 0 #bd00ff !important;
    }
}

/* Active state - effet de clic */
.page-my-account #content .links a:active span.link-item {
    transform: rotateY(25deg) rotateX(-15deg) scale(0.95) !important;
    animation: clickPulse 0.2s ease-out !important;
}

@keyframes clickPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 245, 255, 0.8) !important;
    }
    100% {
        box-shadow: 0 0 0 20px rgba(0, 245, 255, 0) !important;
    }
}

/* Responsive - maintenir les effets sur mobile */
@media (max-width: 768px) {
    .page-my-account #content .links a span.link-item {
        padding: 1.2rem !important;
    }
    
    .page-my-account #content .links a span.link-item i.material-icons {
        font-size: 32px !important;
    }
}