/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

body{
  background:#000;
  color:#fff;
  overflow-x:hidden;
}

/* BACKGROUND FULL */
.bg{
  position:fixed;
  inset:0;
  background:url("img/bg.jpg") center / cover no-repeat;
  z-index:-1;
}

/* MAIN CONTAINER */
.container{
  max-width:1100px;
  margin:80px auto;
  padding:0 20px;
}

/* TITLE */
.title{
  background:#e5e7eb;
  color:#1e3a8a;
  text-align:center;
  padding:14px;
  border-radius:8px;
  letter-spacing:4px;
  font-weight:900;
  margin-bottom:30px;
  animation:titlePulse 2.5s infinite ease-in-out;
}

.title span{
  color:#2563eb;
}

/* ================= CARDS ================= */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  margin-bottom:40px;
}

.card{
  background:rgba(0,0,0,.65);
  border-radius:14px;
  padding:10px;
  text-align:center;
  transition:.25s;
  text-decoration:none;
  color:inherit;
}

.cards a,
.cards a:visited,
.cards a:hover,
.cards a:active{
  color:#ffffff !important;
  text-decoration:none;
}

.card img{
  width:100%;
  height:130px;
  object-fit:cover;
  border-radius:10px;
}

.card p{
  margin-top:10px;
  font-weight:700;
  color:#ffffff;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 25px rgba(0,140,255,.4);
}

/* CARD ACTIV */
@keyframes pulseGlow{
  0%{
    box-shadow:
    0 0 12px rgba(0,140,255,.4),
    0 0 25px rgba(0,140,255,.25);
  }

  50%{
    box-shadow:
    0 0 22px rgba(0,180,255,.8),
    0 0 45px rgba(0,180,255,.55);
  }

  100%{
    box-shadow:
    0 0 12px rgba(0,140,255,.4),
    0 0 25px rgba(0,140,255,.25);
  }
}

.card.active{
  position:relative;
  border:2px solid rgba(0,160,255,.9);
  animation:pulseGlow 2.2s infinite ease-in-out;
  transform:scale(1.05);
}

.card.active p{
  color:#eaf3ff;
}

/* BADGE */
.card.active::after{
  content:"RECOMANDAT";
  position:absolute;
  top:-10px;
  right:-10px;

  background:
  linear-gradient(
    135deg,
    #00aaff,
    #0077ff
  );

  color:#fff;
  font-size:11px;
  font-weight:800;

  padding:6px 10px;

  border-radius:999px;

  letter-spacing:.5px;

  box-shadow:
  0 0 18px rgba(0,170,255,.7);

  animation:badgePulse 1.8s infinite ease-in-out;
  z-index:5;
}

@keyframes badgePulse{
  0%{transform:scale(1);}
  50%{transform:scale(1.08);}
  100%{transform:scale(1);}
}

/* UNDERLINE */
.card.active::before{
  content:"";
  position:absolute;

  left:15%;
  bottom:-8px;

  width:70%;
  height:3px;

  background:#1e90ff;

  border-radius:10px;

  box-shadow:
  0 0 12px rgba(30,144,255,0.8);

  animation:underlinePulse 2s infinite ease-in-out;
}

@keyframes underlinePulse{
  0%{
    opacity:.6;
    box-shadow:
    0 0 8px rgba(30,144,255,0.6);
  }

  50%{
    opacity:1;
    box-shadow:
    0 0 18px rgba(30,144,255,1);
  }

  100%{
    opacity:.6;
    box-shadow:
    0 0 8px rgba(30,144,255,0.6);
  }
}

/* TITLE EFFECT */
@keyframes titlePulse{
  0%{
    box-shadow:
    0 0 10px rgba(37,99,235,0.4);

    transform:scale(1);
  }

  50%{
    box-shadow:
    0 0 25px rgba(37,99,235,0.9);

    transform:scale(1.03);
  }

  100%{
    box-shadow:
    0 0 10px rgba(37,99,235,0.4);

    transform:scale(1);
  }
}

/* ================= IMAGE ================= */

.client-image{
  width:100%;
  max-width:880px;
  height:auto;

  border-radius:16px;

  box-shadow:
  0 0 45px rgba(0,160,255,.55);

  transition:.35s ease;

  animation:fadeZoom .6s ease-out;
}

.client-image:hover{
  transform:scale(1.04);

  box-shadow:
  0 0 55px rgba(0,180,255,.75);
}

@keyframes fadeZoom{
  from{
    opacity:0;
    transform:scale(.95);
  }

  to{
    opacity:1;
    transform:scale(1);
  }
}

/* ================= DESCRIPTION ================= */

.box{
  background:rgba(0,0,0,.7);

  border-radius:16px;

  box-shadow:
  0 0 30px rgba(0,150,255,.35);

  padding:20px;

  margin:30px auto;

  overflow:hidden;

  max-width:1100px;
  width:100%;
}

.nc-scroll{
  max-height:420px;

  overflow-y:auto;
  overflow-x:hidden;

  padding:20px 22px;

  color:#f1f1f1;
  line-height:1.6;

  background:rgba(0,0,0,.55);

  border-radius:14px;

  box-shadow:
  0 0 25px rgba(0,120,255,.35);
}

.nc-scroll::-webkit-scrollbar{
  width:8px;
}

.nc-scroll::-webkit-scrollbar-thumb{
  background:#1e90ff;
  border-radius:10px;
}

.nc-scroll h3{
  margin:18px 0 8px;

  font-size:17px;
  font-weight:800;

  color:#9dd6ff;
}

.nc-scroll ul,
.nc-scroll ol{
  margin:10px 0 14px 20px;
}

.nc-scroll li{
  margin-bottom:6px;
}

.nc-scroll .warning{
  margin-top:18px;

  padding:14px;

  border-radius:10px;

  background:rgba(255,0,0,.1);

  border:1px solid rgba(255,0,0,.4);

  color:#ff4d4d;

  font-weight:700;
  text-align:center;
}

/* ================= BUTTONS ================= */

.buttons{
  display:flex;
  justify-content:center;
  gap:22px;
  margin-top:25px;
}

.btn{
  position:relative;

  padding:14px 30px;

  border-radius:12px;

  text-decoration:none;

  color:#fff;
  font-weight:900;

  letter-spacing:.5px;

  display:inline-flex;
  flex-direction:column;
  align-items:center;

  gap:6px;

  transition:all .25s ease;
}

.btn-exe{
  background:
  linear-gradient(
    135deg,
    #1e3a8a,
    #2563eb
  );

  box-shadow:
  0 0 18px rgba(0,180,255,.6);

  animation:exePulse 1.8s infinite ease-in-out;
}

.btn-exe:hover{
  transform:
  translateY(-4px)
  scale(1.08);

  box-shadow:
  0 0 45px rgba(0,220,255,1);
}

.btn-rar{
  background:
  linear-gradient(
    135deg,
    #111,
    #1f2933
  );

  box-shadow:
  0 0 10px rgba(120,180,255,.35);

  animation:rarPulse 3.5s infinite ease-in-out;
}

.btn-rar:hover{
  transform:
  translateY(-2px)
  scale(1.04);

  box-shadow:
  0 0 28px rgba(120,180,255,.6);
}

@keyframes exePulse{
  0%{
    box-shadow:
    0 0 18px rgba(0,180,255,.6);
  }

  50%{
    box-shadow:
    0 0 30px rgba(0,220,255,1);
  }

  100%{
    box-shadow:
    0 0 18px rgba(0,180,255,.6);
  }
}

@keyframes rarPulse{
  0%{
    box-shadow:
    0 0 10px rgba(120,180,255,.35);
  }

  50%{
    box-shadow:
    0 0 16px rgba(120,180,255,.55);
  }

  100%{
    box-shadow:
    0 0 10px rgba(120,180,255,.35);
  }
}

.count{
  display:block;
  font-size:12px;
  font-weight:700;
  opacity:.85;
  line-height:1;
}

.btn-exe .count{
  color:#7dd3fc;
}

.btn-rar .count{
  color:#d8b4fe;
}

/* ================= TOP MENU ================= */

.top-menu{
  position:sticky;
  top:0;
  z-index:50;

  background:rgba(10,15,25,.85);

  backdrop-filter:blur(6px);

  border-bottom:
  1px solid rgba(0,160,255,.25);
}

.top-menu ul{
  max-width:1100px;

  margin:0 auto;

  padding:10px 20px;

  list-style:none;

  display:flex;
  justify-content:center;

  gap:26px;

  flex-wrap:wrap;
}

.top-menu a{
  color:#e5e7eb;

  text-decoration:none;

  font-weight:700;
  font-size:14px;

  letter-spacing:.6px;

  padding:8px 12px;

  border-radius:6px;

  transition:all .25s ease;
}

.top-menu a:hover{
  color:#7dd3fc;
  background:rgba(0,140,255,.12);
}

.top-menu a.active{
  color:#00e5ff;
  box-shadow:
  inset 0 -2px 0 #00e5ff;
}

/* ================= DROPDOWN ================= */

.top-menu .dropdown{
  position:relative;
}

.top-menu .dropdown-menu{
  position:absolute;

  top:100%;
  left:0;

  background:rgba(0,0,0,.95);

  border-radius:12px;

  padding:10px 0;

  min-width:230px;

  opacity:0;
  visibility:hidden;

  transform:translateY(10px);

  transition:all .25s ease;

  z-index:9999;
}

.top-menu .dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu li a{
  display:block;

  padding:10px 18px;

  color:#fff;

  font-weight:600;

  text-decoration:none;

  transition:background .2s ease;
}

.dropdown-menu li a:hover{
  background:rgba(0,160,255,.15);
  color:#7dd3fc;
}

/* ================= STATS ================= */

.stats-wrapper{
  width:1100px;
  max-width:calc(100% - 40px);

  margin:40px auto 50px;
  padding:10px;

  border-radius:24px;

  background:
  linear-gradient(
    180deg,
    rgba(10,15,30,.88),
    rgba(5,8,18,.92)
  );

  border:
  1px solid rgba(0,170,255,.18);

  box-shadow:
  0 0 30px rgba(0,170,255,.18),
  inset 0 0 25px rgba(0,170,255,.05);

  backdrop-filter:blur(10px);
}

.stats-title{
  text-align:center;

  color:#fff;

  font-size:10px;
  font-weight:800;

  margin-bottom:35px;

  text-shadow:
  0 0 15px rgba(88,166,255,.45);
}

.stats-title span{
  display:block;

  font-size:15px;

  color:#9fb4d3;

  margin-top:8px;

  font-weight:500;
}

.stats-chart{
  height:160px;

  display:flex;
  align-items:flex-end;
  justify-content:space-between;

  gap:20px;
}

.stat-item{
  flex:1;
  text-align:center;
}

.stat-bar-wrap{
  height:90px;

  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.stat-bar{
  width:20px;

  border-radius:14px 14px 0 0;

  background:
  linear-gradient(
    180deg,
    #58a6ff,
    #2563eb
  );

  box-shadow:
  0 0 20px rgba(37,99,235,.45);

  transition:.3s ease;
}

.stat-bar:hover{
  transform:translateY(-6px);

  box-shadow:
  0 0 35px rgba(88,166,255,.7);
}

.stat-value{
  margin-top:12px;

  color:#dce8ff;

  font-size:15px;
  font-weight:700;
}

.stat-day{
  margin-top:8px;

  color:#8ea2c5;

  font-size:14px;

  text-transform:capitalize;
}

/* ================= SERVER LIST ================= */

.server-list{
  margin-top:40px;
}

.server-row{
  display:flex;

  justify-content:space-between;
  align-items:center;

  gap:20px;

  background:
  rgba(10,15,30,.88);

  border:
  1px solid rgba(0,170,255,.12);

  border-radius:16px;

  padding:18px 22px;

  margin-bottom:18px;

  transition:.25s ease;

  box-shadow:
  0 0 18px rgba(0,140,255,.08);
}

.server-row:hover{
  transform:translateY(-2px);

  box-shadow:
  0 0 25px rgba(0,180,255,.22);
}

.server-left{
  flex:1;
}

.server-title{
  font-size:22px;
  font-weight:800;

  color:#38bdf8;

  margin-bottom:8px;
}

.server-ip{
  color:#dbeafe;
  font-size:15px;
}

.server-right{
  display:flex;
  align-items:center;
  gap:22px;
}

.server-map{
  color:#f59e0b;
  font-weight:700;
}

.server-players{
  color:#86efac;
  font-weight:800;
}

.server-join{
  background:
  linear-gradient(
    135deg,
    #2563eb,
    #00aaff
  );

  color:#fff;
  text-decoration:none;

  padding:10px 18px;

  border-radius:10px;

  font-weight:800;

  transition:.25s ease;
}

.server-join:hover{
  transform:scale(1.05);

  box-shadow:
  0 0 20px rgba(0,180,255,.55);
}

/* ================= MOBILE ================= */

@media (max-width:768px){

  .top-menu{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

    background:rgba(0,0,0,.85);

    backdrop-filter:blur(8px);

    border-bottom:
    1px solid rgba(255,255,255,0.08);
  }

  .top-menu ul{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 12px;

    gap:10px;
  }

  .top-menu li{
    list-style:none;
  }

  .top-menu a{
    font-size:12px;
    padding:6px 8px;
    white-space:nowrap;
  }

  .container{
    margin-top:120px;
  }

  .top-menu .dropdown:hover .dropdown-menu{
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
  }

  .top-menu .dropdown.open .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    position:relative;
  }

  .stats-wrapper{
    padding:20px 15px;
    border-radius:18px;
  }

  .stats-title{
    font-size:24px;
    margin-bottom:25px;
  }

  .stats-title span{
    font-size:13px;
  }

  .stats-chart{
    gap:10px;
    height:260px;
  }

  .stat-bar-wrap{
    height:170px;
  }

  .stat-bar{
    width:32px;
    border-radius:10px 10px 0 0;
  }

  .stat-value{
    font-size:11px;
  }

  .stat-day{
    font-size:11px;
  }

  .server-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .server-right{
    width:100%;
    justify-content:space-between;
  }

  .server-title{
    font-size:18px;
  }


.server-banner{
    width:420px;
    border-radius:12px;
    display:block;
}








































