.home-page {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #e4f2ff;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .home-page a {
    color: #c9a34f;
  }
  .home-page a:hover {
    color: #f0c86a;
  }

.home-page .section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
}

.home-page .section-title::after {
    content: "";
    display: block;
    width: 180px;
    height: 3px;
    margin: 0.6rem auto 0;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(75, 125, 255, 0),
        rgba(160, 210, 255, 1),
        rgba(75, 125, 255, 0)
    );
    box-shadow: 0 0 10px rgba(140, 200, 255, 0.7);
}


 /* HERO — Fullscreen WotLK splash */
.home-page .hero {
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;

    /* Background image */
    background-image: url('/assets/images/lichking-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    /* Center content */
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Dark frost overlay for readability */
.home-page .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.65),
            rgba(0, 10, 25, 0.85)
        );
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Hero content wrapper */
.home-page .hero-inner {
    position: relative;
    z-index: 2;

    max-width: 960px;
    width: 100%;
    margin: 0 auto;           /* center the block itself */

    padding: 5rem 2rem 4rem;  /* enough top padding to clear the fixed header */
    text-align: center;
}




.home-page .hero-logo {
    text-align: center;
}

.home-page .hero-logo img {
    width: 580px;
    max-width: 85%;
    height: auto;
    margin: 0 auto 1.2rem;
    display: block;

    filter: drop-shadow(0 0 12px rgba(0, 150, 255, 0.5));
}

  .home-page .hero-text {
    max-width: 600px;
    margin: 0 auto;   /* center the inner text block */
}

  .home-page .hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: #9fc4ff;
    margin-bottom: 0.4rem;
  }

  .home-page .hero-title {
    font-size: 2.6rem;
    margin: 0 0 0.45rem 0;
    color: #ffffff;
  }

  .home-page .hero-tagline {
    font-size: 0.98rem;
    max-width: 30rem;
    color: #c7ddff;
    margin-bottom: 1.25rem;
  }

  .home-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   /* 🔥 center horizontally */
    gap: 0.75rem;
    margin: 1rem auto 1.25rem; /* center spacing */
}

  .home-page .hero-user {
    font-size: 0.9rem;
    color: #a8c6ff;
  }

  .home-page .hero-status {
    flex: 0 0 260px;
    max-width: 320px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .home-page .status-panel {
    background: rgba(5, 15, 32, 0.9);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(123, 181, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    width: 100%;
  }

  .home-page .status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
  }

  .home-page .status-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #9fc4ff;
  }

  .home-page .status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.75rem;
    font-size: 0.8rem;
  }

  .home-page .status-pill--online {
    background: rgba(34, 139, 34, 0.18);
    color: #b6f7b6;
    border: 1px solid rgba(90, 197, 90, 0.5);
  }

  .home-page .status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #44ff44;
    box-shadow: 0 0 8px rgba(80, 255, 80, 0.8);
    margin-right: 0.4rem;
  }

  .home-page .status-body {
    font-size: 0.9rem;
  }

  .home-page .status-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.35rem;
  }

  .home-page .status-label {
    color: #8fabcc;
  }

  .home-page .status-value {
    font-weight: 500;
    color: #e3f0ff;
  }

  /* HERO STATUS BAR — bottom horizontal strip */
.home-page .hero-status-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;

    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 0.9rem 1rem;

    background: rgba(0, 10, 25, 0.65);
    backdrop-filter: blur(3px);
    border-top: 1px solid rgba(120, 180, 255, 0.35);

    z-index: 3;
}

.home-page .hero-status-bar .status-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
}

.home-page .hero-status-bar .status-label {
    color: #9bb8dd;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.home-page .hero-status-bar .status-value {
    font-weight: 600;
    color: #e4f2ff;
}

@media (max-width: 1024px) {
  .home-page .hero-inner {
    padding: 4.2rem 1.5rem 3.5rem;
  }

  .home-page .hero-title {
    font-size: 2.4rem;
  }

  .home-page .hero-tagline {
    font-size: 0.98rem;
  }
}


  /* BUTTONS */
  .home-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.2s ease;
  }

  .home-page .btn-primary {
    background: linear-gradient(135deg, #2f71ff, #81b5ff);
    border-color: #9fc4ff;
    color: #020612;
  }

  .home-page .btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #3d7cff, #a9cfff);
  }

  .home-page .btn-secondary {
    background: rgba(6, 20, 40, 0.7);
    border-color: rgba(159, 196, 255, 0.5);
    color: #d0e0ff;
  }

  .home-page .btn-secondary:hover {
    transform: translateY(-1px);
    background: rgba(11, 31, 59, 0.9);
  }

  .home-page .btn-discord {
    background: #5865f2;
    border-color: #7c87ff;
    color: #ffffff;
  }

  .home-page .btn-discord:hover {
    transform: translateY(-1px);
    background: #7b85ff;
  }

  /* SECTIONS */
  .home-page .section {
    margin: 0;                 /* no space above/below sections */
    padding: 3rem 1rem;        /* controlled, even spacing inside */
    border-radius: 0;          /* no rounded edges unless you want them */
    background: rgba(5, 10, 20, 0.92);
    border: 1px solid rgba(34, 70, 120, 0.7);
  }

  .home-page .section-inner {
    max-width: 960px;
    margin: 0 auto;
  }

  .home-page .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
  }

  .home-page .section-lead {
    font-size: 1rem;
    color: #c2dbff;
    margin-bottom: 1rem;
  }

  .home-page .intro p {
    margin-bottom: 0.6rem;
  }

/* Intro title — slightly larger with icy underline */
.home-page .intro-title {
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
}


/* Intro layout */
.home-page .intro-inner {
    max-width: 960px;
    margin: 0 auto;
}

/* Intro layout: image left, content right */
.home-page .intro-inner {
    max-width: 960px;
    margin: 0 auto;
}

.home-page .intro-body {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Image column */
.home-page .intro-image {
    flex: 0 0 auto;
}
.home-page .intro-image img {
    display: block;
    max-width: 360px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 18px rgba(0, 0, 0, 1));
}

/* Right column with header + text */
.home-page .intro-content {
    flex: 1 1 0;
    text-align: center;
}

.home-page .intro-text p {
    margin-bottom: 0.6rem;
}


.home-page .intro-text p {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    line-height: 1.5rem;
}



  /* ================================
   FEATURES SECTION
   ================================ */

.home-page .features {
    background: rgba(4, 9, 18, 0.92);
}

.home-page .features-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.home-page .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

/* Individual feature */
.home-page .feature-block {
    text-align: center;
    padding: 1.2rem 1.2rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(
        180deg,
        rgba(15, 30, 55, 0.4),
        rgba(5, 10, 18, 0.6)
    );
    border: 1px solid rgba(120, 160, 220, 0.2);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.4);
}

.home-page .feature-block:hover {
    border-color: rgba(160, 210, 255, 0.5);
    box-shadow: 0 0 32px rgba(120, 180, 255, 0.25);
    transform: translateY(-2px);
    transition: 0.2s ease;
}

.home-page .feature-icon img {
    width: 56px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    filter: drop-shadow(0 0 6px rgba(80, 160, 255, 0.4));
}

.home-page .feature-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.home-page .feature-text {
    font-size: 1.1rem;
    color: #c8d6f5;
    line-height: 1.5rem;
}

.home-page .feature-link {
    margin-top: 0.5rem;
}

.home-page .feature-link a {
    color: #a8cfff;
}

.home-page .feature-link a:hover {
    color: #ffffff;
}


  /* ================================
   REALM STATUS SECTION
   ================================ */

.home-page .realm-status-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.home-page .realm-status-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
}

.home-page .realm-status-left {
    flex: 1 1 340px;
    min-width: 300px;
}

.home-page .realm-status-text {
    flex: 1 1 260px;
    font-size: 1.1rem !important;
    color: #c2d3f5;
    text-align: center;
}

.home-page .realm-status-text p {
    font-size: 1.1rem !important;
    line-height: 1.5rem;
    margin-bottom: 0.7rem;
}

/* Stat grid on the right */
.home-page .realm-status-grid {
    flex: 0 0 320px;
    max-width: 380px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-top: 1.5rem;
}

.home-page .realm-stat {
    padding: 0.65rem 0.8rem;
    border-radius: 8px;
    background: rgba(6, 14, 30, 0.95);
    border: 1px solid rgba(40, 70, 120, 0.9);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
}

.home-page .realm-stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8fa5d0;
    margin-bottom: 0.2rem;
}

.home-page .realm-stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: #e4f2ff;
}

.home-page .realm-stat-value em {
    color: #8091b6;
}

.home-page .realm-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.home-page .realm-status-pill--online {
    background: rgba(40, 160, 80, 0.18);
    color: #b8f7c0;
    border: 1px solid rgba(80, 200, 120, 0.7);
}

.home-page .realm-status-pill--offline {
    background: rgba(160, 40, 40, 0.18);
    color: #f7b8b8;
    border: 1px solid rgba(200, 80, 80, 0.7);
}


/* Mobile: stack text + stats nicely */
@media (max-width: 720px) {
    .home-page .realm-status-layout {
        flex-direction: column;
    }

    .home-page .realm-status-grid {
        max-width: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .home-page .realm-stat {
        width: 100%;
        max-width: 420px;
        text-align: center;
    }

    .home-page .realm-stat-label {
        margin-bottom: 0.3rem;
    }

    .home-page .realm-stat-value {
        justify-content: center;
    }
}


  /* ================================
   DISCORD SECTION
   ================================ */

.home-page .discord-section {
    background: rgba(3, 7, 15, 0.92);
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.home-page .discord-inner {
    max-width: 780px;
    margin: 0 auto;
}

.home-page .discord-text {
    font-family: 'Forum', serif;
    font-size: 1.1rem;
    color: #cbd9f5;
    margin: 1.2rem 0 2rem;
    line-height: 1.5;
}

/* Discord button */
.home-page .discord-button {
    display: inline-block;
    padding: 0.75rem 2.2rem;
    border-radius: 12px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;

    background: rgba(88, 125, 255, 0.18);
    border: 1px solid rgba(150, 180, 255, 0.6);
    color: #dce8ff;
    text-decoration: none;

    transition: 0.25s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.home-page .discord-button:hover {
    border-color: rgba(200, 225, 255, 0.9);
    background: rgba(100, 150, 255, 0.28);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(130, 180, 255, 0.4);
    transform: translateY(-2px);
}


  /* ================================
   ROADMAP SECTION
   ================================ */

.home-page .roadmap {
    background: rgba(5, 10, 20, 0.95);
}

.home-page .roadmap-inner {
    max-width: 960px;
    margin: 0 auto;
}

.home-page .roadmap-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
}

.home-page .roadmap-left {
    flex: 1 1 280px;
    min-width: 260px;
}

.home-page .roadmap-title {
    margin-bottom: 1.2rem;
}

.home-page .roadmap-text {
    font-family: 'Forum', serif;
    font-size: 1.1rem;
    color: #c7d5f3;
    line-height: 1.5;
}

/* Right column with list of items */
.home-page .roadmap-right {
    flex: 1 1 320px;
    min-width: 280px;
}

.home-page .roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

/* Individual roadmap entry */
.home-page .roadmap-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.home-page .roadmap-pill {
    flex: 0 0 auto;
    margin-top: 0.15rem;
    padding: 0.1rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'Cinzel', serif;
}

/* Status colours */
.home-page .roadmap-pill--now {
    background: rgba(80, 190, 120, 0.16);
    color: #baf7c8;
    border: 1px solid rgba(120, 220, 150, 0.7);
}

.home-page .roadmap-pill--soon {
    background: rgba(120, 170, 255, 0.16);
    color: #d0e1ff;
    border: 1px solid rgba(150, 190, 255, 0.7);
}

.home-page .roadmap-pill--later {
    background: rgba(140, 110, 200, 0.16);
    color: #ddcfff;
    border: 1px solid rgba(170, 140, 230, 0.7);
}

.home-page .roadmap-item {
    flex: 1 1 auto;
}

.home-page .roadmap-item-title {
    font-family: 'Cinzel', serif;
    font-size: 0.98rem;
    margin-bottom: 0.1rem;
}

.home-page .roadmap-item-text {
    font-family: 'Forum', serif;
    font-size: 1.1rem;
    color: #c4d2f2;
    line-height: 1.5;
}

/* Mobile stacking */
@media (max-width: 720px) {
    .home-page .roadmap-layout {
        flex-direction: column;
    }
}

/* ================================
   ACCOUNT PAGE
   ================================ */

.account-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 6rem 1rem 3rem; /* leave room for fixed header if you have one */
}

.account-header {
    text-align: center;
    margin-bottom: 2rem;
}

.account-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 0.4rem;
    color: #ffffff;
}

.account-subtitle {
    font-family: 'Forum', serif;
    font-size: 1rem;
    color: #c3d2f4;
    margin: 0;
}

/* Sections */

.account-section {
    margin-bottom: 2.5rem;
}

.account-section-title {
    margin-bottom: 1.3rem;
}

/* Account summary card */

.account-summary-card {
    background: radial-gradient(circle at top, rgba(20, 40, 70, 0.9), rgba(5, 10, 20, 0.98));
    border-radius: 18px;
    border: 1px solid rgba(120, 170, 255, 0.7);
    box-shadow: 0 0 28px rgba(0, 0, 0, 0.8);
    padding: 1.5rem 1.75rem 1.6rem;
}

.account-summary-list {
    margin: 0;
    padding: 0;
}

.account-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(60, 90, 140, 0.7);
}

.account-summary-row:last-child {
    border-bottom: none;
}

.account-summary-row dt {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9fb1de;
}

.account-summary-row dd {
    margin: 0;
    font-family: 'Forum', serif;
    font-size: 0.98rem;
    color: #e4f2ff;
}

/* Characters table */

.account-characters-table-wrap {
    border-radius: 16px;
    border: 1px solid rgba(80, 120, 180, 0.7);
    background: rgba(5, 10, 20, 0.96);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.account-characters-table {
    width: 100%;
    max-width: none;
    border-collapse: collapse;
}

.account-characters-table thead {
    background: rgba(12, 24, 48, 0.96);
}

.account-characters-table th,
.account-characters-table td {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(40, 60, 100, 0.9);
}

.account-characters-table th {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    color: #a9bce6;
    text-align: left;
}

.account-characters-table tbody tr:last-child td {
    border-bottom: none;
}

.account-characters-table tbody tr:hover {
    background: rgba(40, 80, 140, 0.35);
    cursor: pointer;
}

.account-characters-table .char-name {
    font-weight: 600;
    color: #e4f2ff;
}

/* Online/offline dots */

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-right: 0.35rem;
}

.status-dot--online {
    background: #32d673;
    box-shadow: 0 0 6px rgba(50, 214, 115, 0.9);
}

.status-dot--offline {
    background: #7b859d;
    box-shadow: 0 0 4px rgba(90, 100, 130, 0.7);
}

/* Empty state */

.account-empty {
    font-family: 'Forum', serif;
    font-size: 0.98rem;
    color: #b7c4e0;
    padding: 1.2rem 0;
}

/* Mobile tweaks */

@media (max-width: 720px) {
    .account-summary-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-summary-row dd {
        font-size: 0.95rem;
    }

    .account-characters-table th,
    .account-characters-table td {
        padding: 0.45rem 0.6rem;
    }
}


/* ================================
   FEATURES PAGE
   ================================ */

.features-page {
    max-width: 1080px;
    margin: 0 auto;
    padding: 5.5rem 1.5rem 3.5rem; /* leave room for fixed header */
    color: #e4f2ff;
    font-size: 1.1rem;
    line-height: 1.5rem;
}

.features-page-header {
    margin-bottom: 2.2rem;
}

.features-page-title {
    margin: 0 0 0.4rem;
    font-size: 2.1rem;
}

.features-page-subtitle {
    margin: 0;
    color: #a8b6d4;
    max-width: 760px;
}

.features-detail {
    min-width: 0;
}

.features-detail-card + .features-detail-card {
    margin-top: 1.6rem;
}

.features-detail-card {
    background: radial-gradient(circle at top, rgba(20, 40, 70, 0.9), rgba(5, 10, 20, 0.98));
    border-radius: 18px;
    border: 1px solid rgba(120, 170, 255, 0.7);
    box-shadow: 0 0 28px rgba(0, 0, 0, 0.8);
    padding: 1.6rem 1.7rem 1.5rem;
}

.features-detail-pill {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 163, 79, 0.8);
    color: #f2d9a0;
    margin-bottom: 0.7rem;
}

.features-detail-title {
    margin: 0 0 0.5rem;
    font-size: 1.6rem;
}

.features-detail-summary {
    margin: 0 0 1.2rem;
    color: #b6c4e7;
}

.features-detail-body p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.5rem;
}

.features-detail-body ul {
    margin: 0 0 1rem 1.2rem;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.5rem;
}

.features-detail-body li {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    line-height: 1.5rem;
}

.features-detail-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem;
    margin-top: 1.1rem;
    border-top: 1px solid rgba(60, 90, 140, 0.7);
    padding-top: 0.7rem;
}

.features-detail-link {
    text-decoration: none;
    color: #c9a34f;
}

.features-detail-link:hover {
    color: #f0c86a;
}

.features-detail-spacer {
    flex: 1;
}

/* ================================
   ARMORY & CHARACTER PAGES
   ================================ */

.armory-page,
.character-page {
    max-width: 1080px;
    margin: 0 auto;
    padding: 5.5rem 1.5rem 3rem;
}

.armory-header,
.character-header {
    margin-bottom: 2rem;
}

.armory-title,
.character-title {
    margin: 0 0 0.25rem;
    font-size: 2.1rem;
}

.character-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.character-title-icon {
    vertical-align: -4px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.armory-subtitle,
.character-subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: #a8b6d4;
}

.armory-layout,
.character-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.5rem;
}

.character-layout {
    margin-bottom: 2.5rem;
}

.armory-card,
.character-card {
    background: radial-gradient(circle at top left, #101728, #050914 60%);
    border-radius: 12px;
    border: 1px solid rgba(90, 140, 220, 0.4);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
    padding: 1.25rem 1.3rem 1.1rem;
}

.character-card-full {
    grid-column: 1 / -1;
}

.armory-section-title,
.character-section-title {
    margin-top: 0;
    margin-bottom: 0.9rem;
    font-size: 1.3rem;
}

.armory-help-text {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    color: #8d9bc0;
}

.armory-search-bar {
    margin-bottom: 0.75rem;
}

.armory-search-input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.45rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(90, 140, 220, 0.7);
    background: rgba(3, 7, 18, 0.9);
    color: #e4f2ff;
    font-size: 0.95rem;
}

.armory-search-input:focus {
    outline: none;
    border-color: #c9a34f;
    box-shadow: 0 0 0 1px rgba(201, 163, 79, 0.6);
}

.armory-search-status {
    min-height: 1.1rem;
    font-size: 0.8rem;
    color: #9aa8c8;
}

.armory-empty {
    margin: 0.3rem 0 0.2rem;
    font-size: 0.9rem;
    color: #a8b6d4;
}

.character-empty {
    margin: 0.4rem 0 0.2rem;
    font-size: 0.9rem;
    color: #a8b6d4;
}

.armory-table,
.character-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.armory-table th,
.armory-table td,
.character-table th,
.character-table td {
    border-bottom: 1px solid #25324c;
    padding: 0.45rem 0.6rem;
    text-align: left;
}

.armory-table thead th,
.gear-table thead th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9eb3e6;
}

.armory-table tbody td,
.gear-table tbody td {
    font-size: 0.88rem;
}

.armory-table tbody td {
    white-space: nowrap;
}

.gear-table tbody td {
    white-space: normal;
}

.character-table th {
    width: 32%;
    font-weight: 600;
    color: #c3d4ff;
    white-space: nowrap;
}

.armory-table tr:last-child th,
.armory-table tr:last-child td,
.character-table tr:last-child th,
.character-table tr:last-child td {
    border-bottom: none;
}

.armory-top-table-wrap,
.armory-search-results-wrap,
.character-gear-table-wrap {
    overflow-x: auto;
}

.armory-top-table th:nth-child(3),
.armory-top-table th:nth-child(4),
.armory-top-table th:nth-child(5),
.armory-top-table td:nth-child(3),
.armory-top-table td:nth-child(4),
.armory-top-table td:nth-child(5),
.armory-search-results-table th:nth-child(2),
.armory-search-results-table th:nth-child(3),
.armory-search-results-table th:nth-child(4),
.armory-search-results-table th:nth-child(5),
.armory-search-results-table td:nth-child(2),
.armory-search-results-table td:nth-child(3),
.armory-search-results-table td:nth-child(4),
.armory-search-results-table td:nth-child(5) {
    text-align: center;
}

.armory-inline-icon,
.character-inline-icon {
    vertical-align: -3px;
    margin-right: 6px;
    border-radius: 4px;
}

.gear-table .item-name {
    display: inline-block;
    white-space: normal;
    word-break: break-word;
}

.armory-link-strong,
.character-link-strong {
    font-weight: 600;
}

table.clickable-table tr.clickable-row {
    cursor: pointer;
}

table.clickable-table tr.clickable-row:hover {
    background: rgba(42, 60, 110, 0.5);
}

.character-muted {
    color: #7e8ca8;
}

.character-actions {
    margin-top: 1rem;
    border-top: 1px solid rgba(90, 140, 220, 0.35);
    padding-top: 0.8rem;
}

.character-actions-title {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
    color: #c3ddff;
}

.character-actions-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.character-actions-list li + li {
    margin-top: 0.25rem;
}

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

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

.character-chronicle-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.character-chronicle .character-section-title {
    text-align: center;
}

.character-chronicle-entry {
    padding: 0.95rem 1rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(90, 140, 220, 0.3);
    background: rgba(4, 7, 18, 0.6);
    box-shadow: inset 0 0 18px rgba(5, 8, 14, 0.5);
}

.character-chronicle-entry-meta {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8fa0c4;
}

.character-chronicle-entry-text {
    font-size: 0.92rem;
    color: #c9d6f4;
    line-height: 1.5;
}

.character-chronicle-entry-text p {
    margin: 0 0 0.75rem;
}

.character-chronicle-entry-text p:last-child {
    margin-bottom: 0;
}

.item-table .item-cell {
    position: relative;
    cursor: default;
}

.item-name {
    border-bottom: 1px dashed rgba(180, 200, 255, 0.35);
}

.item-tooltip {
    display: none;
    position: absolute;
    z-index: 20;
    left: 0;
    bottom: 100%;
    top: auto;
    margin-bottom: 6px;
    margin-top: 0;
    min-width: 220px;
    max-width: 320px;
    padding: 0.55rem 0.7rem;
    background: radial-gradient(circle at top, #040611, #020309 60%);
    border-radius: 8px;
    border: 1px solid rgba(146, 164, 255, 0.8);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.85);
    font-size: 0.82rem;
}

.item-tooltip.tooltip-below {
    top: 100%;
    bottom: auto;
    margin-top: 6px;
    margin-bottom: 0;
}

.item-table .item-cell:hover .item-tooltip {
    display: block;
}

.item-tooltip-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.item-tooltip-line {
    color: #e0e0e0;
}

.quality-0 .item-name,
.quality-0 .item-tooltip-name {
    color: #9d9d9d;
}

.quality-1 .item-name,
.quality-1 .item-tooltip-name {
    color: #ffffff;
}

.quality-2 .item-name,
.quality-2 .item-tooltip-name {
    color: #1eff00;
}

.quality-3 .item-name,
.quality-3 .item-tooltip-name {
    color: #0070dd;
}

.quality-4 .item-name,
.quality-4 .item-tooltip-name {
    color: #a335ee;
}

.character-backlinks {
    margin: 0;
    font-size: 0.9rem;
    color: #a8b6d4;
}

.character-backlinks a {
    color: #c9a34f;
}

.character-backlinks a:hover {
    color: #f0c86a;
}

/* Auction house */
.auction-filters {
    background: rgba(8, 19, 32, 0.85);
    border: 1px solid rgba(124, 174, 255, 0.18);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.auction-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}
.auction-filter-block label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.auction-filter-block input,
.auction-filter-block select {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    border: 1px solid #24334d;
    background: #0d1a2c;
    color: #e4f2ff;
}
.auction-filter-inline {
    display: flex;
    gap: 0.5rem;
}
.auction-filter-inline input {
    flex: 1 1 0;
}
.auction-filter-actions {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
}
.auth-submit--ghost {
    background: transparent;
    border: 1px solid rgba(124, 174, 255, 0.4);
    color: #e4f2ff;
    text-align: center;
}
.auction-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.auction-pagination {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.auction-page-link {
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(124, 174, 255, 0.35);
    background: rgba(15, 30, 52, 0.8);
    color: #e4f2ff;
}
.auction-page-link.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}
.auction-page-link.is-active {
    background: linear-gradient(135deg, #4c6bff, #72b2ff);
    color: #0a1220;
    border-color: transparent;
}
.auction-page-status {
    padding: 0.35rem 0.6rem;
}

.auction-sort {
    color: #e4f2ff;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
    line-height: 1.1;
}
.auction-sort.is-active {
    color: #c9a34f;
}
.auction-sort-arrow {
    font-size: 0.82rem;
}

.character-backlinks-separator {
    margin: 0 0.5rem;
    opacity: 0.7;
}

@media (max-width: 860px) {
    .armory-layout,
    .character-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .armory-page,
    .character-page {
        padding: 5.5rem 1rem 2.5rem;
    }

    .armory-title,
    .character-title {
        font-size: 1.7rem;
    }

    .armory-section-title,
    .character-section-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 640px) {
    .features-page {
        padding: 5.2rem 1.1rem 2.8rem;
    }

    .features-page-title {
        font-size: 1.8rem;
    }
}



  /* RESPONSIVE */
@media (max-width: 720px) {
  .home-page .hero {
    margin: -1rem 0 2rem 0;
    border-radius: 12px;
    padding: 2.25rem 1.25rem;
    min-height: auto;
    background-attachment: scroll;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .home-page .hero-inner {
    padding: 3.5rem 1.1rem 3rem;
    width: 100%;
  }

  .home-page .hero-logo img {
    max-width: 280px;
  }

  .home-page .hero-title {
    font-size: 1.9rem;
  }

  .home-page .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .home-page .hero-actions .btn {
    width: 100%;
  }

  .home-page .hero-status-bar {
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-top: 1.25rem;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    width: 100%;
    max-width: 420px;
  }

  .home-page .hero-status-bar .status-item {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .home-page .section {
    margin: 2rem 0;
    border-radius: 10px;
  }

  .home-page .intro-body {
    flex-direction: column;
    text-align: center;
  }

  .home-page .intro-image img {
    max-width: 200px;
  }

  .home-page .features-grid {
    grid-template-columns: 1fr;
  }
}

.home-page .connect-realmlist code {
    font-size: 0.85rem;
}

.quality-5 .item-name,
.quality-5 .item-tooltip-name {
    color: #ff8000;
}

.quality-6 .item-name,
.quality-6 .item-tooltip-name {
    color: #e6cc80;
}

.quality-7 .item-name,
.quality-7 .item-tooltip-name {
    color: #00ccff;
}
