@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
  --foundry: #0d0e14;
  --steel: #13151f;
  --ember: #a855f7;
  --ember-bright: #c084fc;
  --ember-glow: rgba(168, 85, 247, 0.4);
  --ash: #e8eaf2;
  --lead: #8b92a5;
  --border: #252836;
  --green: #00e87a;
  
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-heading: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--foundry);
  color: var(--ash);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Animations */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px var(--ember-glow); }
  50% { box-shadow: 0 0 30px var(--ember-glow); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

/* Utilities */
.container {
  max-w-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(13, 14, 20, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  transition: all 0.3s;
}

.nav-content {
  height: 80px;
}

.logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--lead);
  transition: color 0.2s;
  text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--ash);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--ember);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 12px 24px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  animation: pulseGlow 3s infinite;
}

.btn-primary:hover {
  background-color: var(--ember-bright);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--ash);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 12px 24px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--ember);
  color: var(--ember);
}

.btn-navbar {
  background-color: rgba(168, 85, 247, 0.1);
  color: var(--ember);
  border: 1px solid rgba(168, 85, 247, 0.4);
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-navbar:hover {
  background-color: var(--ember);
  color: white;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--ash);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 120px;
  background: url('https://media.base44.com/images/public/6a29f54a817d24c6dd474309/a745abd7d_ChatGPT_Image_Jun_9_2026_08_59_20_PM.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--foundry) 10%, rgba(13, 14, 20, 0.7) 60%, rgba(13, 14, 20, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

.status-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.1em;
}

.hero h1 {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero p.lead {
  font-size: 1.125rem;
  color: var(--lead);
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.stat-item {
  position: relative;
  padding: 0.75rem;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--lead);
  border-left: 1px solid var(--lead);
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid var(--lead);
  border-right: 1px solid var(--lead);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--lead);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--ember);
  font-weight: 600;
}

.ip-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(19, 21, 31, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(168, 85, 247, 0.2);
  z-index: 20;
}

.ip-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
}

.ip-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--lead);
}

.ip-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  cursor: pointer;
  transition: color 0.3s;
}

.ip-button:hover {
  color: var(--ash);
}

/* Features Section */
.features {
  padding: 100px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-line {
  width: 48px;
  height: 1px;
  background-color: var(--ember);
}

.section-label span {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--ember);
  letter-spacing: 0.3em;
}

.features h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.features > p {
  color: var(--lead);
  font-size: 0.875rem;
  max-width: 500px;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--border);
}

.feature-card {
  background-color: var(--foundry);
  padding: 2.5rem;
  transition: background-color 0.5s;
}

.feature-card:hover {
  background-color: rgba(19, 21, 31, 0.5);
}

.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.feature-icon {
  color: var(--ember-bright);
}

.feature-tag {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: rgba(139, 146, 165, 0.5);
  letter-spacing: 0.3em;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.feature-card:hover h3 {
  color: var(--ember);
}

.feature-card p {
  color: var(--lead);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Community Section */
.community {
  background-color: rgba(19, 21, 31, 0.3);
  padding: 100px 24px;
}

.community-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.community-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.community-info > p {
  color: var(--lead);
  font-size: 0.875rem;
  max-width: 450px;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--steel);
  border: 1px solid rgba(168, 85, 247, 0.1);
  padding: 1rem;
  transition: border-color 0.3s;
}

.social-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
}

.social-card-text h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--ash);
  transition: color 0.3s;
}

.social-card:hover .social-card-text h4 {
  color: var(--ember-glow);
}

.social-card-text p {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--lead);
  margin-top: 0.25rem;
}

.social-card svg {
  color: var(--lead);
  transition: color 0.3s;
}

.social-card:hover svg {
  color: var(--ember);
}

/* Final CTA */
.cta {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background-color: rgba(168, 85, 247, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--ember);
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 1.5rem;
}

.cta h2 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--lead);
  font-size: 0.875rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--lead);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--ember);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--lead);
}

/* About & Shop Pages Grids */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.servers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.server-card {
  background-color: rgba(19, 21, 31, 0.5);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: border-color 0.5s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.server-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--lead);
  border-left: 1px solid var(--lead);
}

.server-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid var(--lead);
  border-right: 1px solid var(--lead);
}

.server-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

.server-name {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--ash);
  text-transform: uppercase;
}

.tag-text {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
}

.status-badge {
  background: rgba(13, 14, 20, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: var(--ember);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  padding: 4px 8px;
}

.line-decorator {
  width: 48px;
  height: 1px;
  background-color: var(--ember);
}

.rule-item {
  border: 1px solid var(--border);
  background-color: var(--foundry);
  padding: 1.5rem;
  transition: border-color 0.3s;
  margin-bottom: 0.5rem;
}

.rule-item:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

/* Shop specific button */
.btn-shop {
  display: block;
  width: 100%;
  text-align: center;
  background-color: rgba(168, 85, 247, 0.1);
  color: var(--ember-bright);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 10px;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-shop:hover {
  background-color: var(--ember);
  color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 4rem; }
  .servers-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cta h2 { font-size: 2.5rem; }
  .community-content { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-btn-desktop { display: none; }
  .mobile-menu-btn { display: block; }
  .hero h1 { font-size: 3rem; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .stats-grid { gap: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
}
/* Staff Grid */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.staff-card {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.3s;
}

.staff-card:hover {
  transform: translateY(-5px);
}

.staff-avatar-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 4px;
  background: var(--ember);
  margin-bottom: 3rem;
}

.staff-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #1a1a1a;
  background-color: #1a1a1a;
}

.staff-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  bottom: 1rem;
  left: 0;
  padding: 0 1.5rem;
}

.staff-name {
  font-family: var(--font-heading);
  color: var(--ember);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.staff-role {
  font-family: var(--font-heading);
  color: var(--lead);
  text-transform: uppercase;
  font-size: 0.75rem;
}
/* Rules Accordion Styles */
.rule-item {
  border: 1px solid var(--border);
  background-color: var(--foundry);
  padding: 1.5rem;
  transition: border-color 0.3s;
  margin-bottom: 0.5rem;
  cursor: pointer;
  overflow: hidden;
}

.rule-item:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

.rule-item.active {
  border-color: var(--ember);
}

.rule-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rule-header-left {
  display: flex;
  align-items: center;
}

.rule-icon {
  color: var(--lead);
  transition: transform 0.3s ease;
}

.rule-item.active .rule-icon {
  transform: rotate(180deg);
  color: var(--ember);
}

.rule-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  color: var(--lead);
  font-size: 0.85rem;
  line-height: 1.6;
  padding-left: 2.3rem; /* Aligns roughly with title text */
}
/* Shop Filter Buttons */
.filter-btn {
  background-color: transparent;
  color: var(--lead);
  padding: 0.5rem 1rem;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  color: var(--ember-bright);
}

.filter-btn.active {
  background-color: var(--ember);
  color: white;
}
