@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Lemon Milk';
    src: url('LemonMilk.otf');
    font-weight: normal;
    font-style: normal;
}

:root {
    --blanc: #EEE9E9;
	--violet: #af67ff;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Nunito', sans-serif;
    background-color: #1a1a1a;
    color: var(--blanc);
}
/* Styles scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(175, 103, 255, 0.35);
    border-radius: 99px;
    transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(175, 103, 255, 0.7);
}
.table-container::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.table-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 99px;
}
.table-container::-webkit-scrollbar-thumb {
    background: rgba(175, 103, 255, 0.4);
    border-radius: 99px;
}
.table-container::-webkit-scrollbar-thumb:hover {
    background: rgba(175, 103, 255, 0.75);
}
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(175, 103, 255, 0.35) transparent;
}
.table-container {
    scrollbar-width: thin;
    scrollbar-color: rgba(175, 103, 255, 0.4) rgba(255, 255, 255, 0.03);
}
/* fin styles scrollbar */
/* styles pour l'apparition 3D */
.reveal-on-scroll {
    opacity: 0;
}
.reveal-on-scroll.is-visible {
    animation: slideUpFade 0.8s ease-out forwards;
}
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* fin*/

.product-card, 
.product-content, 
.formation-content, 
.product-footer {
    box-sizing: border-box;
}

/* Styles popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.popup-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.popup-caption {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--blanc);
    font-size: 14px;
    background: rgba(175, 103, 255, 0.2); /* Ton violet */
    padding: 8px 20px;
    border-radius: 20px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    border: 1px solid var(--violet);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.close-popup svg { width: 20px; height: 20px; fill: #e0e0e0; transition: fill 0.3s ease; }
.close-popup:hover { background-color: #e60000; transform: scale(1.1); }
.close-popup:hover svg { fill: #ffffff; }
.close-popup:active { transform: scale(0.95); transition: transform 0.1s ease; }

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--blanc);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

.nav-btn:hover {
    background: var(--violet);
    border-color: var(--blanc);
    transform: translateY(-50%) scale(1.05);
}
.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}
.prev-btn { left: 30px; }
.next-btn { right: 30px; }

.hero-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-image: url('../content/img/header2.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.6);
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    will-change: opacity;
}

.intro-text {
    font-size: 39px;
    font-weight: 300;
    margin: 0;
    letter-spacing: 2px;
    text-align: left;
    padding-left: 5px;
}

.main-title {
    font-family: 'Lemon Milk', sans-serif;
    font-size: 100px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: 10px;
    background: linear-gradient(to right, var(--blanc), var(--violet));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 30px;
	margin-top: 0;
}
.subtitle-important {
    display: inline-block;
    position: relative;
    color: var(--violet); 
    font-weight: 700;
    vertical-align: middle;
    height: 1.2em;
    line-height: 1.2em;
    overflow: hidden;
    min-width: 300px;
    top: 0;
}
.word-enter {
    display: block;
    animation: slideInUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.word-exit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideOutUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.word-current {
    display: block;
}

@keyframes slideInUp {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes slideOutUp {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-100%); opacity: 0; }
}

.tags-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tag {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
}

.tag-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.social-buttons {
    position: fixed; 
    bottom: 12vh;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
    z-index: 1;
}

.discord-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: rgba(88, 101, 242, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 150px;
}

.discord-button:hover {
    background-color: rgba(88, 101, 242, 0.3);
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

.discord-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--blanc);
    letter-spacing: 0.5px;
}

.discord-logo {
    height: 20px;
    width: auto;
    color: #5865f2;
    transition: color 0.3s ease;
}

.discord-button:hover .discord-logo {
    color: #7289da;
}

.behance-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: rgba(0, 87, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(0, 87, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 150px;
}

.behance-button:hover {
    background-color: rgba(0, 87, 255, 0.3);
    border-color: rgba(0, 87, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 87, 255, 0.4);
}

.behance-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--blanc);
    letter-spacing: 0.5px;
}

.behance-logo {
    height: 20px;
    width: auto;
    color: #0057ff;
    transition: color 0.3s ease;
}

.behance-button:hover .behance-logo {
    color: #1769ff;
}

.scroll-down {
    position: absolute;
    bottom: 5px;
    z-index: 2;
    text-decoration: none;
    color: var(--blanc);
    font-size: 32px;
    animation: bounce 2s infinite;
    transition: opacity 0.3s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.content-section {
    position: relative;
    z-index: 10;
    margin-top: 100vh;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(130, 50, 220, 0.2) 0%, transparent 80%),
                linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    background-attachment: fixed, fixed;
    padding: 0;
    box-shadow: 0px -10px 20px rgba(0,0,0,0.5);
}
.side-line {
    position: absolute;
    top: 50px;
    bottom: 50px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0), var(--violet), rgba(26, 26, 26, 0));
    opacity: 1;
}
.left-line {
    left: 4%;
}
.right-line {
    right: 4%;
}
.navbar {
    position: sticky; 
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.8);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lemon Milk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 2px;
}
.nav-logo a {
    text-decoration: none;
    color: var(--blanc);
    transition: color 0.3s ease;
}
.nav-logo a:hover {
    color: var(--violet);
}
.nav-logo img {
    width: 30px;
}
.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-socials .social-icon {
    width: 40px ;
    height: 40px ;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.nav-socials .social-icon svg,
.nav-socials .social-icon img {
    width: 24px;
    height: 24px;
    filter: grayscale(1) brightness(0.8);
    opacity: 0.6;
    transition: all 0.4s ease;
}
.nav-socials .social-icon:hover {
    background: rgba(255, 255, 255, 0.08);
}
.nav-socials .social-icon:hover svg,
.nav-socials .social-icon:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}
.nav-socials .social-icon.discord:hover { border-color: #5865F2; box-shadow: 0 0 10px rgba(88, 101, 242, 0.4); }
.nav-socials .social-icon.discord:hover svg { fill: #5865F2; }
.nav-socials .social-icon.tiktok:hover  { border-color: #ff0050; box-shadow: 0 0 10px rgba(255, 0, 80, 0.4); }
.nav-socials .social-icon.tiktok:hover svg { fill: #ff0050; }
.nav-socials .social-icon.behance:hover { border-color: #0057ff; box-shadow: 0 0 10px rgba(0, 87, 255, 0.4); }
.nav-socials .social-icon.behance:hover svg { fill: #0057ff; }
.nav-socials .social-icon.twitter:hover { border-color: white; box-shadow: 0 0 10px rgba(255, 255, 255, 0.4); }
.nav-socials .social-icon.paypal:hover  { border-color: #0070e0; box-shadow: 0 0 10px rgba(0, 112, 224, 0.4); }
.nav-socials .social-icon.guns:hover { border-color: #74477F; box-shadow: 0 0 10px rgba(116, 71, 127, 0.4); }

.nav-links {
    position: relative;
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.nav-links::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    pointer-events: none;
}
.nav-links::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: var(--scroll-progress, 0%); 
    height: 2px;
    background: var(--violet);
    border-radius: 2px;
    transition: width 0.1s linear;
    pointer-events: none;
    z-index: 1;
}

.nav-links li a {
    text-decoration: none;
    color: var(--blanc);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--violet);
}

.content-container {
    padding: 50px 10%;
    position: relative;
    overflow: hidden;
}
.content-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../content/img/page_logo.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 200vh; 
    background-position: -80vh center; 
    opacity: 0.01;
    z-index: -1;
    pointer-events: none;
    filter: grayscale(100%);
}

.content-container h2 {
    font-size: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    border-left: 6px solid var(--violet);
    padding-left: 20px;
    margin-top: 60px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--violet);
}
.content-container h2:not(:first-of-type) {
    scroll-margin-top: 80px;
}

.content-container .highlight {
    font-weight: 600;
    position: relative;
    display: inline-block;
    z-index: 1;
}
.content-container .highlight::after {
    content: '';
    position: absolute;
    bottom: 20%; 
    left: 0;
    width: 100%;
    height: 40%; 
    background-color: rgba(0, 106, 255, 0.3);
    z-index: -1;
    transform: rotate(-2deg);
    border-radius: 2px;
}
#interactive-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1; 
    pointer-events: none;
    will-change: transform;
}
.boxes-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 150px;
    margin: 40px 0;
    width: 100%;
}

.info-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--violet);
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 500px;
    max-width: 600px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.1s ease-out;
    will-change: transform;
}
.info-box:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--violet);
}

.box-title {
    font-family: 'Lemon Milk', sans-serif;
    font-size: 19px;
    color: var(--violet);
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.box-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(238, 233, 233, 0.8);
    margin: 0;
}
.box-text a {
    color: var(--violet);
    transition: color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}
.box-text a:hover {
    color: var(--blanc);
}
#banner-description {
    text-align: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
#banner-description.visible {
    opacity: 1;
}
.inside-bottom {
    margin-bottom: 25px !important;
}
.inside-top {
    margin-top: 25px !important;
}

.content-container ul {
    margin-left: 26px;

    padding-left: 0;
    list-style-position: outside;
}
.last {
    margin-bottom: 0 !important;
}
.content-container li {
    color: rgba(238, 233, 233, 0.8);
    margin-bottom: 12px;
    line-height: 1.6;
}
.content-container ul li::marker {
    color: var(--violet);
}
.content-container ul li.notice {
    margin-bottom: 0px;
    text-decoration: underline;
}
.tags-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
    align-items: flex-start;
}

.mini-tag {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 90px;
    padding: 15px 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mini-tag:hover {
    background: rgba(175, 103, 255, 0.15);
    border-color: var(--violet);
    transform: translateY(-5px);
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(26, 26, 26, 0.984);
    color: var(--blanc);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: normal;
    border: 1px solid var(--violet);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    z-index: 100;
    max-width: 150px;
    width: max-content;
    text-align: center;
}

.tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-width: 6px;
    border-style: solid;
    border-color: var(--violet) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    z-index: 100;
}

.tooltip:hover::after,
.tooltip:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.text-help {
    position: relative;
    cursor: help; 
    white-space: nowrap;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
}
.text-help::after {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: super;
    font-size: 10px;
    font-weight: 700;
    margin-left: 4px;
    background: rgba(255, 255, 255, 0.1); 
    color: rgba(255, 255, 255, 0.7); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    border-radius: 50%;
    width: 14px;
    height: 14px;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
}
.text-help::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(26, 26, 26, 0.984);
    color: var(--blanc);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: normal;
    border: 1px solid var(--violet);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    z-index: 100;
    max-width: 150px;
    width: max-content;
    text-align: center;
}
.text-help:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    border-color: var(--violet); 
}
.text-help:hover::after {
    background: var(--violet); 
    color: #fff; 
    border-color: var(--violet);
    box-shadow: 0 0 8px rgba(175, 103, 255, 0.4); 
}

.tag-icon-wrapper {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
}

.tag-icon-wrapper svg, 
.tag-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tag-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blanc);
    text-align: center;
}
.splide__slide img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    border-radius: 8px;
    background-color: transparent;
    cursor: pointer;
}
.slider-container {
    border: 1px solid var(--violet);
    border-radius: 15px;
    padding: 10px;
}
.slider-container video {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}
.slider-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    background-color: transparent;
    cursor: pointer;
}
.show {
    opacity: 1 !important;
}

.table-wrapper {
    width: 100%;
    margin-top: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 400px;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-table th {
    background: rgb(175, 103, 255);
    color: blue;
    padding: 15px;
    font-family: 'Lemon Milk', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(175, 103, 255, 0.2);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 2;
}
.pricing-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}
.category-cell {
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    color: rgba(238, 233, 233, 0.6);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.price-box {
    width: 110px;
    text-align: center;
    font-weight: 800;
    color: var(--violet);
    background: rgba(175, 103, 255, 0.03);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-table tr.is-hovered td {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.pricing-table tr.is-hovered .category-cell {
    background: rgba(175, 103, 255, 0.2) !important;
    color: var(--blanc);
}
.pricing-table tr.is-hovered .price-box {
    background: rgba(175, 103, 255, 0.15) !important;
    box-shadow: inset 0 0 15px rgba(175, 103, 255, 0.1);
}

.info-box ul p {
    margin-top: 2px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(238, 233, 233, 0.7);
    font-weight: 400;
}
.info-box ul p a {
    text-decoration: none;
    color: var(--violet);
    transition: color 0.3s ease;
}
.info-box ul p a:hover {
    color: var(--blanc);
}

.info-box ul p:last-child {
    margin-bottom: 0;
}

.important-p {
    width: 100%;
    border: 1px solid #e60000;
    border-radius: 20px;
    text-align: center;
    background-color: #e6000033;
}

.contact-form {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}
.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 8px;
    margin-top: 15px;
}
.form-group label {
    font-family: 'Lemon Milk', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--violet);
    text-transform: uppercase;
}
.form-group input, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--blanc);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--violet);
    background: rgba(175, 103, 255, 0.05);
    box-shadow: 0 0 10px rgba(175, 103, 255, 0.1);
}
.captcha-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    z-index: 99;
}
.submit-btn {
    background: none;
    color: var(--blanc);
    border: 2px solid var(--violet);
    border-radius: 8px;
    padding: 15px;
    font-family: 'Lemon Milk', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.submit-btn:hover {
    background: var(--violet);
    color: white;
}
.submit-btn:active {
    transform: scale(0.95);
}
.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}

.regular-email-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    background: transparent;
    color: var(--blanc);
    border: 2px dashed rgba(175, 103, 255, 0.5); 
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
    z-index: 1;
    transition: all 0.3s ease;
}
.regular-email-btn:active {
    transform: scale(0.95);
}

.regular-email-btn svg {
    color: var(--violet);
    transition: color 0.3s ease;
}
.regular-email-btn::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border: 2px solid var(--violet);
    border-radius: 8px;
    background: rgba(175, 103, 255, 0.05);
    box-shadow: 0 0 15px rgba(175, 103, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    pointer-events: none;
}
.regular-email-btn:hover::before {
    opacity: 1;
}
.regular-email-btn:hover svg {
    color: var(--blanc);
}
.form-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0 25px 0;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Lemon Milk', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
}
.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.form-divider span {
    padding: 0 15px;
}

.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: black;
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 90%;
}
.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}
.toast-notification.info { border-left: 4px solid var(--violet); }
.toast-notification.success { border-left: 4px solid #00c853; }
.toast-notification.error { border-left: 4px solid #ff3d00; }
.notification-icon { flex-shrink: 0; }

.order-btn {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
    border: 1px solid var(--violet);
    color: var(--blanc);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Lemon Milk';
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.order-btn svg {
    width: 20px;
    height: 20px;

}
.order-btn:hover {
    background-color: var(--violet);
    border: 1px solid var(--blanc);
    color: blue;
}
.order-btn:active {
    transform: scale(0.95);
}
.order-btn.small-btn {
    padding: 10px 20px;
    font-size: 12px;
    margin: 0;
}
.order-btn.small-btn span {
    transform: translateY(2px);
}

.social-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    text-decoration: none;
    overflow: hidden;
}

.social-icon svg,
.social-icon img {
    width: 50px;
    height: 50px;
    filter: grayscale(1) brightness(0.8); 
    opacity: 0.6;
    transition: all 0.4s ease;
}
.social-icon:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--violet); 
    box-shadow: 0 0 20px rgba(175, 103, 255, 0.2);
    transform: none !important;
}
.social-icon:hover svg,
.social-icon:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}
.social-icon.discord:hover { border-color: #5865F2; box-shadow: 0 0 15px rgba(88, 101, 242, 0.4); }
.social-icon.discord:hover svg { fill: #5865F2;}
.social-icon.tiktok:hover  { border-color: #ff0050; box-shadow: 0 0 15px rgba(255, 0, 80, 0.4); }
.social-icon.tiktok:hover svg { fill: #ff0050; }
.social-icon.behance:hover { border-color: #0057ff; box-shadow: 0 0 15px rgba(0, 87, 255, 0.4); }
.social-icon.behance:hover svg { fill: #0057ff; }
.social-icon.twitter:hover { border-color: white; box-shadow: 0 0 15px rgba(255, 255, 255, 0.4); }
.social-icon.paypal:hover  { color: #0070e0; border-color: #0070e0; box-shadow: 0 0 15px rgba(0, 112, 224, 0.4); }

/* catégorie services */
.boxes-wrapper.services-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 500px));
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin: 40px 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.1s ease-out !important;
    will-change: transform;
}

.product-card:hover {
    border-color: var(--violet);
    box-shadow: 0 0 30px rgba(175, 103, 255, 0.30);
}
.product-img-container {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #111;
}
.shop-grid .product-card .product-img-container {
    cursor: pointer;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-container img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f1c40f 0%, #e67e22 100%);
    color: var(--blanc);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Lemon Milk', sans-serif;
    border: 2px solid orange;
    text-shadow: 0 1px 5px rgba(0,0,0,1);
    box-shadow: 0 0 20px #F39C12;
    cursor: default;
}

.product-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.badge {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 6px;
    vertical-align: middle;
    margin-left: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.product-footer {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price {
    font-family: 'Lemon Milk', sans-serif;
    font-size: 24px;
    color: var(--violet);
}



.product-card.full-width {
    grid-column: 1 / -1; 
    flex-direction: row; 
}

.formation-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.formation-text {
    flex: 2;
}

.formation-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card .box-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 15px;
}

.product-card .box-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--violet);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-card:hover .box-title::after {
    transform: scaleX(1);
}

.title-group {
    display: inline-block;
    text-align: center;
}

.formation-reviews {
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 250px;
}

.formation-reviews.visible {
    opacity: 1;
}

.review-stars {
    font-size: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 13px;
    font-style: italic;
    color: rgba(238, 233, 233, 0.9);
    margin: 0;
    line-height: 1.4;
}

.review-author {
    font-size: 20px;
    color: var(--violet);
    font-weight: 700;
}

/* Footer */
.main-footer {
    background-color: black;
    border-top: 1px solid var(--violet);
    padding-top: 40px;
    padding-bottom: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 40px;
    width: auto;
}

.footer-brand span {
    font-family: 'Lemon Milk', sans-serif;
    font-size: 22px;
    color: var(--blanc);
    letter-spacing: 2px;
}

.copyright {
    font-size: 11px;
    color: rgba(238, 233, 233, 0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}
.credits {
    margin-top: 0;
    font-size: 11px;
    color: rgba(238, 233, 233, 0.4);
}
.credits a {
    text-decoration: none;
    color: var(--violet);
    transition: color 0.3s ease;
    cursor: pointer;
}
.credits a:hover {
    color: var(--blanc);
}

.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(175, 103, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet);
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.scroll-to-top svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}
.show {
    opacity: 1 !important;
    visibility: visible !important;
}
.scroll-to-top:hover {
    background: var(--violet);
    color: white;
    border-color: white;
    box-shadow: 0 0 20px rgba(175, 103, 255, 0.4);
    transform: scale(1.1);
}
.scroll-to-top:active {
    transform: scale(0.95);
}

.floating-shop-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    animation: afk-attention 10s infinite;
    border-radius: 25px;
}
.floating-shop-wrapper:hover {
    animation: none;
}
.floating-shop-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #181818;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(175, 103, 255, 0.4);
    color: var(--blanc);
    padding: 12px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Lemon Milk', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
.floating-shop-btn svg {
    width: 20px;
    height: 20px;
    color: var(--violet);
    transition: all 0.3s ease;
}

.floating-shop-btn:hover {
    background: rgba(175, 103, 255, 0.15);
    border-color: var(--violet);
    box-shadow: 0 0 25px #AF67FF;
    transform: scale(1.05);
}
.floating-shop-btn:hover svg {
    transform: scale(1.1) rotate(-20deg); 
    color: var(--blanc);
}
.floating-shop-btn:active {
    transform: translateY(0) scale(0.95);
}

/* style pour le glow de la souris dans les boxs */
.info-box::before,
.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        300px circle at var(--mouse-x) var(--mouse-y),
        rgba(175, 103, 255, 0.12),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}
.info-box:hover::before,
.product-card:hover::before {
    opacity: 1;
}
.info-box > *,
.product-card > * {
    position: relative;
    z-index: 1;
}
.info-box,
.product-card {
    position: relative;
    box-sizing: border-box;
}

@keyframes afk-attention {
    0%, 85%, 100% { 
        transform: translateY(0) scale(1) rotate(0); 
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        border-color: rgba(175, 103, 255, 0.4);
    }
    88% { 
        transform: translateY(-6px) scale(1.05) rotate(-3deg); 
        border-color: var(--violet); 
        box-shadow: 0 0 25px rgba(175, 103, 255, 0.8); 
        border-color: var(--violet);
    }
    91% {
        transform: translateY(-6px) scale(1.1) rotate(3deg);
        box-shadow: 0 0 25px rgba(175, 103, 255, 1);
        border-color: rgba(175, 103, 255, 0.4);
    }
    94% {
        transform: translateY(-6px) scale(1.1) rotate(-3deg);
        box-shadow: 0 0 25px rgba(175, 103, 255, 0.8);
        border-color: var(--violet);
    }
    97% {
        transform: translateY(-6px) scale(1.1) rotate(3deg);
        box-shadow: 0 0 25px rgba(175, 103, 255, 0.5);
        border-color: rgba(175, 103, 255, 0.4);
    }
}
@media (max-width: 768px) {
    .main-title {
        font-size: 65px;
        letter-spacing: 5px;
    }
    .intro-text { font-size: 28px; }
    .subtitle { font-size: 24px; }
    .subtitle-important {
        min-width: 200px;
        font-size: 24px;
    }
    .social-buttons {
        position: relative;
        bottom: auto;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        padding-bottom: 5px;
    }
    .discord-button, .behance-button {
        width: 120px; 
        margin: 0 auto;
    }
    .content-container {
        padding: 40px 8px;
    }
    .side-line { display: none; }
    .content-container h2 {
        font-size: 28px;
        padding-left: 15px;
    }
    .boxes-wrapper {
        gap: 40px;
    }
    .info-box {
        min-width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
    .navbar {
        flex-direction: column;
        padding: 15px 5%;
        gap: 15px;
    }
    .nav-socials {
        gap: 5px;
    }
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .social-icon {
        width: 70px;
        height: 70px;
    }
    .social-icon svg {
        width: 35px;
        height: 35px;
    }
    .content-container h2:not(:first-of-type) {
        scroll-margin-top: 100px;
    }
    .footer-content {
        text-align: center;
        align-items: center;
        padding: 0 20px;
    }
    .copyright, .credits {
        text-align: center;
        width: 100%;
        line-height: 1.5;
    }
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .prev-btn {
        left: 10px;
    }
    .next-btn {
        right: 10px;
    }
    .tag {
        font-size: 13px;
    }
    .boxes-wrapper.services-wrapper {
        grid-template-columns: 1fr; 
    }
    .product-card.full-width {
        flex-direction: column;
        box-sizing: border-box;
    }
    .formation-content {
        flex-direction: column;
        text-align: left;
        gap: 0;
        justify-content: flex-start;
    }
    .formation-img {
        order: -1;
        margin-bottom: 20px;
    }
    .floating-shop-wrapper {
        bottom: 20px;
        left: 20px;
    }
    .floating-shop-btn {
        padding: 10px 16px;
        font-size: 11px;
        gap: 8px;
    }
    .order-btn {
        align-items: center !important;
    }
    .order-btn svg {
        flex-shrink: 0;
    }
    .order-btn span {
        text-align: center;
        
    }
}