:root {
  --bg-color: #0f1113;
  --card-bg: #1a1d21;
  --accent-color: #4ade80;
  --accent-hover: #22c55e;
  --text-color: #e2e8f0;
  --text-muted: #94a3b8;
  --telegram-blue: #229ED9;
  --mail-gray: #334155;
  --godlike-color: #3D63FF;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}
/* Hero Section */
header {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, rgba(74, 222, 128, 0.05), transparent);
}
h1 {
  font-size: 3rem;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  text-transform: uppercase;
}
.subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 300;
}
/* Content Sections */
section {
  margin-bottom: 4rem;
  animation: fadeIn 0.8s ease-out;
}
.card {
  background: var(--card-bg);
  border: 1px solid #2d3139;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
h2, h3 {
  margin-bottom: 1.2rem;
  border-left: 4px solid var(--accent-color);
  padding-left: 1rem;
  font-size: 1.5rem;
}
p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}
/* --- List Fixes --- */
ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}
ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}
ul li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}
/* --- Links & Buttons --- */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.2s;
}
a:hover { filter: brightness(1.2); }
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
}
.btn-telegram { background: var(--telegram-blue); }
.btn-mail { background: var(--mail-gray); }
.btn:hover { transform: translateY(-2px); opacity: 0.9; color: white; }
/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.2s;
}
.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(74, 222, 128, 0.05);
}
.feature-item strong {
  display: block;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}
/* Story Styling - Adjusted to match theme */
.godlike-story {
  font-style: italic;
  line-height: 1.8;
  color: var(--text-muted);
}
.godlike-story p {
  margin-bottom: 15px;
}
.highlight-ip {
  font-weight: bold;
  color: var(--text-color);
  border-bottom: 1px dotted var(--accent-color);
  font-style: normal;
}
.god-voice {
  /* Changed from dark blue to readable text color */
  color: var(--text-color);
  font-weight: 700;
  font-style: normal;
}
.deep-quote {
  display: block;
  margin: 15px 0 15px 20px;
  font-weight: bold;
  /* Changed to accent color for theme consistency */
  color: var(--accent-color);
  font-style: normal;
  font-family: 'Courier New', monospace;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  border-radius: 4px;
}
footer {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  .container {
    padding: 1rem;
  }
}
/* Navbar Styling */
.navbar {
  background: rgba(26, 29, 33, 0.95); /* Slightly transparent card-bg */
  border-bottom: 1px solid #2d3139;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px); /* Modern blur effect */
}
.nav-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-item {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  transition: 0.3s;
}
.nav-item:hover {
  color: var(--accent-color);
}
/* Highlight for the page we are currently on */
.nav-item.active {
  color: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 4px;
}
@media (max-width: 600px) {
  .nav-container {
    padding: 1rem;
  }
}

/* Ranks Table */
.rank-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.rank-table th, .rank-table td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid #2d3139;
}

.rank-table th { color: var(--accent-color); font-size: 0.8rem; text-transform: uppercase; }

