/* ===== BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background-color: #0a0a0f;
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #4fc3f740 #0a0a0f;
}
*::-webkit-scrollbar { width: 6px; }
*::-webkit-scrollbar-track { background: #0a0a0f; }
*::-webkit-scrollbar-thumb { background: #4fc3f740; border-radius: 3px; }
*::-webkit-scrollbar-thumb:hover { background: #4fc3f780; }

/* ===== FONTS ===== */
.font-orbitron, h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
}

.font-rajdhani, p, span, a, div {
  font-family: 'Rajdhani', sans-serif;
}

/* ===== PARTICLES CANVAS ===== */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.status-container {
  max-width: 64rem;
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
  padding: 1.25rem 0;
}

#navbar.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 0;
}

.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-diamond {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(79, 195, 247, 0.5);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-inner {
  width: 0.75rem;
  height: 0.75rem;
  background: rgba(79, 195, 247, 0.3);
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.logo-accent {
  color: #4fc3f7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #9ca3af;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #4fc3f7;
}

.nav-discord {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(88, 101, 242, 0.2);
  border: 1px solid rgba(88, 101, 242, 0.4);
  border-radius: 2px;
  color: #5865F2;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.nav-discord:hover {
  background: rgba(88, 101, 242, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('tower.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.4);
}

.hero-overlay-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.6), transparent, #0a0a0f);
}

.hero-overlay-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 15, 0.5), transparent, rgba(10, 10, 15, 0.5));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

/* Hero Diamonds */
.hero-diamond-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-diamond {
  position: absolute;
}

.diamond-1 {
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(79, 195, 247, 0.4);
  transform: rotate(45deg);
  animation: spin-slow 20s linear infinite;
}

.diamond-2 {
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(255, 213, 79, 0.3);
  transform: rotate(45deg);
  inset: 0.5rem;
  animation: spin-reverse 15s linear infinite;
}

.diamond-3 {
  width: 5rem;
  height: 5rem;
  background: rgba(79, 195, 247, 0.1);
  transform: rotate(45deg);
  inset: 1rem;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  transition: text-shadow 0.1s ease;
}

.hero-title-text {
  background: linear-gradient(to right, #4fc3f7, #ffffff, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  color: #ffd54f;
  transition: text-shadow 0.1s ease;
}

.hero-description {
  color: #d1d5db;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 1rem;
  line-height: 1.7;
  font-family: 'Rajdhani', sans-serif;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79, 195, 247, 0.1);
  border: 1px solid rgba(79, 195, 247, 0.3);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
  animation: pulse-slow 3s ease-in-out infinite;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4fc3f7;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge span {
  color: #4fc3f7;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, #0a0a0f, transparent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(to right, #5865F2, #7c4dff);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.5);
}

.btn-primary .btn-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-icon {
  font-size: 1.25rem;
}

.btn-secondary {
  border: 1px solid rgba(79, 195, 247, 0.5);
  color: #4fc3f7;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(79, 195, 247, 0.1);
  border-color: #4fc3f7;
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.3);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  position: relative;
  padding: 6rem 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-line {
  height: 1px;
  width: 4rem;
}

.line-left-cyan {
  background: linear-gradient(to right, transparent, #4fc3f7);
}

.line-right-cyan {
  background: linear-gradient(to left, transparent, #4fc3f7);
}

.line-left-gold {
  background: linear-gradient(to right, transparent, #ffd54f);
}

.line-right-gold {
  background: linear-gradient(to left, transparent, #ffd54f);
}

.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.label-cyan { color: #4fc3f7; }
.label-gold { color: #ffd54f; }

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.text-gold { color: #ffd54f; }
.text-cyan { color: #4fc3f7; }

.section-description {
  color: #9ca3af;
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.7;
  font-family: 'Rajdhani', sans-serif;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(to bottom right, rgba(26, 26, 46, 0.8), rgba(15, 15, 26, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  transition: all 0.5s ease;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-2px);
}

.card-top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.info-card:hover .card-top-line {
  opacity: 1;
}

.card-cyan { border-color: rgba(79, 195, 247, 0.2); }
.card-cyan:hover { border-color: rgba(79, 195, 247, 0.5); }
.card-cyan .card-top-line { background: linear-gradient(to right, transparent, #4fc3f7, transparent); }

.card-gold { border-color: rgba(255, 213, 79, 0.2); }
.card-gold:hover { border-color: rgba(255, 213, 79, 0.5); }
.card-gold .card-top-line { background: linear-gradient(to right, transparent, #ffd54f, transparent); }

.card-purple { border-color: rgba(124, 77, 255, 0.2); }
.card-purple:hover { border-color: rgba(124, 77, 255, 0.5); }
.card-purple .card-top-line { background: linear-gradient(to right, transparent, #7c4dff, transparent); }

.card-red { border-color: rgba(239, 83, 80, 0.2); }
.card-red:hover { border-color: rgba(239, 83, 80, 0.5); }
.card-red .card-top-line { background: linear-gradient(to right, transparent, #ef5350, transparent); }

.card-icon-wrap {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}

.icon-cyan { border: 1px solid rgba(79, 195, 247, 0.3); }
.card-cyan:hover .icon-cyan { border-color: #4fc3f7; }

.icon-gold { border: 1px solid rgba(255, 213, 79, 0.3); }
.card-gold:hover .icon-gold { border-color: #ffd54f; }

.icon-purple { border: 1px solid rgba(124, 77, 255, 0.3); }
.card-purple:hover .icon-purple { border-color: #7c4dff; }

.icon-red { border: 1px solid rgba(239, 83, 80, 0.3); }
.card-red:hover .icon-red { border-color: #ef5350; }

.card-icon {
  transform: rotate(-45deg);
  font-size: 1.125rem;
}

.icon-cyan .card-icon { color: #4fc3f7; }
.icon-gold .card-icon { color: #ffd54f; }
.icon-purple .card-icon { color: #7c4dff; }
.icon-red .card-icon { color: #ef5350; }

.card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.card-text {
  color: #9ca3af;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.7;
}

/* ===== STATUS SECTION ===== */
.status-section {
  position: relative;
  padding: 6rem 1rem;
}

.status-bg-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(79, 195, 247, 0.02), transparent);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(79, 195, 247, 0.5), rgba(124, 77, 255, 0.5), transparent);
}

@media (min-width: 768px) {
  .timeline-line {
    left: 2rem;
  }
}

.milestone {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .milestone {
    padding-left: 5rem;
  }
}

.timeline-dot {
  position: absolute;
  left: 0.75rem;
  top: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .timeline-dot {
    left: 1.25rem;
  }
}

.dot-inner {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.milestone-card {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(to right, rgba(26, 26, 46, 0.6), rgba(15, 15, 26, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  transition: all 0.5s ease;
}

.milestone-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(0.25rem);
}

.milestone-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .milestone-header {
    flex-direction: row;
    align-items: center;
  }
}

.milestone-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.milestone-icon {
  font-size: 1.125rem;
}

.milestone-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
}

.badge-progress {
  background: rgba(79, 195, 247, 0.1);
  color: #4fc3f7;
  border: 1px solid rgba(79, 195, 247, 0.3);
}

.badge-complete {
  background: rgba(102, 187, 106, 0.1);
  color: #66bb6a;
  border: 1px solid rgba(102, 187, 106, 0.3);
}

.milestone-desc {
  color: #9ca3af;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 1rem;
}

/* ===== PROGRESS BAR ===== */
.progress-wrap {
  position: relative;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.progress-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-family: 'Rajdhani', sans-serif;
}

.progress-value {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
}

.progress-bar {
  height: 0.5rem;
  background: #1a1a2e;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-fill {
  height: 100%;
  border-radius: 9999px;
  position: relative;
  transition: width 1s ease;
}

.progress-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  padding: 4rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0a0a0f, transparent);
}

.footer-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-diamond-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-diamond {
  position: absolute;
}

.footer-diamond-outer {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(79, 195, 247, 0.3);
  transform: rotate(45deg);
}

.footer-diamond-inner {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 213, 79, 0.2);
  transform: rotate(45deg);
  inset: 0.375rem;
}

.footer-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-desc {
  color: #9ca3af;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-legal {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal-text {
  color: #4b5563;
  font-size: 0.875rem;
  font-family: 'Rajdhani', sans-serif;
}

.footer-legal-small {
  color: #374151;
  font-size: 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  margin-top: 0.5rem;
}

/* ===== ANIMATIONS ===== */
@keyframes spin-slow {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(45deg); }
  to { transform: rotate(-315deg); }
}

@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}
