/* GAME OF TRONS - Global Stylesheet */

:root {
  --got-bg:#09090b;
  --got-surface:#18181b;
  --got-border:#27272a;
  --got-text:#fafafa;
  --got-muted:#a1a1aa;
  --got-gold:#c9a227;
  --container:1200px;
  --content:760px;
  --radius:16px;
  --transition:250ms ease;
}

* { box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  margin:0;
  background:var(--got-bg);
  color:var(--got-text);
  font-family:Inter,system-ui,sans-serif;
  line-height:1.7;
}

a {
  color:inherit;
  text-decoration:none;
  transition:var(--transition);
}

a:hover { color:var(--got-gold); }

h1,h2,h3,h4 {
  font-family:"Space Grotesk",Inter,sans-serif;
  line-height:1.15;
  letter-spacing:-.03em;
}

p { color:var(--got-muted); }

.container {
  width:min(calc(100% - 48px),var(--container));
  margin:auto;
}

.content,
.canon-content {
  width:min(calc(100% - 48px),var(--content));
  margin:auto;
}

section { padding:96px 0; }

header {
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(9,9,11,.8);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--got-border);
}

nav {
  max-width:var(--container);
  margin:auto;
  padding:20px 24px;
  display:flex;
  gap:14px;
}

.hero,
.canon-hero {
  min-height:70vh;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  text-align:center;
}

.hero-subtitle {
    font-size: 1.2rem;
}
.card {
  background:var(--got-surface);
  border:1px solid var(--got-border);
  border-radius:var(--radius);
  padding:32px;
  transition:var(--transition);
}

.card:hover {
  transform:translateY(-4px);
  border-color:var(--got-gold);
}

.chapter-list {
  display:grid;
  gap:12px;
}

.chapter-list a {
  padding:18px 24px;
  border:1px solid var(--got-border);
  border-radius:12px;
  background:var(--got-surface);
}

.chapter-list a:hover {
  border-color:var(--got-gold);
}

.chapter-navigation {
  width:min(calc(100% - 48px),var(--content));
  margin:64px auto;
  display:flex;
  justify-content:space-between;
}

.hero-logo {
    width: 300px;
    margin: auto;
}

#tech-arch-img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 400px;
    margin: 40px auto;
    object-fit: contain;
}
@media (max-width: 768px) {

    #tech-arch-img {
        width: 100%;
        height: auto;
        max-height: 400px;
        margin: 30px auto;
    }

}

footer {
  padding:48px;
  text-align:center;
  border-top:1px solid var(--got-border);
}

@media(max-width:900px){
  section{padding:64px 0;}
}

@media(max-width:600px){
  .container,.content,.canon-content{
    width:calc(100% - 32px);
  }

  .chapter-navigation{
    flex-direction:column;
  }
}
.copyright {
    white-space: nowrap;
}

@media (max-width: 600px) {

    .copyright {
        font-size: 0.82rem;
        letter-spacing: -0.2px;
    }

}

/* ===============================
   HOME V2 COMPONENTS
   =============================== */

.hero-buttons {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  margin-top:32px;
}

.button {
    display: block;
    padding:14px 28px;
    background:var(--got-gold);
    color:var(--got-bg);
    font-weight:700;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 260px;
    min-height: 48px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
    text-align: center;
}

.button:visited,
.button:hover,
.button:active {
    color: #000000;
    text-decoration: none;
}
.button:hover {
    color: #ffffff;
    text-decoration: none;
}

.card-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:40px;
}

.highlight-box {
  margin-top:40px;
  padding:32px;
  background:var(--got-surface);
  border:1px solid var(--got-border);
  border-radius:var(--radius);
}

.comparison-table {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:40px;
}

.comparison-column {
  background:var(--got-surface);
  border:1px solid var(--got-border);
  border-radius:var(--radius);
  padding:32px;
}

.architecture-flow,
.ecosystem-flow {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  margin-top:40px;
}

.architecture-flow div,
.ecosystem-flow div {
  width:min(100%,420px);
  padding:18px 28px;
  text-align:center;
  background:var(--got-surface);
  border:1px solid var(--got-border);
  border-radius:12px;
}

.roadmap-item {
  margin-top:24px;
  padding:32px;
  background:var(--got-surface);
  border:1px solid var(--got-border);
  border-radius:var(--radius);
}

.faq-item {
  padding:24px 0;
  border-bottom:1px solid(var(--got-border));
}

@media(max-width:900px){
  .card-grid {
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .card-grid,
  .comparison-table {
    grid-template-columns:1fr;
  }

  .hero-buttons {
    flex-direction:column;
  }
}


/* HEADER V2 UPDATE */

#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header {
    background: rgba(9,9,11,.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--got-border);
}

.site-header nav {
  max-width: var(--container);
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo span {
  font-weight: 700;
  letter-spacing: .08em;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--got-text);
  border: 1px solid var(--got-border);
  border-radius: 10px;
  font-size: 24px;
  cursor: pointer;
}

.main-menu {
  position: absolute;
  top: 78px;
  right: 24px;
  width: 260px;
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  background: var(--got-surface);
  border: 1px solid var(--got-border);
  border-radius: 16px;
}

.main-menu.active {
  display: flex;
}

.faq-item {
  border-bottom: 1px solid var(--got-border);
}

@media(max-width:900px){
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px){
  .card-grid,
  .comparison-table {
    grid-template-columns: 1fr;
  }

  .main-menu {
    right: 18px;
  }
}

/* Footer Legal Links */

footer p:last-child {
    white-space: nowrap;
}


@media (max-width: 600px) {

    footer p:last-child {

        font-size: 13px;

    }

}

/* Footer Social Icons */

.footer-socials {

    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;

    margin-bottom:20px;

}

.footer-socials a {

    display:flex;
    align-items:center;
    justify-content:center;

}

.footer-socials img {

    width:28px;
    height:28px;
    opacity:0.75;

    transition:0.3s ease;

}

.footer-socials img:hover {

    opacity:1;

    transform:translateY(-3px);

}

@media(max-width:600px){

    .footer-socials img {

        width:24px;
        height:24px;

    }

}

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

.roadmap-section {

    padding: 90px 0;

}

.roadmap-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 28px;

    margin-top: 50px;

}

.roadmap-card {

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 18px;

    padding: 28px;

    transition: .3s ease;

}

.roadmap-card:hover {

    transform: translateY(-6px);

    border-color: rgba(201,162,39,.45);

    box-shadow: 0 12px 35px rgba(0,0,0,.35);

}

.roadmap-card h3 {

    margin: 18px 0;

    font-size: 1.35rem;

}

.roadmap-card p {

    color: #bdbdbd;

    margin-bottom: 20px;

}

.roadmap-card ul {

    padding-left: 20px;

    margin: 0;

}

.roadmap-card li {

    margin-bottom: 10px;

    color: #d4d4d4;

}






/* ---------- Status Badge ---------- */

.roadmap-status {

    display: inline-block;

    padding: 6px 14px;

    border-radius: 999px;

    font-size: .8rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}






/* ==========================================================
   ROADMAP STATUS COLORS (GOT BRAND)
========================================================== */


/* ---------- Completed ---------- */

.roadmap-card.completed{

    border-left:4px solid #c9a227;

}

.completed .roadmap-status{

    background:rgba(201,162,39,.18);

    color:#c9a227;

}




/* ---------- Live ---------- */

.roadmap-card.live{

    border-left:4px solid #f4d35e;

}

.live .roadmap-status{

    background:rgba(244,211,94,.15);

    color:#f4d35e;

}




/* ---------- In Progress ---------- */

.roadmap-card.progress{

    border-left:4px solid #d4a017;

}

.progress .roadmap-status{

    background:rgba(212,160,23,.15);

    color:#d4a017;

}




/* ---------- Upcoming ---------- */

.roadmap-card.upcoming{

    border-left:4px solid #8a8a8a;

}

.upcoming .roadmap-status{

    background:rgba(138,138,138,.15);

    color:#bdbdbd;

}




/* ---------- Future ---------- */

.roadmap-card.future{

    border-left:4px solid #5f5f5f;

}

.future .roadmap-status{

    background:rgba(95,95,95,.15);

    color:#8e8e8e;

}


/* ---------- Mobile ---------- */

@media (max-width:768px){

    .roadmap-grid{

        grid-template-columns:1fr;

    }

    .roadmap-card{

        padding:22px;

    }

}

/* ==========================================================
   FEATURED LIVE PHASE
========================================================== */

.roadmap-card.featured{

    position:relative;
    border:1px solid rgba(244,211,94,.45);
    box-shadow:
        0 0 0 1px rgba(244,211,94,.08),
        0 0 28px rgba(244,211,94,.12);

}

.roadmap-card.featured:hover{

    box-shadow:
        0 0 0 1px rgba(244,211,94,.18),
        0 0 42px rgba(244,211,94,.22);

}

.roadmap-note{

    margin-top:18px;
    margin-bottom:18px;
    padding:12px 14px;
    border-left:3px solid #f4d35e;
    background:rgba(244,211,94,.06);
    color:#d7d7d7;
    font-size:.92rem;
    border-radius:8px;

}

.status-badge {

    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(0,255,150,0.12);
    color: #00ff99;
    border: 1px solid rgba(0,255,150,0.35);
    letter-spacing: 1px;

}

.spacing {
    margin-top: 60px;
}