:root {
  --ring: 0 0 0 4px rgba(14, 165, 233, 0.35);
  --bg-color: #020617;
  --text-color: #f1f5f9;
  --text-color-faint: #94a3b8;
  --border-color: #1e293b;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --ko-fi-color: #29abe0;
}

/* Base Styles */
html,
body {
  height: 100%;
}

body {
  min-height: 100%;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glass {
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.6);
}

.text-sky-400 {
  color: var(--sky-400);
}

/* Typography */
.font-extrabold {
  font-weight: 800;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

/* Layout */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-6xl {
  max-width: 72rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.w-full {
  width: 100%;
}

.shrink-0 {
  flex-shrink: 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid rgba(30, 41, 59, 0.5);
  background-color: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(12px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--sky-400);
  text-decoration: none;
}

.logo:hover {
  color: #7dd3fc;
}

.logo-icon {
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07));
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.nav a {
  color: var(--text-color);
  text-decoration: none;
}

.nav a:hover {
  color: #7dd3fc;
}

@media (min-width: 640px) {
  .nav {
    display: flex;
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.bo6-image-placeholder img {
  width: 100%;
  height: auto;
  display: block; /* Prevents extra space below the image */
}

.hero-bg-graphic {
  position: absolute;
  inset: 0;
  z-index: -10;
  opacity: 0.4;
}

.hero-bg-svg {
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-content-wrapper {
  margin: auto;
  max-width: 72rem;
  padding: 5rem 1rem;
}

.hero-card {
  border: 1px solid rgba(30, 41, 59, 0.6);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.coming-soon-badge {
  display: inline-block;
  border-radius: 9999px;
  border: 1px solid #334155;
  background-color: rgba(2, 6, 23, 0.6);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: #cbd5e1;
}

.hero-heading {
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 800;
}

.hero-subheading {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #cbd5e1;
}

.hero-subheading-highlight {
  font-weight: 600;
  color: var(--text-color);
}

.br-sm-hidden {
  display: none;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
}

.button-primary {
  background-color: var(--sky-500);
  color: #020617;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.button-primary:hover {
  background-color: #38bdf8;
}

.button-primary:focus {
  outline: none;
  box-shadow: var(--ring);
}

.button-secondary {
  border: 1px solid #334155;
  color: var(--text-color);
}

.button-secondary:hover {
  border-color: #64748b;
}

.button-secondary:focus {
  outline: none;
  box-shadow: var(--ring);
}

.button-discord {
  background-color: #5865F2;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
.button-discord:hover {
  background-color: #4752C4;
}

@media (min-width: 768px) {
  .hero-card {
    padding: 3rem;
  }

  .hero-heading {
    font-size: 3.75rem;
  }

  .br-sm-hidden {
    display: block;
  }
}

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

/* Highlights Section */
.highlights-section {
  margin: auto;
  max-width: 72rem;
  padding: 3rem 1rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .highlights-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.highlight-card {
  border-radius: 1rem;
  border: 1px solid #1e293b;
  background-color: rgba(2, 6, 23, 0.4);
  padding: 1.5rem;
}

.highlight-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.highlight-text {
  margin-top: 0.5rem;
  color: #cbd5e1;
}

/* BO6 Section */
.bo6-section {
  margin: auto;
  max-width: 72rem;
  padding: 4rem 1rem;
}

.bo6-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.bo6-text-content {
  width: 100%;
}

.bo6-heading {
  font-size: 1.875rem;
  font-weight: 800;
}

.bo6-text {
  margin-top: 1rem;
  color: #cbd5e1;
}

.bo6-list {
  margin-top: 1.5rem;
  list-style: disc;
  list-style-position: inside;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.5rem;
}

.bo6-image-card {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #1e293b;
  background-color: rgba(2, 6, 23, 0.4);
  padding: 1.5rem;
}

.bo6-image-title {
  font-weight: 700;
}

.bo6-image-text {
  margin-top: 0.5rem;
  color: #cbd5e1;
}

.bo6-image-placeholder-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.bo6-image-placeholder {
  height: 6rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, rgba(56, 189, 248, 0.3) 0%, rgba(30, 41, 59, 0.6) 100%);
}

@media (min-width: 768px) {
  .bo6-content {
    flex-direction: row;
  }

  .bo6-text-content,
  .bo6-image-card {
    width: 50%;
  }

  .bo6-heading {
    font-size: 2.25rem;
  }
}

/* Warzone Section */
.warzone-section {
  margin: auto;
  max-width: 72rem;
  padding: 0 1rem 4rem 1rem;
}

.warzone-card {
  border-radius: 1.5rem;
  border: 1px solid #1e293b;
  background-color: rgba(2, 6, 23, 0.4);
  padding: 2rem;
}

.warzone-heading {
  font-size: 1.875rem;
  font-weight: 800;
}

.warzone-text {
  margin-top: 1rem;
  color: #cbd5e1;
}

.warzone-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.warzone-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid #334155;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .warzone-heading {
    font-size: 2.25rem;
  }
}

/* Notify / Donate Section */
.notify-section {
  margin: auto;
  max-width: 72rem;
  padding: 0 1rem 5rem 1rem;
}

.notify-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .notify-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.notify-form,
.donate-card {
  border-radius: 1.5rem;
  border: 1px solid #1e293b;
  background-color: rgba(2, 6, 23, 0.4);
  padding: 1.5rem;
}

.notify-form-title,
.donate-title {
  font-size: 1.5rem;
  font-weight: 800;
}

.notify-form-text,
.donate-text {
  margin-top: 0.5rem;
  color: #cbd5e1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.notify-input-group {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.notify-input {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #334155;
  background-color: #020617;
  padding: 0.75rem 1rem;
  color: #f1f5f9;
  font-size: 1rem;
}

.notify-input::placeholder {
  color: #64748b;
}

.notify-input:focus {
  outline: none;
  box-shadow: var(--ring);
}

.notify-button {
  font-size: 1rem;
}

.notify-message {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.notify-disclaimer {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #64748b;
}

.button-kofi {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1rem;
  background-color: var(--ko-fi-color);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.button-kofi:hover {
  opacity: 0.9;
}

.button-kofi:focus {
  outline: none;
  box-shadow: var(--ring);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(30, 41, 59, 0.6);
}

.footer-content {
  margin: auto;
  max-width: 72rem;
  padding: 2.5rem 1rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.footer-note {
  font-weight: 600;
  color: #cbd5e1;
}

.footer-links {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footer-links a {
  text-decoration: none;
  color: #94a3b8;
}

.footer-links a:hover {
  color: #e2e8f0;
}

.logo-image {
  width: 64px; /* Sets the width to 64 pixels */
  height: auto; /* Maintains the original aspect ratio */
}