:root {
  --blue: #00baff;
  --glass: rgba(255, 255, 255, 0.08);
  --text-light: #d8d8d8;
  --bg: #0c0c0c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: var(--bg);
  color: white;
  overflow-x: hidden;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6) no-repeat;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--blue);
  text-shadow: 0 0 8px var(--blue);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Burger Menu */
.burger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--blue);
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    padding: 16px;
    display: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  }

  .nav-links a {
    margin: 8px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .burger {
    display: block;
  }
}


.hero {
  position: relative;
  background: url('/image/overview.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.server-ip {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  text-shadow: 0 0 14px #00baff88;
  margin-bottom: 16px;
}

.description {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 32px;
}

.buttons .btn {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.buttons .btn:hover {
  background: var(--blue);
  color: #000;
  box-shadow: 0 0 12px var(--blue);
}

.status-cards {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.status-card {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 18px 26px;
  border-radius: 12px;
  min-width: 200px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
}

.label {
  font-size: 0.85rem;
  color: #ccc;
  margin-bottom: 6px;
}

.value {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--blue);
}

/* Responsive */
@media (max-width: 600px) {
  .server-ip {
    font-size: 2.2rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .status-card {
    min-width: 160px;
  }
}



.about-section {
  background: #0a0a0a;
  padding: 100px 20px;
  color: white;
}

.about-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about-title {
  font-size: 2.9rem;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  position: relative;
}

.about-title .glow {
  color: var(--blue);
  text-shadow: 0 0 8px var(--blue), 0 0 16px var(--blue);
  position: relative;
}

.about-title .glow::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  border-radius: 2px;
  animation: pulseLine 2s infinite ease-in-out;
}

@keyframes pulseLine {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.about-intro {
  font-size: 1.25rem;
  line-height: 1.85;
  color: #bbbbbb;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.about-intro .highlight {
  color: var(--blue);
  font-weight: 600;
}

.about-button {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 6px;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-button:hover {
  background: var(--blue);
  color: #000;
  box-shadow: 0 0 16px var(--blue);
}

/* Mobile */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.2rem;
  }

  .about-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 0 10px;
  }

  .about-button {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
  }
}


.features-section {
  background: #0a0a0a;
  padding: 100px 20px;
  color: white;
}

.features-container {
  max-width: 1100px;
  margin: auto;
}

.features-title {
  font-size: 2.6rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 70px;
}

.features-title span {
  color: var(--blue);
  position: relative;
}

.features-title span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  border-radius: 2px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 186, 255, 0.1);
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.feature-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 186, 255, 0.1);
}

.feature-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(0, 186, 255, 0.08);
  border: 2px solid var(--blue);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 18px rgba(0, 186, 255, 0.3);
}

.feature-icon img {
  width: 60%;
  height: auto;
}

.feature-text h3 {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.feature-text p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .feature-row {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin-bottom: 16px;
  }

  .feature-text h3 {
    font-size: 1.3rem;
  }

  .features-title {
    font-size: 2rem;
  }
}

.discord-section {
  background: #0a0a0a;
  padding: 100px 20px;
  color: white;
  text-align: center;
}

.discord-container {
  max-width: 800px;
  margin: auto;
}

.discord-title {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.discord-title span {
  color: var(--blue);
  text-shadow: 0 0 10px var(--blue);
  position: relative;
}

.discord-title span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
  border-radius: 2px;
}

.discord-description {
  color: #bbbbbb;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 50px;
}

.discord-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 186, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 186, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.discord-info {
  text-align: left;
}

.discord-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 5px;
}

.discord-members {
  color: #ccc;
  font-size: 1rem;
}

.discord-members .online-number {
  color: #57f287;
  font-weight: bold;
}

.discord-button {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 8px;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
}

.discord-button:hover {
  background: var(--blue);
  color: black;
  box-shadow: 0 0 14px var(--blue);
}

/* Mobile */
@media (max-width: 768px) {
  .discord-box {
    flex-direction: column;
    text-align: center;
  }

  .discord-info {
    text-align: center;
  }

  .discord-button {
    width: 100%;
    padding: 14px;
  }
}

.faq-section {
  background-color: #0a0a0a;
  color: white;
  padding: 100px 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.5rem;
}

.faq-header h2 span {
  color: var(--blue);
  text-shadow: 0 0 10px var(--blue);
}

.faq-header p {
  color: #aaa;
  margin-top: 10px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 186, 255, 0.2);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  color: var(--blue);
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.faq-icon-text i {
  font-size: 1.1rem;
  color: var(--blue);
}

.faq-arrow {
  transition: transform 0.3s ease;
  color: #777;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.4s ease;
  padding-left: 32px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 10px;
}



.site-footer {
  background: #070707;
  border-top: 1px solid rgba(0, 186, 255, 0.15);
  padding: 40px 20px;
  color: #aaa;
  font-size: 0.95rem;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
}

.footer-nav {
  margin-bottom: 16px;
}

.footer-nav a {
  color: var(--blue);
  margin: 0 14px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px var(--blue);
}

.footer-social {
  margin: 20px 0;
}

.footer-social a {
  color: var(--blue);
  margin: 0 12px;
  font-size: 1.4rem;
  transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  color: white;
  transform: scale(1.2);
  text-shadow: 0 0 8px var(--blue);
}

.footer-copy {
  color: #666;
  font-size: 0.85rem;
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-nav a {
    display: inline-block;
    margin: 10px 10px;
  }

  .footer-social {
    margin-top: 12px;
  }
}

/* Scrollbar για WebKit browsers (Chrome, Edge, Opera, Safari) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 10px;
  box-shadow: 0 0 10px var(--blue);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #00cfff;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--blue) #0a0a0a;
}
