@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap");

:root {
  --goth-red: #8b0000;
  --goth-black: #0a0a0a;
  --goth-gray: #1a1a1a;
  --accent-red: #a30000; /* Slightly more muted, sophisticated red */
  --text-color: #9ca3af;
}

body {
  background-color: var(--goth-black);
  color: #e0e0e0;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand-font {
  font-family: "Cinzel", serif;
  letter-spacing: 2px;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
}

.goth-border {
  border: 1px solid var(--goth-red);
  position: relative;
}

.goth-border::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(139, 0, 0, 0.2);
  pointer-events: none;
}

.gradient-overlay {
  background: linear-gradient(0deg, var(--goth-black) 0%, transparent 100%);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;

  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;

  background-color: var(--goth-black);

  & .username {
    font-size: 2rem;
    font-weight: bold;
  }

  & .content {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  & .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    width: 100%;
    justify-content: start;
    align-items: start;
    gap: 1rem;

    & .content {
      flex-direction: column;
      width: 100%;
    }

    & .nav-links {
      justify-content: center;
    }
  }
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 5rem 2rem;
  text-align: center;

  & h2 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
  }

  & em {
    color: var(--text-color);
  }
}

.nav-link {
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--goth-red);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.join-button {
  background: var(--goth-red);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--goth-red);
  transition: all 0.3s ease;
}

.join-button:hover {
  background: var(--accent-red);
}

.cta-button {
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--goth-red);
}

.cta-button:hover {
  background: var(--goth-red);
}

.glass-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(139, 0, 0, 0.2);
}

.table-row {
  border-bottom: 1px solid rgba(139, 0, 0, 0.2);
  transition: background 0.3s ease;
}
.table-row:hover {
  background: rgba(139, 0, 0, 0.05);
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--goth-black);
}
::-webkit-scrollbar-thumb {
  background: var(--goth-red);
}
