/* Reset */

:root {
  --accent-color: #08afff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {;
  background: linearGradient(135deg, #1e1e1e, #2c2c2c);
  min-height: 100vh;
}

/* Navbar */
.navbar {
  position: fixed;
  left: 50px
  transform: translateX(-50%);
  width: 100%;
  max-width: 2400px;
  down: 20px;
  
  display: flex;
  justify-content: space-between;
  align-items: center;

    padding: 15px 30px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

  transition: 0.3s ease;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #08afff;
  text-shadow: 0 0 5px #08afff;
        }

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  position: relative;
  transition: 0.3s;
}

/* Hover underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #00f5ff;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #00f5ff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Button */
.btn {
  padding: 10px 15px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00f5ff, #008cff);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 140, 255, 0.5);
}

.navbar img {
  height: 0px;   /* modifică valoarea până arată bine */
  width: auto;    /* păstrează proporțiile */
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  color: white;
  gap: 50px;
}

.hero-content {
  max-width: 500px;
  box-shadow: 0 20px 70px rgba(0,0,0,0.4);
  border-radius: 20px;
  padding: 30px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00f5ff, #008cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.copy-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.08);
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  position: relative;
}

.copy-box span {
  font-weight: 600;
}

#copy-ip-button {
  padding: 8px 15px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(135deg, #00f5ff, #008cff);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

#copy-ip-button:hover {
  transform: scale(1.05);
  
}

.copied-msg {
  position: absolute;
  right: 30px;
  bottom: 25px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.3s ease;
  color: #00f5ff;
}

.copied-msg.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-image img {
  width: 500px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  background: #111; /* schimbă culoarea dacă vrei */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

.dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  opacity: 0.3;
  animation: blink 1.4s infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Fade pentru pagina */
body.loaded #loader {
  opacity: 0;
  pointer-events: none;
}

.mc-footer {
  color: #ccc;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-section h3 {
  color: #08afff;
  margin-bottom: 15px;
  font-weight: bold;
}
.footer-section h4 {
  color: #08afff;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #08afff;
}

.discord-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #5865F2;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: bold;
}

.discord-btn:hover {
  background: #4752c4;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 13px;
  color: #777;
}

.footer-section a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #08afff;
  width: 120%
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.feature-card {
  background: #111;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  color: #ccc;
  transition: 0.3s ease;
  border: 1px solid #1f1f1f;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #08AFFF;
  box-shadow: 0 10px 30px rgba(0, 255, 153, 0.15);
}

.feature-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #fff;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
}

.status-bar {
            position: fixed;
            width: 100%;
            top: 70px;
            background-color: #08afff;
            color: white;
            padding: 8px 0;
            text-align: center;
            font-size: 0.9rem;
            font-weight: bold;
            z-index: 99;
        }
        
        .status-bar-text {
            animation: move-status 15s infinite linear;
            display: inline-block;
            white-space: nowrap;
        }

        @keyframes move-status {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
