	@import url("/css/bg-img.css?3060737993");

    @import url("/css/light.css?3060737993") screen and (prefers-color-scheme: light);
    @import url("/css/dark.css?3060737993") screen and (prefers-color-scheme: dark);
    @media (prefers-color-scheme: light) {
        :root {
    --theme-primary-rgb: 253,116,108;
    --theme-secondary-rgb: 255,144,104;

    --theme-bg-page-rgb: 255,255,255;
    --theme-bg-primary-rgb: 255,255,255;
    --theme-bg-secondary-rgb: 34,34,34;

            --theme-community-logo-url: url(https://nostalgiarp.swissgamercommunity.ch/horizonrp_logo.png);
                --theme-bg-image-url: url(https://nostalgiarp.swissgamercommunity.ch/loop.mp4);
    }
    }
    @media (prefers-color-scheme: dark) {
        :root {
    --theme-primary-rgb: 39,44,48;
    --theme-secondary-rgb: 108,117,125;

    --theme-bg-page-rgb: 34,34,34;
    --theme-bg-primary-rgb: 52,58,64;
    --theme-bg-secondary-rgb: 33,37,41;

            --theme-community-logo-url: url(https://nostalgiarp.swissgamercommunity.ch/horizonrp_logo.png);
                --theme-bg-image-url: url(https://nostalgiarp.swissgamercommunity.ch/loop.mp4);
    }
    }


    :root {
        --theme-gradient: rgba(var(--theme-primary-rgb), var(--theme-opacity));
    }




    :root {
        --theme-border-radius: 0.25rem;
    }

    .btn, .badge, .card,
    div.table-responsive,
    .form-control, .form-select,
    .form-switch .form-check-input,
    .text-editor .toolbar-bubble .toolbar,
    .modal-content,
    .input-group-text,
    .page-item .page-link.page-link, .page-item span,
    .btn-group > .btn,
    .input-group > .form-control,
    .input-group > .form-select,
    .input-group > .input-group-text,
    .input-group > .btn,
    div.swal2-popup, button.swal2-styled.swal2-styled, .swal2-input, .swal2-select,
    .ace_editor {
        border-radius: var(--theme-border-radius);
    }

    .card-img-top {
        border-top-left-radius: calc(var(--theme-border-radius) - 1px);
        border-top-right-radius: calc(var(--theme-border-radius) - 1px);
    }

    .table {
        margin-bottom: 0;
    }

    .table-responsive {
        margin-bottom: 1rem;
    }

            .page-item .page-link {
            height: 35px;
            width: 35px;
            margin: 0 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    


	/* === DESIGN 2026 - BRANDING UI REINVENTÉ === */
/* Variables futuristes - Morphing Design System */
:root {
  /* Palette néon-rétro - version 2026 */
  --neon-coral: #FF4D7D;
  --neon-orange: #FF8C42;
  --void-black: #0A0A0F;
  --hologram-gray: #1A1A24;
  --cyber-silver: #E0E0E8;
  --matrix-green: #00FF9D;
  --neural-purple: #9D4EDD;
  
  /* Effets spéciaux 2026 */
  --hologram-gradient: linear-gradient(
    135deg,
    rgba(255, 77, 125, 0.8) 0%,
    rgba(157, 78, 221, 0.6) 50%,
    rgba(0, 255, 157, 0.4) 100%
  );
  
  --neon-glow: 0 0 30px rgba(255, 77, 125, 0.6),
               0 0 60px rgba(255, 140, 66, 0.3),
               0 0 90px rgba(157, 78, 221, 0.2);
  
  --glass-effect: backdrop-filter: blur(20px) saturate(180%);
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
  
  /* Animations avancées */
  --float-animation: float 6s ease-in-out infinite;
  --scanline-animation: scanline 10s linear infinite;
  --hologram-animation: hologram-pulse 4s ease-in-out infinite;
}

/* === RÉINITIALISATION FUTURISTE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 77, 125, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 157, 0.1) 0%, transparent 50%),
    var(--void-black);
  color: var(--cyber-silver);
  font-family: &#039;Inter&#039;, &#039;Space Grotesk&#039;, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Effet scanlines */
body::before {
  content: &#039;&#039;;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 255, 157, 0.03) 50%
  );
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 9999;
  animation: var(--scanline-animation);
}

/* === STRUCTURE HOLOGRAMMIQUE === */
.branding-interface {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  min-height: 100vh;
}

/* === SIDEBAR NEUROMORPHIQUE === */
.branding-sidebar {
  background: rgba(26, 26, 36, 0.7);
  backdrop-filter: blur(30px) saturate(180%);
  border-radius: 24px;
  padding: 40px 30px;
  border: var(--glass-border);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 40px;
  height: fit-content;
}

.branding-logo {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.logo-hologram {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: var(--hologram-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  box-shadow: var(--neon-glow);
  animation: var(--float-animation);
  position: relative;
  overflow: hidden;
}

.logo-hologram::after {
  content: &#039;&#039;;
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* === NAVIGATION HOLOGRAPHIQUE === */
.holo-nav {
  list-style: none;
}

.holo-nav-item {
  padding: 18px 24px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.holo-nav-item::before {
  content: &#039;&#039;;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 125, 0.2), transparent);
  transition: left 0.6s;
}

.holo-nav-item:hover::before {
  left: 100%;
}

.holo-nav-item.active {
  background: rgba(255, 77, 125, 0.1);
  border-color: var(--neon-coral);
  box-shadow: 0 0 20px rgba(255, 77, 125, 0.3);
}

.nav-indicator {
  width: 8px;
  height: 8px;
  background: var(--matrix-green);
  border-radius: 50%;
  display: inline-block;
  margin-right: 12px;
  box-shadow: 0 0 10px var(--matrix-green);
}

/* === CONTENU PRINCIPAL - DESIGN 2026 === */
.branding-content {
  display: grid;
  gap: 40px;
}

.content-section {
  background: rgba(26, 26, 36, 0.7);
  backdrop-filter: blur(30px) saturate(180%);
  border-radius: 28px;
  padding: 50px;
  border: var(--glass-border);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.content-section::before {
  content: &#039;&#039;;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--neon-coral), 
    var(--neon-orange), 
    var(--matrix-green), 
    transparent);
}

/* === LOGOS CYBERPUNK === */
.holo-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.holo-logo-card {
  background: rgba(10, 10, 15, 0.6);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.holo-logo-card::after {
  content: &#039;&#039;;
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--neon-coral), 
    var(--neon-orange), 
    var(--matrix-green), 
    var(--neural-purple));
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.holo-logo-card:hover::after {
  opacity: 1;
}

.holo-logo-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.logo-preview-3d {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: var(--hologram-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  box-shadow: var(--neon-glow);
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.6s;
}

.holo-logo-card:hover .logo-preview-3d {
  transform: perspective(1000px) rotateY(20deg);
}

/* === PALETTE DE COULEURS 2026 === */
.color-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.color-node {
  background: rgba(10, 10, 15, 0.6);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
}

.color-node::before {
  content: &#039;&#039;;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  border-radius: 20px 20px 0 0;
}

.color-node[data-color=&quot;#FD746C&quot;]::before { background: #FD746C; }
.color-node[data-color=&quot;#272C30&quot;]::before { background: #272C30; }
.color-node[data-color=&quot;#FF9068&quot;]::before { background: #FF9068; }
.color-node[data-color=&quot;#6C757D&quot;]::before { background: #6C757D; }
.color-node[data-color=&quot;#FFFFFF&quot;]::before { 
  background: #FFFFFF; 
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.color-node[data-color=&quot;#222222&quot;]::before { background: #222222; }
.color-node[data-color=&quot;#343A40&quot;]::before { background: #343A40; }
.color-node[data-color=&quot;#212529&quot;]::before { background: #212529; }

.color-node:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.color-info {
  margin-top: 90px;
}

.color-hex {
  font-family: &#039;Space Mono&#039;, monospace;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.color-name {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 5px;
}

/* === MODIFICATEURS NEURAL === */
.neural-modifiers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.modifier-chip {
  background: rgba(10, 10, 15, 0.6);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.modifier-chip::before {
  content: &#039;&#039;;
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--neon-coral), var(--matrix-green));
  opacity: 0;
  transition: opacity 0.4s;
}

.modifier-chip:hover::before {
  opacity: 1;
}

.modifier-chip:hover {
  transform: translateX(10px);
  border-color: rgba(255, 77, 125, 0.3);
}

/* Interrupteurs futuristes */
.neural-switch {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 36px;
}

.neural-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.neural-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  transition: .4s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.neural-slider:before {
  position: absolute;
  content: &quot;&quot;;
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background: var(--cyber-silver);
  border-radius: 50%;
  transition: .4s;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

input:checked + .neural-slider {
  background: linear-gradient(135deg, var(--neon-coral), var(--neural-purple));
}

input:checked + .neural-slider:before {
  transform: translateX(34px);
  background: white;
  box-shadow: 0 0 15px white;
}

/* === URLS CYBERNETIQUES === */
.cyber-urls {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.url-terminal {
  background: rgba(10, 10, 15, 0.8);
  border-radius: 16px;
  padding: 20px 25px;
  border: 1px solid rgba(0, 255, 157, 0.2);
  font-family: &#039;Space Mono&#039;, monospace;
  font-size: 1rem;
  color: var(--matrix-green);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.url-terminal::before {
  content: &#039;&gt;&#039;;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--matrix-green);
  font-weight: bold;
}

.url-terminal:hover {
  border-color: var(--matrix-green);
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.2);
  transform: translateX(5px);
}

/* === TYPOGRAPHIE 2026 === */
.section-header {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--neon-coral), var(--matrix-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(255, 77, 125, 0.3);
  letter-spacing: -0.5px;
}

.subsection-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 40px 0 20px;
  color: var(--cyber-silver);
  display: flex;
  align-items: center;
  gap: 10px;
}

.subsection-title::before {
  content: &#039;&#039;;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-coral), transparent);
}

/* === ANIMATIONS AVANCÉES === */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

@keyframes hologram-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* === RESPONSIVE 2026 === */
@media (max-width: 1200px) {
  .branding-interface {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .branding-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .branding-interface {
    padding: 20px;
  }
  
  .content-section {
    padding: 30px;
  }
  
  .holo-logos-grid,
  .color-matrix,
  .neural-modifiers {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    font-size: 2rem;
  }
}

/* === PARTICULES QUANTIQUES === */
.quantum-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--matrix-green);
  border-radius: 50%;
  animation: particle-float 20s infinite linear;
}

@keyframes particle-float {
  from { transform: translateY(100vh) rotate(0deg); }
  to { transform: translateY(-100vh) rotate(360deg); }
}

/* === INDICATEURS DE CHARGEMENT FUTURISTES === */
.loading-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 20px;
}

.loading-progress {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    var(--neon-coral), 
    var(--neon-orange), 
    var(--matrix-green));
  border-radius: 3px;
  animation: loading-scan 2s infinite;
}

@keyframes loading-scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
