/* ==========================================================================
   WRECKAGE CITY - AAA LANDING PAGE DESIGN SYSTEM
   Theme: Obsidian & Fusion Orange (Cinematic Industrial)
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&family=Inter:wght@300;400;600&display=swap");
/* Global Reset & Base */
body {
  background-color: #050505;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  margin: 0;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: #c85a17;
  border-radius: 4px;
}

/* --- HEADER --- */
.aaa-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 30px 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.aaa-header.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.container-aaa {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.logo {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.logo-main {
  color: white;
}

.logo-sub {
  color: #c85a17;
}

.btn-signin {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 24px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-signin:hover {
  border-color: #c85a17;
  color: #c85a17;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url("/themes/themeBuilder/images/hero-bg.svg") no-repeat center center;
  background-size: cover;
  background-color: #050505;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, #050505 90%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.status-badge-aaa-modern {
  display: inline-block;
  padding: 6px 16px;
  background: #c85a17;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  border-radius: 2px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(200, 90, 23, 0.4);
  animation: pulse 2s infinite;
}

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

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    color: white;
    font-size: 2rem;
    animation: scroll-arrow-anim 2s ease-in-out infinite;
}

@keyframes scroll-arrow-anim {
    0% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.5; }
}
.glitch-text {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  color: white;
  margin: 0;
  position: relative;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.hero-tagline {
  font-size: 1.2rem;
  color: #d6d6d6;
  margin-top: 10px;
  margin-bottom: 40px;
  letter-spacing: 5px;
}

/* --- PILLARS SECTION --- */
.pillars-section {
  padding: 120px 0;
  background: #050505;
}

.section-header-aaa {
  margin-bottom: 80px;
}

.header-pre {
  display: block;
  color: #c85a17;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.section-header-aaa h2 {
  font-size: 3rem;
  margin: 0;
}

.header-line {
  width: 60px;
  height: 4px;
  background: #c85a17;
  margin-top: 20px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.pillar-card {
  position: relative;
  padding: 60px 40px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-10px);
  border-color: #c85a17;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pillar-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-size: cover;
  z-index: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.pillar-card.combat .pillar-bg {
  background-image: url("/home/workstation/.gemini/antigravity/brain/2f1125fa-a082-45ee-9917-7454006dc836/combat_vehicular_warfare_1777821946494.png");
}

.pillar-card.empire .pillar-bg {
  background-image: url("/home/workstation/.gemini/antigravity/brain/2f1125fa-a082-45ee-9917-7454006dc836/industrial_settlement_empire_1777821959489.png");
}

.pillar-card:hover .pillar-bg {
  opacity: 0.15;
  transform: scale(1.1);
}

.pillar-icon {
  font-size: 2.5rem;
  color: #c85a17;
  margin-bottom: 30px;
  position: relative;
}

.pillar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
}

.pillar-card p {
  color: #d6d6d6;
  margin-bottom: 30px;
  position: relative;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.pillar-list li {
  display: flex;
  align-items: center;
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.pillar-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #c85a17;
  margin-right: 15px;
  border-radius: 50%;
}

/* --- WORLD SHOWCASE --- */
.world-showcase {
  padding: 120px 0;
  background: #000;
}

.world-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.tag-modern {
  color: #00a3ff;
  font-weight: 700;
  letter-spacing: 3px;
}

.world-text h2 {
  font-size: 3.5rem;
  margin: 20px 0;
}

.world-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #c85a17;
}

.stat-label {
  font-size: 0.8rem;
  color: #a3a3a3;
  letter-spacing: 2px;
}

.world-image-wrapper {
  position: relative;
}

.img-aaa {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(200, 90, 23, 0.4)) 0%, transparent 70%;
  opacity: 0.3;
  z-index: -1;
}

/* --- BUTTONS --- */
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-aaa {
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 240px;
}

.btn-primary {
  background: #c85a17;
  color: white;
  box-shadow: 0 10px 30px rgba(200, 90, 23, 0.4);
}

.btn-primary:hover {
  transform: scale(1.05);
  background: #ff6a00;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: black;
}

.btn-sub {
  font-size: 0.99rem;
  opacity: 0.6;
  margin-top: 4px;
}

.btn-link {
    background: transparent;
    color: #d6d6d6;
    box-shadow: none;
    border: none;
}

.btn-link:hover {
    color: #c85a17;
    text-decoration: underline;
}

.btn-discord {
    background: #5865F2;
    color: white;
    border: 2px solid #5865F2;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

.btn-discord:hover {
    background: #4752C4;
    border-color: #4752C4;
    transform: scale(1.05);
}

/* --- SYSTEM CONTAINERS --- */
.modal-content-aaa {
  background: #0a0a0a;
  border: 1px solid #c85a17;
  padding: 40px;
  position: relative;
  color: white;
}

.modal-header-aaa h3 {
  margin: 0;
  font-size: 2rem;
  color: #c85a17;
}

.input-group-aaa {
  margin-bottom: 20px;
}

.input-group-aaa label {
  display: block;
  font-size: 0.95rem;
  color: #a3a3a3;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.input-group-aaa input {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  padding: 12px;
  color: white;
  font-family: "Inter", sans-serif;
}

.input-group-aaa input:focus {
  border-color: #c85a17;
  outline: none;
}

.full-width {
  width: 100%;
}

/* --- INTEL SECTION (FAQ) --- */
.intel-section {
  padding: 120px 0;
  background: #0a0a0a;
}

.intel-grid {
  max-width: 800px;
  margin: 60px auto 0;
}

.intel-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.intel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 15px 0;
}

.intel-header:hover {
  color: #c85a17;
}

.intel-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
  color: #d6d6d6;
  font-size: 0.95rem;
}

.intel-item:hover .intel-body {
  max-height: 200px;
  transition: all 0.5s cubic-bezier(1, 0, 1, 0);
  padding-top: 10px;
}

.intel-item:hover .intel-header i {
  transform: rotate(45deg);
  color: #c85a17;
}

.intel-header i {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 0.8rem;
}

/* --- ROADMAP SECTION --- */
.roadmap-section-aaa {
    padding: 120px 0;
    background: #0a0a0a;
}

.timeline-aaa {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.timeline-aaa::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
    padding: 0 40px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background: #050505;
    border: 2px solid #a3a3a3;
    border-radius: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-item.live .timeline-dot {
    border-color: #c85a17;
    background: #c85a17;
    box-shadow: 0 0 15px rgba(200, 90, 23, 0.4);
}

.timeline-item.active .timeline-dot {
    border-color: #c85a17;
    box-shadow: 0 0 10px rgba(200, 90, 23, 0.4);
}

.phase-tag {
    color: #c85a17;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.timeline-content h4 {
    margin: 0 0 10px 0;
    color: #ffffff;
}

.timeline-content p {
    color: #d6d6d6;
    margin: 0;
    font-size: 0.95rem;
}

/* --- WARNING ALERT --- */
.warning-alert {
    background: rgba(255, 60, 60, 0.1);
    border-left: 4px solid #ff3c3c;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ff3c3c;
}

.warning-alert p {
    margin: 0;
    color: #ffffff;
}

.modal-content-aaa.warning {
    border-color: #ff3c3c;
}

/* --- FINAL CTA --- */
.final-cta-section {
    padding: 100px 0;
    background: #050505;
}

.cta-card {
    background: rgba(255, 106, 0, 0.05);
    border: 1px solid rgba(255, 106, 0, 0.2);
    padding: 60px;
    text-align: center;
    border-radius: 4px;
}

.cta-card h2 {
    color: #c85a17;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-card p {
    color: #d6d6d6;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- FOOTER --- */
.minimal-footer {
  padding: 60px 0;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.minimal-footer p {
  color: #a3a3a3;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* Animations */
@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
.glitch-text:hover {
  animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .world-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .world-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pillars-section,
    .world-showcase,
    .roadmap-section-aaa,
    .intel-section,
    .final-cta-section {
        padding: 40px 0;
    }

    .world-content {
        gap: 20px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .world-text h2 {
        margin: 10px 0;
    }

    .world-stats {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .timeline-aaa::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
    }

    .cta-card {
        padding: 30px 15px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-aaa {
        min-width: 100%;
    }
}

/*# sourceMappingURL=login.styles.css.map */
