/* POLICE ECRITURE */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background:#050505;
  color:white;
}

/* ===============================
              TOP BAR
================================ */

.topbar{
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  background:
    linear-gradient(135deg,rgba(0,0,0,0.95) 0%,rgba(25,18,5,0.9) 45%,rgba(0,0,0,0.95) 100%);
  box-shadow: 0 10px 40px rgba(0,0,0,.7);
}

.topbar-inner{
  max-width:1300px;
  margin:auto;
  padding:14px 28px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
}

.nav{
  display:flex;
  gap:18px;
  justify-self:start;
}

.nav-item{
  padding: 8px 14px;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  outline: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.nav-item:hover{
  color: #ffffff;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}

.nav-item:focus,
.nav-item:active{
  background: transparent;
  border-color: transparent;
  color: rgba(255,255,255,.65);
}

.brand{
  justify-self:center;
  text-align:center;
  font-weight:bold;
  letter-spacing:.25em;
  transform: translateX(-10px);
}

/* ===============================
                HERO
================================ */

.hero-holocube{
  height:100vh;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.95)),
    url("../images/background.png") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle, rgba(0,0,0,0) 45%, rgba(0,0,0,.85) 100%);
}

.hero-content{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
  text-align:center;
}

.hero-logo{
  width:420px;
  max-width:90%;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.8));
}

.hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 46px;
  min-width: 160px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #7a3f00;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid #f7c45f;
  text-align: center;
  line-height: 1;
  margin-top: 6px;
  background: linear-gradient(to bottom,#ffd978 0%,#f7b84a 55%,#f1a933 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    0 6px 0 #c68c25,
    0 18px 36px rgba(0,0,0,.65);
}

.hero-btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    inset 0 -1px 0 rgba(0,0,0,.08),
    0 7px 0 #c9892b,
    0 24px 44px rgba(0,0,0,.65);
}

.hero-btn:active{
  transform: translateY(4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 2px 0 #c68c25,
    0 10px 20px rgba(0,0,0,.6);
}

.hero-btn-wrap{ transform: none; }

.hero-ip{
  margin-top:10px;
  font-size:16px;
  letter-spacing:.32em;
  opacity:.7;
  text-align:center;
}

/* ===============================
      SERVER INFO SECTION
================================ */

.server-info-section{
  padding: 120px 24px;
  background: #121212;
}

/* ===============================
      CONTENU FAQ
================================ */

.faq-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.faq-content h2 {
  font-size: 32px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 800px;
  text-align: left;
  color: #ffffff;
}

.faq-item {
  width: 100%;
  max-width: 800px;
  margin-bottom: 40px;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #f3b63d;
  text-align: left;
}

.faq-item p {
  opacity: 0.85;
  line-height: 1.6;
}

.faq-date{
  max-width: 800px;
  margin: 60px auto 0 auto;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

.faq-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #000;
  background: linear-gradient(135deg,#f6c453 0%,#f2a900 100%);
  box-shadow: 0 6px 20px rgba(242, 169, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ===============================
            FOOTER
================================ */

.site-footer{
  background:
    linear-gradient(135deg,rgba(0,0,0,0.98) 0%,rgba(30,20,5,0.95) 45%,rgba(0,0,0,0.98) 100%);
  color: #cfcfcf;
  padding: 80px 24px 30px;
  font-size: 14px;
}

.footer-inner{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 60px;
  align-items: start;
}

.footer-brand img{
  width: 160px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.8));
}

.footer-col h4{
  font-size: 12px;
  letter-spacing: .18em;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col a{
  display: block;
  color: #9f9f9f;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .15s ease;
}

.footer-col a:hover{ color: #f3b63d; }

/* ── Socials ── */

.footer-socials{
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 20px;
}

.footer-socials h4{
  font-size: 12px;
  letter-spacing: .18em;
  color: #fff;
  margin-bottom: 4px;
}

.footer-socials-icons{
  display: flex;
  gap: 18px;
}

.footer-socials a{
  color: inherit;
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
}

.footer-socials a svg{
  fill: #ffffff !important;
  transition: fill .15s ease, transform .15s ease;
}

.footer-socials a.footer-icon:hover svg{ fill: #5865F2 !important; transform: translateY(-2px); }
.footer-socials a.youtube:hover svg{ fill: #FF0000 !important; transform: translateY(-2px); }
.footer-socials a.tiktok:hover svg{ fill: #ff2d78 !important; transform: translateY(-2px); }
.footer-socials a.instagram:hover svg{ fill: #E1306C !important; transform: translateY(-2px); }
.footer-socials a.twitter:hover svg{ fill: #1DA1F2 !important; transform: translateY(-2px); }

.footer-socials a,
.footer-socials a:hover,
.footer-socials a:focus,
.footer-socials a:active{
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.footer-bottom{
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #8f8f8f;
}

.footer-bottom a,
.footer-bottom a:visited{ color: #8f8f8f; text-decoration: none; }
.footer-bottom a:hover{ color: #f3b63d; }

/* ===============================
        RESPONSIVE
================================ */

@media (max-width: 900px){
  .footer-inner{ grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px){
  html, body{ overflow-x: hidden; width: 100%; }
  .topbar{ position: relative; }
  .topbar-inner{
    max-width: 100%;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .brand{ order: -1; transform: none !important; margin-bottom: 6px; }
  .nav{ order: 0; justify-content: center; flex-wrap: wrap; gap: 10px; }
  .faq-content{ padding: 0 10px; }
  .faq-content h2{ font-size: 24px; text-align: center; }
  .faq-item h3{ font-size: 18px; }
  .faq-btn{ width: 100%; text-align: center; }
}