/* Bootstrap primary -> Violet neon */
.btn-primary{
  background: linear-gradient(135deg, rgba(183,128,255,.95), rgba(111,124,255,.95)) !important;
  border: 0 !important;
  color: #0b0814 !important;
  font-weight: 900;
  border-radius: 14px;
  box-shadow: 0 14px 45px rgba(183,128,255,.18);
}
.btn-primary:hover,
.btn-primary:focus{
  filter: brightness(1.05);
  box-shadow: 0 16px 55px rgba(183,128,255,.22);
}

/* ============================================================
   Solidheberg — Refactor UI (Dark + Violet Neon) — 2026-02-02
   ============================================================ */

:root{
  --primary-color: #b780ff;      /* compat: utilisé par certains inline style */
  --sh-bg: #070511;
  --sh-bg2: #0b0814;
  --sh-card: rgba(255,255,255,.055);
  --sh-card2: rgba(255,255,255,.075);
  --sh-border: rgba(255,255,255,.12);
  --sh-border2: rgba(183,128,255,.35);
  --sh-text: rgba(255,255,255,.92);
  --sh-muted: rgba(255,255,255,.70);
  --sh-faint: rgba(255,255,255,.55);

  --sh-primary: #b780ff;
  --sh-primary2: #6f7cff;
  --sh-accent: #ff6bd6;

  --sh-shadow: 0 18px 60px rgba(0,0,0,.55);
  --sh-shadow-soft: 0 10px 30px rgba(0,0,0,.35);

  --sh-radius: 18px;
  --sh-radius-sm: 14px;

  --sh-glow: 0 0 0 1px rgba(183,128,255,.24), 0 0 24px rgba(183,128,255,.18);
}

html, body{
  max-width: 100%;
  overflow-x: hidden;
}

body.sh-body{
  background:
    radial-gradient(1000px 600px at 20% 10%, rgba(183,128,255,.22), transparent 60%),
    radial-gradient(900px 560px at 80% 12%, rgba(111,124,255,.18), transparent 55%),
    radial-gradient(700px 520px at 50% 90%, rgba(255,107,214,.10), transparent 60%),
    linear-gradient(180deg, var(--sh-bg) 0%, var(--sh-bg2) 60%, #05030c 100%);
  color: var(--sh-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a{ color: inherit; }
a:hover{ color: var(--sh-primary); }

.sh-muted{ color: var(--sh-muted); }

.sh-hr{
  border-color: rgba(255,255,255,.12);
  opacity: 1;
}

/* =============================
   Navbar
   ============================= */

.sh-navbar{
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(10,7,18,.62);
  backdrop-filter: blur(12px);
}

.sh-navbar .navbar-brand{
  color: var(--sh-text);
}

.sh-navbar .nav-link{
  color: rgba(255,255,255,.82);
  font-weight: 600;
  letter-spacing: .2px;
}

.sh-navbar .nav-link:hover,
.sh-navbar .nav-link:focus{
  color: #fff;
}

.sh-navbar .dropdown-menu{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  box-shadow: var(--sh-shadow-soft);
}

.sh-navbar .navbar-toggler{
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 12px;
}

.sh-navbar .navbar-toggler-icon{
  filter: invert(1);
}

.badge.sh-badge{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.9);
  font-weight: 700;
  padding: .35rem .55rem;
  border-radius: 999px;
}

.badge.sh-badge[data-state="ok"]{
  background: rgba(46, 204, 113, .12);
  border-color: rgba(46, 204, 113, .35);
}

.badge.sh-badge[data-state="degraded"]{
  background: rgba(241, 196, 15, .14);
  border-color: rgba(241, 196, 15, .45);
  color: rgba(255,255,255,.92);
}

.badge.sh-badge[data-state="down"]{
  background: rgba(231, 76, 60, .14);
  border-color: rgba(231, 76, 60, .40);
}

/* =============================
   Buttons (override bootstrap look)
   ============================= */

.btn{
  border-radius: 14px;
}

.btn-outline-light{
  border-color: rgba(255,255,255,.22) !important;
  color: rgba(255,255,255,.92) !important;
}

.btn-outline-light:hover,
.btn-outline-light:focus{
  border-color: rgba(183,128,255,.65) !important;
  background: rgba(183,128,255,.14) !important;
  box-shadow: var(--sh-glow);
}

.btn-light{
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.92) !important;
}

.btn-light:hover,
.btn-light:focus{
  background: rgba(183,128,255,.16) !important;
  border-color: rgba(183,128,255,.65) !important;
  box-shadow: var(--sh-glow);
}

.btn-sh-primary{
  background: linear-gradient(135deg, rgba(183,128,255,.95), rgba(111,124,255,.95));
  border: 0;
  color: #0b0814 !important;
  font-weight: 800;
  box-shadow: 0 14px 45px rgba(183,128,255,.18);
}

.btn-sh-primary:hover{
  filter: brightness(1.05);
  box-shadow: 0 16px 55px rgba(183,128,255,.22);
}

.btn-sh-ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
}

.btn-sh-ghost:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(183,128,255,.55);
}

/* =============================
   Cards / Sections
   ============================= */

.card{
  background: var(--sh-card) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  color: var(--sh-text);
  border-radius: var(--sh-radius) !important;
  box-shadow: var(--sh-shadow-soft);
}

.card .card-title{ color: rgba(255,255,255,.95); }
.card .card-text{ color: rgba(255,255,255,.78); }

.sh-section{
  padding: 72px 0;
}

.section-title{
  font-weight: 900;
  letter-spacing: .2px;
  background: linear-gradient(90deg, rgba(183,128,255,1), rgba(255,107,214,.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.guarantees{
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.guarantee-box{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--sh-radius);
  padding: 22px;
  height: 100%;
  box-shadow: var(--sh-shadow-soft);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.guarantee-box i{
  font-size: 34px;
  color: var(--sh-primary);
  text-shadow: 0 0 16px rgba(183,128,255,.25);
}

.guarantee-box h5{ margin-top: 14px; font-weight: 800; }
.guarantee-box p{ margin: 0; color: rgba(255,255,255,.75); }

.guarantee-box:hover{
  transform: translateY(-3px);
  border-color: rgba(183,128,255,.35);
  background: rgba(255,255,255,.07);
  box-shadow: var(--sh-shadow);
}

/* =============================
   Hero
   ============================= */

.hero{
  position: relative;
  padding: 210px 0 140px;
  text-align: center;
  overflow: hidden;
  background: url('../ressources/images/Background/9020877.jpg') no-repeat center center / cover;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 30% 20%, rgba(183,128,255,.42), transparent 55%),
    radial-gradient(900px 520px at 75% 15%, rgba(111,124,255,.32), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.52) 40%, rgba(0,0,0,.82) 100%);
  z-index:1;
}

.hero .hero-particles{
  position:absolute; inset:0;
  z-index:2;
  pointer-events:none;
}

.hero .content{
  position: relative;
  z-index: 3;
  max-width: 920px;
  margin: 0 auto;
}

.hero h1{
  font-weight: 950;
  letter-spacing: .2px;
  text-shadow: 0 18px 60px rgba(0,0,0,.7);
}

.hero p{
  margin-top: 14px;
  font-size: 1.15rem;
  color: rgba(255,255,255,.80);
}

/* =============================
   Carousel (cards)
   ============================= */

.carousel .carousel-control-prev-icon,
.carousel .carousel-control-next-icon{
  filter: invert(1);
}

.category-separator{
  position: relative;
}

.category-separator::after{
  content:"";
  position:absolute;
  top: 8px;
  right: -12px;
  width: 1px;
  height: calc(100% - 16px);
  background: rgba(255,255,255,.10);
}

@media (max-width: 767.98px){
  .category-separator::after{ display:none; }
}

/* =============================
   Stats
   ============================= */

.stats-section{
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.stat-box{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--sh-radius-sm);
  box-shadow: var(--sh-shadow-soft);
}

.stat-box i{ color: var(--sh-primary); }

/* =============================
   Offers / Plans
   ============================= */

.sh-plan-card{
  position: relative;
  overflow: hidden;
}

.sh-plan-card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(900px 300px at 20% 0%, rgba(183,128,255,.35), transparent 60%),
              radial-gradient(900px 300px at 80% 0%, rgba(111,124,255,.22), transparent 60%);
  z-index: 0;
}

.sh-plan-card .card-body{
  position: relative;
  z-index: 1;
}

.sh-plan-card .price{
  font-weight: 900;
  font-size: 2.1rem;
}

.sh-plan-card img{
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.30);
}

.sh-plan-card .features p{
  margin-bottom: .65rem;
  color: rgba(255,255,255,.78);
}

.sh-plan-card .features strong{
  color: rgba(255,255,255,.95);
}

/* =============================
   Legal pages
   ============================= */

.sh-legal-card{
  padding: 28px;
  background: rgba(255,255,255,.05);
}

.sh-legal-card h1{
  margin-bottom: 10px;
  font-weight: 950;
}

.sh-legal-card h4{
  margin-top: 26px;
  color: rgba(183,128,255,.95);
  font-weight: 900;
}

.sh-legal-card p,
.sh-legal-card li{
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.sh-legal-card a{ color: rgba(255,255,255,.92); }
.sh-legal-card a:hover{ color: var(--sh-primary); }

/* =============================
   Footer
   ============================= */

.sh-footer{
  margin-top: 70px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}

.sh-footer-title{
  font-weight: 900;
  margin-bottom: 12px;
  color: rgba(255,255,255,.92);
}

.sh-footer-links a{
  text-decoration: none;
  color: rgba(255,255,255,.78);
}

.sh-footer-links a:hover{
  color: var(--sh-primary);
}

.sh-footer-social a{
  font-size: 1.3rem;
  color: rgba(255,255,255,.85);
  text-decoration: none;
}

.sh-footer-social a:hover{
  color: var(--sh-primary);
  text-shadow: 0 0 18px rgba(183,128,255,.18);
}

/* =============================
   Utility
   ============================= */

.theme-transition{
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

/* Fix bootstrap light text inside cards */
.text-dark{ color: var(--sh-text) !important; }
.bg-dark-tele{ background: transparent !important; }
.text-white{ color: var(--sh-text) !important; }



/* =============================
   Forms (dark friendly)
   ============================= */

.sh-form .form-label{
  color: rgba(255,255,255,.78);
  font-weight: 700;
  margin-bottom: .35rem;
}

.form-control,
.form-select,
textarea.form-control{
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.92) !important;
  border-radius: 14px !important;
}

.form-control::placeholder{
  color: rgba(255,255,255,.55) !important;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus{
  box-shadow: 0 0 0 .25rem rgba(183,128,255,.18) !important;
  border-color: rgba(183,128,255,.55) !important;
}


.form-text{
  color: rgba(255,255,255,.65) !important;
}

/* =============================
   Embeds
   ============================= */

.sh-embed{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: var(--sh-shadow-soft);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  * { scroll-behavior: auto !important; }
  .guarantee-box{ transition: none; }
}


.sh-navbar.sh-navbar--scrolled{
  background: rgba(10,7,18,.82);
  border-bottom-color: rgba(255,255,255,.10);
}


/* =============================
   Game servers page
   ============================= */

.game-server-section{
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 52px 0;
}

.game-server-section .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.game-server-section .text-content{
  flex: 1 1 520px;
  min-width: 280px;
}

.game-server-section h2{
  font-weight: 950;
  margin-bottom: 12px;
  background: linear-gradient(90deg, rgba(183,128,255,1), rgba(111,124,255,.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.game-server-section p{
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

.game-server-section img{
  flex: 1 1 360px;
  max-width: 520px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--sh-shadow-soft);
}

.game-server-jeux{
  padding-top: 52px !important;
  padding-bottom: 52px !important;
}

.game-server-info{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--sh-shadow-soft);
}

.game-server-info h2{
  margin-bottom: 8px;
  font-weight: 950;
}

.game-server-info .price{
  color: rgba(255,255,255,.86);
}

.game-server-info .features{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.game-server-info .features li{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.10);
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(255,255,255,.80);
}

.game-server-info .note,
.game-server-info .risk{
  color: rgba(255,255,255,.72);
}

.game-server-info .btn{
  margin-top: 12px;
}

.custom-carousel-nav{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}

.custom-carousel-nav .nav-button{
  background: none;
  border: 0;
  cursor: pointer;
  flex: 0 0 auto;
  padding: 0;
}

.custom-carousel-nav .nav-button img{
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--sh-shadow-soft);
  transition: transform .16s ease, border-color .16s ease;
}

.custom-carousel-nav .nav-button img:hover{
  transform: translateY(-2px);
  border-color: rgba(183,128,255,.45);
}

@media (max-width: 768px){
  .custom-carousel-nav .nav-button img{ width: 64px; height: 64px; }
}

/* ============================================================
   Status-page — Bouton "Retour à l’espace client"
   Affiché uniquement quand on vient du clientarea (JS)
   ============================================================ */
#shBackClientArea{
  display: none;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
}
