@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at 50% -20%, #0e1a35, #000814 70%);
  color: #fff;
  overflow-x: hidden;
}

.hero-title {
  font-size: 2.8rem;
  margin: 20px 0 15px;
  letter-spacing: 2px;
}

.brand-gradient {
  background: linear-gradient(90deg, #00ffff, #00ffaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0,255,255,0.6);
}

.light-text {
  color: #ffffff;
  font-weight: 400;
}

.landing-card {
  backdrop-filter: blur(20px);
  background: rgba(10, 15, 35, 0.65);
  border: 1px solid rgba(0,255,255,0.15);
  border-radius: 24px;
  padding: 50px 80px;
  box-shadow: 0 0 60px rgba(0,255,255,0.15);
}

.landing-buttons {
  display: flex;
  gap: 30px;
}

/* ========================================= */
/* PAGE STRUCTURE */
/* ========================================= */

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================= */
/* HEADER */
/* ========================================= */

.site-header::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0,255,255,0.2), transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

.site-header {
  text-align: center;
  padding: 100px 20px 40px;
  position: relative;
}

.logo {
  width: 240px;
  filter: drop-shadow(0 0 60px #00ffffaa);
  transition: 0.4s ease;
}

.logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 80px #00ffff);
}

h1 {
  margin: 20px 0 5px;
  letter-spacing: 4px;
  font-weight: 700;
}

.subtitle {
  color: #8ca3c7;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* ========================================= */
/* MAIN CONTENT */
/* ========================================= */

.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

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

.landing-buttons {
  display: flex;
  gap: 25px;
  margin-top: 30px;
}

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

.primary-btn {
  background: linear-gradient(135deg, #00c8ff, #00ffaa);
  padding: 16px 34px;
  border-radius: 14px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s cubic-bezier(.25,.8,.25,1);
  box-shadow: 0 8px 20px rgba(0,255,200,0.25);
}

.primary-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(0,255,200,0.5);
}

.primary-btn.alt {
  background: linear-gradient(135deg, #2563eb, #00ffaa);
}

/* ========================================= */
/* AUTH CARD */
/* ========================================= */

.auth-card {
  backdrop-filter: blur(20px);
  background: rgba(10, 15, 35, 0.75);
  border: 1px solid rgba(0,255,255,0.15);
  border-radius: 24px;
  width: 420px;
  padding: 50px;
  text-align: center;
  box-shadow:
    0 0 60px rgba(0,255,255,0.1),
    inset 0 0 20px rgba(0,255,255,0.05);
  animation: cardIn 0.5s ease;
}

@keyframes cardIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.auth-card h2 {
  margin-bottom: 25px;
  letter-spacing: 2px;
}

/* ========================================= */
/* INPUTS */
/* ========================================= */

.auth-card input {
  width: 100%;
  padding: 14px;
  margin-top: 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,255,255,0.15);
  background: rgba(12, 27, 42, 0.8);
  color: #00ffff;
  font-size: 1rem;
  text-align: center;
  transition: 0.25s ease;
}

.auth-card input:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 15px rgba(0,255,255,0.4);
}

/* ========================================= */
/* FULL BUTTON */
/* ========================================= */

.full {
  width: 100%;
  margin-top: 28px;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.site-footer {
  text-align: center;
  padding: 25px;
  font-size: 0.85rem;
  color: #6b7da5;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 12px;
}

.footer-links a {
  color: #00ffff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.footer-links a:hover {
  text-shadow: 0 0 12px #00ffff;
}

.discord-icon {
  width: 30px;
  filter: drop-shadow(0 0 12px #00ffff);
  transition: 0.25s;
}

.discord-icon:hover {
  transform: scale(1.15);
}

/* ========================================= */
/* MODAL */
/* ========================================= */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: rgba(12, 27, 42, 0.9);
  padding: 50px;
  border-radius: 24px;
  text-align: center;
  box-shadow:
    0 0 60px rgba(0,255,255,0.3);
  transform: scale(0.9);
  transition: 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.tos-body {
  text-align: left;
  margin: 25px 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #b8dfff;
}

.tos-body ul {
  padding-left: 20px;
}

/* ================= DASHBOARD ================= */

.dashboard-wrapper {
  display: flex;
  height: 100vh;
  background: radial-gradient(circle at top, #0a0f1f, #000814 80%);
}

.sidebar {
  width: 240px;
  background: #081426;
  border-right: 1px solid #00ffff22;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.sidebar-logo img {
  width: 40px;
}

.sidebar-logo span {
  font-weight: 600;
  font-size: 1.1rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-nav a {
  text-decoration: none;
  color: #aaa;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.2s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: #00ffff22;
  color: #00ffff;
}

.dashboard-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid #00ffff22;
}

.plan-badge {
  background: linear-gradient(90deg, #00c8ff, #00ffaa);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #000;
  font-weight: 600;
}

.dashboard-content {
  padding: 30px;
}

.welcome-card {
  background: #0c1b2a;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px #00ffff22;
}

.server-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.server-grid {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.server-card {
  background: #0c1b2a;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 0 20px #00ffff22;
}

.hidden {
  display: none;
}

.analytics-card {
  background: #0c1b2a;
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 0 20px #00ffff22;
}

.upgrade-box {
  margin-top: 20px;
  padding: 15px;
  background: #1a2235;
  border-left: 4px solid #00ffaa;
  border-radius: 10px;
}

.alt-btn {
  background: linear-gradient(135deg, #2563eb, #00ffaa);
  margin-top: 10px;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-dot.online {
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 5px #00ff88; }
  50% { box-shadow: 0 0 20px #00ff88; }
  100% { box-shadow: 0 0 5px #00ff88; }
}

.status-dot.offline {
  background: #ff4444;
  box-shadow: 0 0 8px #ff4444;
}


