@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Logo Matched Colors */
  --bg-deep: #0a0a0a;
  --bg-panel: rgba(20, 20, 20, 0.8);
  --bg-panel-hover: rgba(40, 40, 40, 0.9);
  
  --accent-cyan: #ffd700;
  --accent-blue: #b0b0b0;
  --accent-orange: #ffb300;
  
  --text-main: #f0f4f8;
  --text-muted: #a3b8cc;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Utilities */
  --radius-lg: 16px;
  --radius-md: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  
  /* Anime Background with Dark Overlay */
  background-image: linear-gradient(rgba(10, 10, 10, 0.85), rgba(5, 5, 5, 0.95)), url('images/bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* ────────────────────────────────────────────────────────
   TOP NAVBAR
   ──────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  transition: var(--transition);
  position: relative;
}

.nav-links a i {
  font-size: 1.2rem;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 0; height: 3px;
  background-color: var(--accent-cyan);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 3px;
}

.nav-links a:hover, .nav-links a.active {
  color: #fff;
}

.nav-links a:hover i, .nav-links a.active i {
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 5px var(--accent-cyan));
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* ────────────────────────────────────────────────────────
   HERO SECTION (CENTERED)
   ──────────────────────────────────────────────────────── */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px 20px;
}

.hero-logo {
  height: 300px;
  object-fit: contain;
  margin-bottom: 40px;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.status-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 30px;
  border-radius: 50px;
  background: rgba(15, 22, 45, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-pill:hover {
  transform: translateY(-5px);
  background: rgba(22, 32, 64, 0.8);
  border-color: rgba(0, 229, 255, 0.4);
}

.pill-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

.pill-mc { background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue)); }
.pill-dc { background: #5865F2; }

.pill-text { text-align: left; }
.pill-title { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; line-height: 1.2; }
.pill-sub { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ────────────────────────────────────────────────────────
   PAGE CONTAINERS
   ──────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 20px 80px 20px;
  position: relative;
  z-index: 10;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-title {
  font-size: 4rem;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* ────────────────────────────────────────────────────────
   CARDS & PANELS
   ──────────────────────────────────────────────────────── */
.panel {
  background-color: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.panel:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  background-color: var(--bg-panel-hover);
}

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

/* Buttons */
.btn {
  display: inline-block;
  text-align: center;
  padding: 12px 25px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 119, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 229, 255, 0.5);
}

.btn-orange {
  background: var(--accent-orange);
  color: #000;
  box-shadow: 0 5px 15px rgba(255, 159, 28, 0.2);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 159, 28, 0.4);
}

/* ────────────────────────────────────────────────────────
   COMPONENTS
   ──────────────────────────────────────────────────────── */

/* News Feed */
.news-header {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 20px; margin-bottom: 20px;
}
.news-title { color: var(--accent-cyan); font-size: 1.5rem; display: flex; align-items: center; gap: 10px; }
.news-meta { color: var(--text-muted); font-size: 0.9rem; }

/* Store Ranks */
.rank-img {
  width: 120px; height: 120px; object-fit: contain; margin: 0 auto 20px auto; display: block;
  transition: var(--transition); filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}
.panel:hover .rank-img { transform: scale(1.1) translateY(-10px); }
.rank-title { text-align: center; font-size: 2rem; margin-bottom: 10px; color: #fff; }
.rank-price { text-align: center; font-size: 1.5rem; font-weight: 800; color: var(--accent-cyan); margin-bottom: 25px; }
.rank-features { list-style: none; margin-bottom: 30px; }
.rank-features li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 10px; color: var(--text-muted); }
.rank-features li i { color: var(--accent-cyan); }
.rank-features li:last-child { border-bottom: none; }

/* Rules Layout */
.rule-section { margin-bottom: 40px; }
.rule-title { font-size: 1.5rem; color: var(--accent-cyan); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.rule-list { list-style: none; padding-left: 20px; }
.rule-list li { margin-bottom: 15px; position: relative; padding-left: 25px; }
.rule-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent-orange); font-weight: bold; }
.rule-list li strong { color: #fff; }
.rule-list li strong.allowed { color: #00e676; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-family: var(--font-heading); font-weight: 600; color: #fff; }
.form-group input, .form-group textarea {
  width: 100%; padding: 15px; background-color: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md);
  color: #fff; font-family: var(--font-body); font-size: 1rem;
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent-cyan); box-shadow: 0 0 15px rgba(0, 229, 255, 0.2); }

/* Footer */
footer { text-align: center; padding: 40px 20px; color: var(--text-muted); margin-top: 50px; border-top: 1px solid rgba(255,255,255,0.05); }

/* Mobile */
@media (max-width: 768px) {
  .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
  .hero-logo { height: 200px; }
  .page-title { font-size: 3rem; }
}
