@charset "UTF-8";
/* ---------------------------------------------
   CORE SYSTEM
---------------------------------------------- */
/* ---------------------------------------------
   VALKYRIE'S SAGA — THEME VARIABLES
--------------------------------------------- */
:root {
  --color-bg: #0e0e12;
  --color-surface: #16161d;
  --color-surface-light: #1f1f29;
  --color-border: #2a2a36;
  --color-text: #e6e6f0;
  --color-text-muted: #9a9ab3;
  --color-accent: #8a63ff;
  --color-accent-light: #b49aff;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.25);
  --transition: 0.25s ease;
  --bp-tablet: 900px;
  --bp-mobile: 600px;
}

/* ---------------------------------------------
   GLOBAL VARIABLES — Mythic-Tech Palette
---------------------------------------------- */
:root {
  --accent: #2bb4b7;
  --accent-glow: rgba(43, 180, 183, 0.45);
  --bg-dark: #000100;
  --bg-panel: rgba(255, 255, 255, 0.05);
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.75);
}

/* ---------------------------------------------
   GLOBAL BASE STYLES
--------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

section {
  padding: var(--space-5) 0;
}

h1, h2, h3, h4 {
  margin: 0 0 var(--space-2) 0;
  font-weight: 600;
}

p {
  margin: 0 0 var(--space-2) 0;
  color: var(--color-text-muted);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}

a:hover {
  color: var(--color-accent-light);
}

button {
  font-family: inherit;
}

/* ---------------------------------------------
   GLOBAL LAYOUT UTILITIES
--------------------------------------------- */
.page-info {
  padding: var(--space-4) 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.page-info h2 {
  margin: 0 0 var(--space-1) 0;
}

.page-info p {
  color: var(--color-text-muted);
  margin: 0;
}

.spad {
  padding: var(--space-5) 0;
}

/* ---------------------------------------------
   UTILITIES
--------------------------------------------- */
.flex {
  display: flex;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.mt-2 {
  margin-top: var(--space-2);
}

.mt-3 {
  margin-top: var(--space-3);
}

.mt-4 {
  margin-top: var(--space-4);
}

.hide {
  display: none !important;
}

/* ---------------------------------------------
   COMPONENTS
---------------------------------------------- */
/* ---------------------------------------------
   VALKYRIE'S SAGA — HEADER
--------------------------------------------- */
header {
  background: rgba(15, 15, 24, 0.96);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-2) 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar .logo span {
  color: var(--color-accent-light);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
}

.navbar a {
  color: var(--color-text-muted);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
}

.navbar a:hover,
.navbar a.is-active {
  background: var(--color-surface-light);
  color: var(--color-text);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
    flex-direction: column;
    background: var(--color-surface);
    position: absolute;
    top: 100%;
    right: 0;
    padding: var(--space-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
  }
  .navbar ul.is-open {
    display: flex;
  }
}
/* ---------------------------------------------
   VALKYRIE'S SAGA — FOOTER
--------------------------------------------- */
footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-4) 0;
  margin-top: var(--space-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
}

footer h4 {
  margin-bottom: var(--space-2);
}

footer a {
  display: block;
  margin-bottom: var(--space-1);
  color: var(--color-text-muted);
}

footer a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  margin-top: var(--space-3);
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---------------------------------------------
   DASHBOARD LAYOUT
--------------------------------------------- */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 80px);
}

@media (max-width: 900px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
}
.dashboard-content {
  padding: var(--space-4);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-3);
}

.dashboard-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.dashboard-log {
  background: var(--color-surface-light);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.dashboard-log h4 {
  margin-top: 0;
}

.dashboard-log .log-note {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ---------------------------------------------
   ANIMATION HELPERS
--------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.glow-on-hover {
  transition: box-shadow var(--transition), transform var(--transition);
}

.glow-on-hover:hover {
  box-shadow: 0 0 18px rgba(138, 99, 255, 0.6);
  transform: translateY(-1px);
}

/* ---------------------------------------------
   DASHBOARD CARDS
--------------------------------------------- */
.dashboard-card {
  background: var(--color-surface-light);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.dashboard-card h4 {
  margin: 0;
}

.dashboard-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.dashboard-card .btn {
  display: inline-block;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: white;
  font-size: 0.9rem;
  transition: var(--transition);
}

.dashboard-card .btn:hover {
  background: var(--color-accent-light);
}

.placeholder-img {
  width: 100%;
  height: 160px;
  background: var(--color-border);
  border-radius: var(--radius-sm);
}

/* ---------------------------------------------
   DASHBOARD SIDEBAR
--------------------------------------------- */
.dashboard-sidebar {
  background: var(--color-surface);
  border-right: 1px solid var(--color-border);
  padding: var(--space-3);
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  overflow-y: auto;
}

@media (max-width: 900px) {
  .dashboard-sidebar {
    position: relative;
    height: auto;
  }
}
@media (max-width: 600px) {
  .dashboard-sidebar {
    display: none;
  }
}
.dashboard-sidebar h3 {
  margin-top: 0;
  margin-bottom: var(--space-2);
  color: var(--color-accent-light);
}

.dashboard-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-sidebar li {
  margin-bottom: var(--space-1);
}

.dashboard-sidebar a {
  display: block;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.dashboard-sidebar a.active {
  background: var(--color-surface-light);
  color: var(--color-accent-light);
}

.dashboard-sidebar a:hover {
  background: var(--color-surface-light);
  color: var(--color-text);
}

/* ---------------------------------------------
   PAGE MODULES
---------------------------------------------- */
.vr-hero {
  height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.vr-hero .vr-hero-inner {
  max-width: 600px;
}
.vr-hero .vr-hero-inner h2 {
  font-size: 60px;
  margin-bottom: 10px;
}
.vr-hero .vr-hero-inner p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.vr-games-section {
  background: #0c062e;
  color: #fff;
}
.vr-games-section .vr-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .vr-games-section .vr-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.vr-games-section .vr-item {
  background: #1a1333;
  padding: 20px;
  border-radius: 6px;
}
.vr-games-section .vr-item h5 {
  margin-top: 20px;
  color: #fff;
}
.vr-games-section .vr-item p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.other-games-section {
  background: var(--bg-intro);
  color: #fff;
}
.other-games-section .page-info {
  margin-bottom: 40px;
}
.other-games-section .games-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .other-games-section .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.other-games-section .game-item {
  background: #1a1333;
  padding: 20px;
  border-radius: 6px;
  text-align: left;
}
.other-games-section .game-item h5 {
  margin-top: 20px;
  color: #fff;
}
.other-games-section .game-item p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.community-charter {
  background: #0c062e;
  color: #fff;
}
.community-charter .charter-section {
  margin-bottom: 40px;
}
.community-charter .charter-section h3 {
  color: var(--primary);
  margin-bottom: 10px;
}
.community-charter .charter-section p {
  color: var(--text-muted);
  line-height: 1.6;
}
.community-charter .charter-section .charter-list,
.community-charter .charter-section .charter-steps {
  padding-left: 20px;
  margin-top: 10px;
}
.community-charter .charter-section .charter-list li,
.community-charter .charter-section .charter-steps li {
  margin-bottom: 8px;
  color: var(--text-muted);
}
.community-charter .charter-section .charter-list li strong,
.community-charter .charter-section .charter-steps li strong {
  color: #fff;
}

.rules-index {
  background: #0c062e;
  color: #fff;
}
.rules-index .rules-section {
  margin-bottom: 50px;
}
.rules-index .rules-list {
  list-style: none;
  padding: 0;
}
.rules-index .rules-list li {
  margin-bottom: 12px;
  color: var(--text-muted);
}
.rules-index .rules-list li strong {
  color: #fff;
}
.rules-index .rules-grid {
  display: grid;
  gap: 30px;
}
@media (min-width: 900px) {
  .rules-index .rules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rules-index .rules-card {
  background: #1a1333;
  padding: 20px;
  border-radius: 6px;
  display: block;
  transition: background 0.3s ease;
}
.rules-index .rules-card:hover {
  background: #251e2f;
}
.rules-index .rules-card h4 {
  margin-bottom: 10px;
  color: #fff;
}
.rules-index .rules-card p {
  color: var(--text-muted);
}

.season-schedule {
  background: #0c062e;
  color: #fff;
}
.season-schedule .page-info {
  margin-bottom: 40px;
}
.season-schedule .page-info .page-subtitle {
  color: var(--text-muted);
  margin-top: 10px;
}
.season-schedule .season-accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}
.season-schedule .season-item {
  background: #1a1333;
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.season-schedule .season-item.active .season-content {
  max-height: 500px;
  padding: 20px;
}
.season-schedule .season-item.active .season-button {
  background: var(--primary);
}
.season-schedule .season-button {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: #251e2f;
  border: none;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}
.season-schedule .season-button:hover {
  background: #3a2b4a;
}
.season-schedule .season-content {
  max-height: 0;
  overflow: hidden;
  background: #1a1333;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.season-schedule .season-content h4 {
  margin-bottom: 15px;
  color: var(--primary);
}
.season-schedule .season-content .season-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.season-schedule .season-content .season-list li {
  margin-bottom: 8px;
  color: var(--text-muted);
}
.season-schedule .season-content .season-list li strong {
  color: #fff;
}
.season-schedule .season-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

.season-archive {
  background: #0c062e;
  color: #fff;
}
.season-archive .archive-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .season-archive .archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.season-archive .archive-block h3 {
  margin-bottom: 20px;
  color: var(--primary);
}
.season-archive .archive-card {
  background: #1a1333;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.season-archive .archive-card h4 {
  margin-bottom: 10px;
  color: #fff;
}
.season-archive .archive-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
.season-archive .archive-card ul li {
  color: var(--text-muted);
  margin-bottom: 6px;
}
.season-archive .archive-card ul li strong {
  color: #fff;
}

/* ---------------------------------------------
   OUR TEAM PAGE
   Valkyrie's Saga — Mythic-Tech Roster Layout
---------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent, #2bb4b7);
  box-shadow: 0 0 18px rgba(43, 180, 183, 0.35);
}
.team-card h4 {
  margin-top: 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}
.team-card .team-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent, #2bb4b7);
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}
.team-card .team-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

/* ---------------------------------------------
   TEAM IMAGES
---------------------------------------------- */
.team-img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.team-img img:hover {
  transform: scale(1.05);
}

/* ---------------------------------------------
   SECTION HEADERS
---------------------------------------------- */
.page-info h2,
.container h3 {
  color: #fff;
}

.section-intro {
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

/* ---------------------------------------------
   RESPONSIVE TWEAKS
---------------------------------------------- */
@media (max-width: 600px) {
  .team-card {
    padding: 1.25rem;
  }
  .team-img {
    height: 150px;
  }
}
/* ---------------------------------------------
   HEX FRAME VARIANT
---------------------------------------------- */
.team-img.hex {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  border: 2px solid var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
}

/* ---------------------------------------------
   RUNE FRAME VARIANT
---------------------------------------------- */
.team-img.rune {
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.team-img.rune::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: url("/assets/img/ui/runes-border.svg");
  background-size: cover;
  opacity: 0.35;
  mix-blend-mode: screen;
}

/* ---------------------------------------------
   TEAM CARD HOVER ANIMATION
---------------------------------------------- */
@keyframes teamHoverGlow {
  0% {
    box-shadow: 0 0 0 rgba(43, 180, 183, 0);
  }
  100% {
    box-shadow: 0 0 18px var(--accent-glow);
  }
}
.team-card:hover {
  animation: teamHoverGlow 0.35s ease forwards;
}

/*# sourceMappingURL=main.css.map */
