/* /Features/Home/Home.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */

.hero-section[b-hpdtsovuir] {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--navbar-h));
    margin-top: var(--navbar-h);          /* push below fixed navbar */
    display: flex;
    align-items: center;
    padding: 0 0 3rem;
}

/* Full-bleed background */
.hero-bg[b-hpdtsovuir] {
    position: absolute;
    inset: 0;
    background-image: url('/content/img/corridor.png');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.3) blur(3px);
    transform: scale(1.04);   /* prevent edge blur artifacts */
    z-index: 0;
}

/* Gradient fade at bottom */
.hero-section[b-hpdtsovuir]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent, var(--bg-base));
    z-index: 1;
    pointer-events: none;
}

/* Company logo — top right */
.hero-logo[b-hpdtsovuir] {
    position: absolute;
    top: 0;
    right: 0;
    width: 34rem;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.hero-logo-img[b-hpdtsovuir] {
    position: absolute;
    top: 3rem;
    right: 1rem;
    width: 30rem;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(-2px 3px 8px rgba(0, 0, 0, 0.75));
}

/* Content */
.hero-content[b-hpdtsovuir] {
    position: relative;
    z-index: 3;
    padding: 0 5rem 0 6rem;
    max-width: 58rem;
}

.hero-company-name[b-hpdtsovuir] {
    font-family: "Tektur", serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.1;
    background: linear-gradient(90deg,
        rgb(65, 122, 224)      0%,
        rgb(128, 102, 201)     5%,
        rgba(167, 32, 177, 1) 15%,
        rgba(255, 0, 101, 1)  100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem; /* reset browser H1 margin-top */
}

.hero-motto[b-hpdtsovuir] {
    font-family: "Electrolize", sans-serif;
    color: rgba(255, 255, 255, 0.82) !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
    max-width: 36rem;
    line-height: 1.5;
}

.hero-cta[b-hpdtsovuir] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Social icon strip */
.hero-social[b-hpdtsovuir] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-social-icon[b-hpdtsovuir] {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-social-icon:hover[b-hpdtsovuir] {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

/* Steam icon gets a subtle steam-blue tint on hover */
.hero-social-steam:hover[b-hpdtsovuir] {
    background: rgba(102, 192, 244, 0.15);
    border-color: rgba(102, 192, 244, 0.45);
    color: #66c0f4;
}

/* ═══════════════════════════════════════════════════════
   STUDIO SECTION
   ═══════════════════════════════════════════════════════ */

.studio-intro[b-hpdtsovuir] {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto 2.5rem;
    padding: 0 1.5rem;
}

.studio-lead[b-hpdtsovuir] {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.pillars-grid[b-hpdtsovuir] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 1.5rem 1.5rem;
}

.pillar[b-hpdtsovuir] {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.pillar:hover[b-hpdtsovuir] {
    background: var(--glass-bg-hover);
    transform: translateY(-0.3rem);
}

.pillar-icon[b-hpdtsovuir] {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: var(--ngs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar-title[b-hpdtsovuir] {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.pillar-desc[b-hpdtsovuir] {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .pillars-grid[b-hpdtsovuir] { grid-template-columns: 1fr; }
    .studio-lead[b-hpdtsovuir]  { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════
   PROJECTS GRID
   ═══════════════════════════════════════════════════════ */

.projects-grid[b-hpdtsovuir] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 0.5rem 1.5rem 1.5rem;
}

.project-card[b-hpdtsovuir] {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    max-width: 26rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    user-select: none;
}

.project-card:hover[b-hpdtsovuir] {
    background: var(--glass-bg-hover);
    transform: translateY(-0.4rem);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.project-card-logo[b-hpdtsovuir] {
    width: 100%;
    height: 14rem;
    overflow: hidden;
}

.project-card-logo img[b-hpdtsovuir] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85);
    transition: filter 0.3s ease, transform 0.4s ease;
}

.project-card:hover .project-card-logo img[b-hpdtsovuir] {
    filter: brightness(1);
    transform: scale(1.03);
}

.project-card-body[b-hpdtsovuir] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-badge[b-hpdtsovuir] {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: "Electrolize", sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(var(--ngs-primary-rgb), 0.15);
    color: var(--ngs-primary);
    border: 1px solid rgba(var(--ngs-primary-rgb), 0.3);
    border-radius: 999px;
    padding: 0.2em 0.85em;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.project-title[b-hpdtsovuir] {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.project-desc[b-hpdtsovuir] {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
}

.project-tags[b-hpdtsovuir] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.85rem;
}

.project-tag[b-hpdtsovuir] {
    font-size: 0.72rem;
    font-family: "Electrolize", sans-serif;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    border-radius: 0.3rem;
    padding: 0.2em 0.65em;
}

.project-btns[b-hpdtsovuir] {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* Steam button on project card */
.btn-steam[b-hpdtsovuir] {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    color: #c7d5e0;
    border: 1px solid rgba(102, 192, 244, 0.3);
    font-family: "Electrolize", sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    padding: 0.375rem 0.85rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 0 14px rgba(102, 192, 244, 0.12);
}

.btn-steam:hover[b-hpdtsovuir] {
    color: #fff;
    border-color: rgba(102, 192, 244, 0.65);
    box-shadow: 0 0 22px rgba(102, 192, 244, 0.32);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════
   TRUSTED — placeholder tile
   ═══════════════════════════════════════════════════════ */

.trusted-placeholder[b-hpdtsovuir] {
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
}

.trusted-placeholder[b-hpdtsovuir]  .tile {
    max-width: 30rem;
    width: 100%;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════ */

[b-hpdtsovuir] .contact-glass {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.contact-heading[b-hpdtsovuir] {
    background: var(--ngs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.contact-subheading[b-hpdtsovuir] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Info rows (email / discord / steam) */
.contact-info-list[b-hpdtsovuir] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.contact-info-row[b-hpdtsovuir] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    padding: 0.7rem 0.9rem;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-info-row:hover[b-hpdtsovuir] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.contact-info-icon[b-hpdtsovuir] {
    font-size: 1.1rem;
    color: var(--text-secondary);
    width: 1.4rem;
    text-align: center;
    flex-shrink: 0;
}

.contact-info-text[b-hpdtsovuir] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.85rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

/* Social icons row */
.contact-socials[b-hpdtsovuir] {
    display: flex;
    gap: 0.25rem;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .hero-logo[b-hpdtsovuir] { width: 26rem; }
    .hero-logo-img[b-hpdtsovuir] { width: 24rem; }
}

@media (max-width: 992px) {
    .hero-content[b-hpdtsovuir] { padding: 2rem 2.5rem; }
    .hero-company-name[b-hpdtsovuir] { font-size: 2.4rem; }
    .hero-logo[b-hpdtsovuir] { display: none; }
}

@media (max-width: 768px) {
    .hero-section[b-hpdtsovuir] { min-height: 80vh; }
    .hero-content[b-hpdtsovuir] { padding: 2rem 1.5rem; }
    .hero-company-name[b-hpdtsovuir] { font-size: 2rem; }
    .hero-motto[b-hpdtsovuir] { font-size: 1.15rem !important; }
}

@media (max-width: 576px) {
    .hero-company-name[b-hpdtsovuir] { font-size: 1.6rem; }
    .hero-motto[b-hpdtsovuir] { font-size: 1rem !important; }
}
/* /Features/Legal/PrivacyPolicy.razor.rz.scp.css */
.pp-wrap[b-ciiyavmk1z] {
    min-height: calc(100vh - var(--navbar-h, 60px));
    padding: 3rem 1rem 5rem;
    background:
        radial-gradient(ellipse at 60% 0%, rgba(109, 40, 217, 0.06) 0%, transparent 60%),
        var(--bg-primary, #0a0a0f);
}

.pp-container[b-ciiyavmk1z] {
    max-width: 780px;
    margin: 0 auto;
}

/* ── Header ── */
.pp-header[b-ciiyavmk1z] {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pp-title[b-ciiyavmk1z] {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    background: var(--ngs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}

.pp-updated[b-ciiyavmk1z] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ── Sections ── */
.pp-section[b-ciiyavmk1z] {
    margin-bottom: 2.25rem;
}

.pp-section h2[b-ciiyavmk1z] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pp-section h3[b-ciiyavmk1z] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #c4b5fd;
    margin: 1rem 0 0.4rem;
}

.pp-section p[b-ciiyavmk1z],
.pp-section li[b-ciiyavmk1z] {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.pp-section ul[b-ciiyavmk1z] {
    padding-left: 1.25rem;
    margin: 0.25rem 0 0.5rem;
}

.pp-section li[b-ciiyavmk1z] { margin-bottom: 0.35rem; }

.pp-section strong[b-ciiyavmk1z] { color: #e2e8f0; }

.pp-section a[b-ciiyavmk1z] {
    color: #a78bfa;
    text-decoration: none;
}

.pp-section a:hover[b-ciiyavmk1z] { text-decoration: underline; }

/* ── Table ── */
.pp-table[b-ciiyavmk1z] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin: 0.75rem 0 1rem;
    color: var(--text-secondary);
}

.pp-table th[b-ciiyavmk1z],
.pp-table td[b-ciiyavmk1z] {
    padding: 0.55rem 0.75rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pp-table thead th[b-ciiyavmk1z] {
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    font-weight: 600;
}

.pp-table code[b-ciiyavmk1z] {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    color: #c4b5fd;
}

@media (max-width: 600px) {
    .pp-table[b-ciiyavmk1z] { font-size: 0.75rem; }
    .pp-table th[b-ciiyavmk1z], .pp-table td[b-ciiyavmk1z] { padding: 0.4rem 0.5rem; }
}

/* ── Back link ── */
.pp-back[b-ciiyavmk1z] {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.pp-back-link[b-ciiyavmk1z] {
    display: inline-flex;
    align-items: center;
    color: #a78bfa;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
}

.pp-back-link:hover[b-ciiyavmk1z] { opacity: 0.75; }
/* /Features/Projects/DpRoadmap.razor.rz.scp.css */
/* ── Roadmap wrapper ── */
.dp-roadmap[b-kgbb9rscxv] {
    padding: 1.5rem 0 0.5rem;
}

/* ── Track ────────────────────────────────────────────────────────
   No padding-top here — the dots sit at the very top of the track
   so the absolutely-positioned lines at top:18px (= dot-height/2)
   pass exactly through the dot centres.                           */
.dp-roadmap-track[b-kgbb9rscxv] {
    position: relative;
    display: flex;
    align-items: flex-start;
}

/* ── Background line (full width) ── */
.dp-roadmap-line-bg[b-kgbb9rscxv] {
    position: absolute;
    top: 18px;                   /* = dot-height / 2 */
    transform: translateY(-50%);
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    z-index: 0;
}

/* ── Filled (progress) line ──────────────────────────────────────
   Starts at left:0, width supplied via inline style.
   Ends exactly at the centre of the last Released dot.            */
.dp-roadmap-line-fill[b-kgbb9rscxv] {
    position: absolute;
    top: 18px;
    transform: translateY(-50%);
    left: 0;
    height: 4px;
    background: var(--ngs-gradient, linear-gradient(90deg, #7c3aed, #a78bfa));
    border-radius: 2px;
    z-index: 1;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(167, 139, 250, 0.4);
}

/* ── Individual milestone ── */
.dp-roadmap-milestone[b-kgbb9rscxv] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    z-index: 2;
}

/* ── Dot ── */
.dp-roadmap-dot[b-kgbb9rscxv] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: #13121a;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Released */
.dp-milestone--released .dp-roadmap-dot[b-kgbb9rscxv] {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    border-color: #a78bfa;
    color: #fff;
    box-shadow: 0 0 14px rgba(167, 139, 250, 0.55);
}

/* Current */
.dp-milestone--current .dp-roadmap-dot[b-kgbb9rscxv] {
    background: #13121a;
    border-color: #a78bfa;
    color: #a78bfa;
    box-shadow: 0 0 18px rgba(167, 139, 250, 0.45), inset 0 0 6px rgba(167, 139, 250, 0.15);
    animation: dp-pulse-b-kgbb9rscxv 2.4s ease-in-out infinite;
}

/* Upcoming */
.dp-milestone--upcoming .dp-roadmap-dot[b-kgbb9rscxv] {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.25);
}

@keyframes dp-pulse-b-kgbb9rscxv {
    0%, 100% { box-shadow: 0 0 10px rgba(167, 139, 250, 0.35), inset 0 0 4px rgba(167, 139, 250, 0.1); }
    50%       { box-shadow: 0 0 24px rgba(167, 139, 250, 0.6),  inset 0 0 8px rgba(167, 139, 250, 0.2); }
}

/* ── Labels ── */
.dp-roadmap-label[b-kgbb9rscxv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 0.75rem;
    gap: 0.2rem;
}

.dp-roadmap-version[b-kgbb9rscxv] {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #e2e8f0;
    white-space: nowrap;
}

.dp-roadmap-status[b-kgbb9rscxv] {
    font-size: 0.7rem;
    color: var(--text-secondary, #94a3b8);
    white-space: nowrap;
}

.dp-milestone--released .dp-roadmap-version[b-kgbb9rscxv] { color: #a78bfa; }
.dp-milestone--current  .dp-roadmap-version[b-kgbb9rscxv] { color: #c4b5fd; }
.dp-milestone--current  .dp-roadmap-status[b-kgbb9rscxv]  { color: #a78bfa; }

/* ── Mobile: vertical stack ── */
@media (max-width: 600px) {
    .dp-roadmap-track[b-kgbb9rscxv] {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 18px;
    }

    /* Lines don't translate well vertically — dot colours tell the story */
    .dp-roadmap-line-bg[b-kgbb9rscxv],
    .dp-roadmap-line-fill[b-kgbb9rscxv] {
        display: none;
    }

    .dp-roadmap-milestone[b-kgbb9rscxv] {
        flex-direction: row;
        align-items: center;
        padding: 0.6rem 0;
        flex: none;
        width: 100%;
    }

    .dp-roadmap-label[b-kgbb9rscxv] {
        flex-direction: row;
        align-items: baseline;
        text-align: left;
        margin-top: 0;
        margin-left: 0.85rem;
        gap: 0.5rem;
    }

    .dp-roadmap-version[b-kgbb9rscxv] { font-size: 0.85rem; }
    .dp-roadmap-status[b-kgbb9rscxv]  { font-size: 0.72rem; }
}
/* /Features/Projects/DreamscapePursuit.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   GAME HERO
   ═══════════════════════════════════════════════════════ */

.dp-hero[b-yo6s3pkkg3] {
    position: relative;
    min-height: 92vh;
    margin-top: var(--navbar-h);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dp-hero-bg[b-yo6s3pkkg3] {
    position: absolute;
    inset: 0;
    background-image: url('/content/img/corridor.png');
    background-size: cover;
    background-position: center 20%;
    transform: scale(1.04);
    z-index: 0;
}

/* Darkening gradient overlay */
.dp-hero-overlay[b-yo6s3pkkg3] {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(6, 6, 15, 0.4) 0%,
            rgba(6, 6, 15, 0.55) 60%,
            rgba(6, 6, 15, 0.98) 100%);
    z-index: 1;
}

.dp-hero-content[b-yo6s3pkkg3] {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem 5rem;
    max-width: 60rem;
}

/* Breadcrumb */
.dp-breadcrumb[b-yo6s3pkkg3] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 2rem;
}

.dp-breadcrumb a[b-yo6s3pkkg3] {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.dp-breadcrumb a:hover[b-yo6s3pkkg3] { color: rgba(255, 255, 255, 0.85); }

.dp-breadcrumb span[b-yo6s3pkkg3] { color: rgba(255, 255, 255, 0.75); }

/* Game logo */
.dp-logo-wrap[b-yo6s3pkkg3] {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.dp-logo[b-yo6s3pkkg3],
.dp-logo-shadow[b-yo6s3pkkg3] {
    display: block;
    width: min(28rem, 85vw);
    height: auto;
}

.dp-logo-shadow[b-yo6s3pkkg3] {
    position: absolute;
    top: 4px;
    left: 4px;
    filter: brightness(0%) blur(4px);
    opacity: 0.7;
}

/* Tagline */
.dp-tagline[b-yo6s3pkkg3] {
    font-family: "Electrolize", sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

/* Badges */
.dp-hero-badges[b-yo6s3pkkg3] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.dp-badge[b-yo6s3pkkg3] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    padding: 0.35em 1em;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
}

.dp-badge-status[b-yo6s3pkkg3] {
    background: rgba(var(--ngs-primary-rgb), 0.15);
    border-color: rgba(var(--ngs-primary-rgb), 0.4);
    color: var(--ngs-primary);
}

/* Steam CTA button */
.dp-hero-actions[b-yo6s3pkkg3] {
    display: flex;
    justify-content: center;
}

.dp-steam-btn[b-yo6s3pkkg3] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    color: #c7d5e0;
    border: 1px solid rgba(102, 192, 244, 0.35);
    font-family: "Electrolize", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.06em;
    padding: 0.75rem 2.2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow:
        0 0 24px rgba(102, 192, 244, 0.18),
        0 4px 20px rgba(0, 0, 0, 0.55);
}

.dp-steam-btn i[b-yo6s3pkkg3] { font-size: 1.3em; }

.dp-steam-btn:hover[b-yo6s3pkkg3] {
    color: #fff;
    border-color: rgba(102, 192, 244, 0.7);
    box-shadow:
        0 0 40px rgba(102, 192, 244, 0.4),
        0 6px 28px rgba(0, 0, 0, 0.65);
    transform: translateY(-2px);
}

/* Social strip in hero */
.dp-hero-social[b-yo6s3pkkg3] {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
}

.dp-social-icon[b-yo6s3pkkg3] {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}

.dp-social-icon:hover[b-yo6s3pkkg3] {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   STEAM BANNER
   ═══════════════════════════════════════════════════════ */

.dp-steam-banner[b-yo6s3pkkg3] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.95rem 1.5rem;
    background: linear-gradient(90deg,
        rgba(27, 40, 56, 0.92) 0%,
        rgba(42, 71, 94, 0.88) 50%,
        rgba(27, 40, 56, 0.92) 100%);
    border-top: 1px solid rgba(102, 192, 244, 0.18);
    border-bottom: 1px solid rgba(102, 192, 244, 0.18);
    text-decoration: none;
    transition: background 0.25s ease;
    cursor: pointer;
}

.dp-steam-banner:hover[b-yo6s3pkkg3] {
    background: linear-gradient(90deg,
        rgba(42, 71, 94, 0.95) 0%,
        rgba(56, 98, 130, 0.9) 50%,
        rgba(42, 71, 94, 0.95) 100%);
}

.dp-steam-banner > i[b-yo6s3pkkg3] {
    font-size: 1.75rem;
    color: #66c0f4;
    flex-shrink: 0;
}

.dp-steam-banner-text[b-yo6s3pkkg3] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: #c7d5e0;
}

.dp-steam-banner-cta[b-yo6s3pkkg3] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    color: #66c0f4;
    font-weight: 600;
}

@media (max-width: 480px) {
    .dp-steam-banner-text[b-yo6s3pkkg3] { display: none; }
}

/* ═══════════════════════════════════════════════════════
   IN-PAGE SUBNAV
   ═══════════════════════════════════════════════════════ */

.dp-subnav[b-yo6s3pkkg3] {
    position: sticky;
    top: var(--navbar-h);
    z-index: 900;
    background: rgba(6, 6, 16, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dp-subnav-inner[b-yo6s3pkkg3] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0 1rem;
    max-width: 72rem;
    margin: 0 auto;
}

.dp-subnav-inner a[b-yo6s3pkkg3] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 0.85rem 1.1rem;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

.dp-subnav-inner a:hover[b-yo6s3pkkg3] {
    color: #fff;
    border-bottom-color: var(--ngs-primary);
}

/* ═══════════════════════════════════════════════════════
   SECTION WRAPPERS
   ═══════════════════════════════════════════════════════ */

.dp-section[b-yo6s3pkkg3] {
    scroll-margin-top: calc(var(--navbar-h) + 48px);
    padding: 3rem 0 0.5rem;
}

.dp-section-header[b-yo6s3pkkg3] {
    text-align: center;
    margin: 0 auto 1.5rem;
    width: 75%;
}

.dp-section-title[b-yo6s3pkkg3] {
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    background: var(--ngs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dp-section-desc[b-yo6s3pkkg3] {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════
   TRAILER
   ═══════════════════════════════════════════════════════ */

.dp-trailer-wrap[b-yo6s3pkkg3] {
    max-width: 54rem;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .dp-hero[b-yo6s3pkkg3] { min-height: 75vh; }
    .dp-tagline[b-yo6s3pkkg3] { font-size: 1rem; }
    .dp-section-header[b-yo6s3pkkg3] { width: 92%; }
}
/* /Shared/Components/ContactForm.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   WRAPPER
   ═══════════════════════════════════════════════════════ */

.cf-wrap[b-sf375w2ts2] {
    padding: 0.25rem 0;
}

/* ═══════════════════════════════════════════════════════
   LABELS
   ═══════════════════════════════════════════════════════ */

.cf-label[b-sf375w2ts2] {
    display: block;
    font-family: "Electrolize", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.45rem;
}

/* ═══════════════════════════════════════════════════════
   INPUTS / SELECT / TEXTAREA
   ═══════════════════════════════════════════════════════ */

.cf-input[b-sf375w2ts2] {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.6rem;
    color: var(--text-primary);
    font-family: "Electrolize", sans-serif;
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.cf-input[b-sf375w2ts2]::placeholder {
    color: var(--text-muted);
}

.cf-input:focus[b-sf375w2ts2] {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(var(--ngs-primary-rgb), 0.55);
    box-shadow: 0 0 0 3px rgba(var(--ngs-primary-rgb), 0.12);
    color: var(--text-primary);
}

/* select arrow */
select.cf-input[b-sf375w2ts2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239898b8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.2rem;
    cursor: pointer;
}

select.cf-input option[b-sf375w2ts2] {
    background: #0d0d20;
    color: var(--text-primary);
}

.cf-textarea[b-sf375w2ts2] {
    resize: vertical;
    min-height: 9rem;
    line-height: 1.6;
}

/* Error state */
.cf-input.cf-error[b-sf375w2ts2] {
    border-color: rgba(220, 50, 80, 0.65);
    box-shadow: 0 0 0 3px rgba(220, 50, 80, 0.12);
}

.cf-error-msg[b-sf375w2ts2] {
    display: block;
    font-family: "Electrolize", sans-serif;
    font-size: 0.72rem;
    color: rgba(220, 80, 100, 0.9);
    margin-top: 0.3rem;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════
   FOOTER ROW
   ═══════════════════════════════════════════════════════ */

/* Send error banner */
.cf-send-error[b-sf375w2ts2] {
    display: flex;
    align-items: center;
    background: rgba(220, 50, 80, 0.1);
    border: 1px solid rgba(220, 50, 80, 0.35);
    border-radius: 0.5rem;
    padding: 0.65rem 0.9rem;
    font-family: "Electrolize", sans-serif;
    font-size: 0.82rem;
    color: rgba(240, 100, 120, 0.95);
    letter-spacing: 0.02em;
}

.cf-footer[b-sf375w2ts2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cf-privacy[b-sf375w2ts2] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════
   SEND BUTTON
   ═══════════════════════════════════════════════════════ */

.cf-btn-send[b-sf375w2ts2] {
    display: inline-flex;
    align-items: center;
    background: var(--ngs-gradient);
    color: #fff;
    font-family: "Electrolize", sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    padding: 0.65rem 1.75rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 18px rgba(var(--ngs-primary-rgb), 0.3);
}

.cf-btn-send:hover:not(:disabled)[b-sf375w2ts2] {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(var(--ngs-primary-rgb), 0.45);
}

.cf-btn-send:disabled[b-sf375w2ts2],
.cf-btn-loading[b-sf375w2ts2] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Spinner inside button */
.cf-spinner[b-sf375w2ts2] {
    display: inline-block;
    width: 0.9rem;
    height: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cf-spin-b-sf375w2ts2 0.7s linear infinite;
    margin-right: 0.55rem;
    flex-shrink: 0;
}

@keyframes cf-spin-b-sf375w2ts2 {
    to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════
   SUCCESS STATE
   ═══════════════════════════════════════════════════════ */

.cf-success[b-sf375w2ts2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1rem;
    gap: 0.6rem;
}

.cf-success-icon[b-sf375w2ts2] {
    font-size: 3rem;
    background: var(--ngs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.cf-success-title[b-sf375w2ts2] {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 0;
}

.cf-success-desc[b-sf375w2ts2] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 26rem;
    line-height: 1.6;
    margin: 0;
}

.cf-btn-reset[b-sf375w2ts2] {
    margin-top: 0.75rem;
    font-family: "Electrolize", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.35rem 1.2rem;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.cf-btn-reset:hover[b-sf375w2ts2] {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.35);
}
/* /Shared/Components/CookieConsent.razor.rz.scp.css */
.cookie-banner[b-h84bavuiy3] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0.875rem 1rem;
    background: rgba(10, 10, 20, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: slideUp-b-h84bavuiy3 0.3s ease;
}

@keyframes slideUp-b-h84bavuiy3 {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

.cookie-inner[b-h84bavuiy3] {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text[b-h84bavuiy3] {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-secondary);
    min-width: 200px;
}

.cookie-text strong[b-h84bavuiy3] { color: #fff; }

.cookie-text a[b-h84bavuiy3] {
    color: #a78bfa;
    text-decoration: none;
}

.cookie-text a:hover[b-h84bavuiy3] { text-decoration: underline; }

.cookie-actions[b-h84bavuiy3] {
    display: flex;
    gap: 0.625rem;
    flex-shrink: 0;
}

.cookie-btn[b-h84bavuiy3] {
    padding: 0.45rem 1.1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn:hover[b-h84bavuiy3] { opacity: 0.85; }

.cookie-btn-decline[b-h84bavuiy3] {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.cookie-btn-accept[b-h84bavuiy3] {
    background: var(--ngs-gradient);
    color: #fff;
}

@media (max-width: 576px) {
    .cookie-inner[b-h84bavuiy3]  { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .cookie-actions[b-h84bavuiy3] { width: 100%; justify-content: flex-end; }
}
/* /Shared/Components/DevTile.razor.rz.scp.css */
.dev-tile[b-5k8cbnljda] {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    box-shadow: var(--glass-shadow);
    margin: 1.5rem;
    padding: 2.25rem;
    color: var(--text-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    user-select: none;
    height: calc(100% - 3rem);
}

.dev-tile:hover[b-5k8cbnljda] {
    background: var(--glass-bg-hover);
    transform: translateY(-0.25rem);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

/* Role / Position */
.dev-position[b-5k8cbnljda] {
    font-family: "Tektur", serif;
    font-size: 1.15rem;
    background: linear-gradient(90deg,
        rgba(119, 149, 198, 1) 0%,
        rgba(102,  63, 215, 1) 15%,
        rgba(255,   0, 101, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.85rem;
}

/* Name */
.dev-name[b-5k8cbnljda] {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Nickname */
.dev-nickname[b-5k8cbnljda] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ngs-secondary);
    -webkit-text-fill-color: var(--ngs-secondary);
}

/* Description */
.dev-description[b-5k8cbnljda] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-top: 1rem;
    min-height: 5rem;
}

/* Social icons row */
.dev-social[b-5k8cbnljda] {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .dev-tile[b-5k8cbnljda] { padding: 2rem; margin: 0.75rem; height: auto; }
    .dev-position[b-5k8cbnljda] { font-size: 1rem; }
}

@media (max-width: 560px) {
    .dev-tile[b-5k8cbnljda] { padding: 1.5rem; margin: 0.5rem; }
    .dev-position[b-5k8cbnljda] { font-size: 0.9rem; }
    .dev-description[b-5k8cbnljda] { font-size: 0.85rem; }
}
/* /Shared/Components/Footer.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   SHELL
   ═══════════════════════════════════════════════════════ */

.site-footer[b-gw7pm38url] {
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 3rem;
    padding: 1.75rem 2rem 1.5rem;
    user-select: none;
}

.footer-inner[b-gw7pm38url] {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

/* ═══════════════════════════════════════════════════════
   BRAND ROW
   ═══════════════════════════════════════════════════════ */

.footer-brand-row[b-gw7pm38url] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
}

.footer-brand[b-gw7pm38url] {
    font-family: "Tektur", serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    background: var(--ngs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-copy[b-gw7pm38url] {
    font-family: "Electrolize", sans-serif;
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════════════════════ */

.footer-divider[b-gw7pm38url] {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════════════════════
   LINKS ROW
   ═══════════════════════════════════════════════════════ */

.footer-links-row[b-gw7pm38url] {
    display: flex;
    align-items: center;
    gap: 0.5rem 1.75rem;
    flex-wrap: wrap;
}

.footer-link[b-gw7pm38url] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    transition: color 0.2s ease;
    user-select: text;
}

.footer-link:hover[b-gw7pm38url] {
    color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════════════════
   LEGAL ROW
   ═══════════════════════════════════════════════════════ */

.footer-legal-row[b-gw7pm38url] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem 2rem;
}

.footer-legal-group[b-gw7pm38url] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-legal-label[b-gw7pm38url] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-legal-value[b-gw7pm38url] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

.footer-mono[b-gw7pm38url] {
    font-family: "Share Tech Mono", monospace;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.footer-iban[b-gw7pm38url] {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.footer-bank-icon[b-gw7pm38url] {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75em;
}

/* Vertical pipe separators between groups */
.footer-legal-sep[b-gw7pm38url] {
    width: 1px;
    height: 2rem;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .footer-legal-sep[b-gw7pm38url]  { display: none; }
    .footer-legal-row[b-gw7pm38url]  { gap: 0.65rem 0; flex-direction: column; align-items: flex-start; }
    .footer-brand-row[b-gw7pm38url]  { flex-direction: column; align-items: flex-start; }
}
/* /Shared/Components/PageSection.razor.rz.scp.css */
.page-section[b-kvzgogys1e] {
    padding: 4rem 0 2rem;
    user-select: none;
    scroll-margin-top: calc(var(--navbar-h) + 8px);
}

.page-header[b-kvzgogys1e] {
    text-align: center;
    margin: 0 auto 1.5rem;
    width: 75%;
}

.page-header-title[b-kvzgogys1e] {
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    background: var(--ngs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header-description[b-kvzgogys1e] {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.page-section-content[b-kvzgogys1e] { padding: 0 0.5rem; }

@media (max-width: 768px) {
    .page-section[b-kvzgogys1e] { padding: 2.5rem 0 1rem; }
    .page-header[b-kvzgogys1e]  { width: 92%; }
    .page-header-title[b-kvzgogys1e] { font-size: 1.3rem; }
}
/* /Shared/Components/ProgressBar.razor.rz.scp.css */
.progress-wrap[b-vosajmfg0z] {
    padding: 0.5rem 0;
}

.progress-track[b-vosajmfg0z] {
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: visible;
    position: relative;
}

.progress-fill[b-vosajmfg0z] {
    height: 100%;
    border-radius: 999px;
    background: var(--ngs-gradient);
    position: relative;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 10px;
}

.progress-glow[b-vosajmfg0z] {
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--ngs-primary);
    box-shadow:
        0 0 0 3px rgba(var(--ngs-primary-rgb), 0.3),
        0 0 12px rgba(var(--ngs-primary-rgb), 0.6);
}

.progress-labels[b-vosajmfg0z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.9rem;
}

.progress-label-start[b-vosajmfg0z],
.progress-label-end[b-vosajmfg0z] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.progress-value[b-vosajmfg0z] {
    font-family: "Tektur", serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--ngs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.progress-pct[b-vosajmfg0z] {
    font-size: 1.1rem;
}

.progress-sublabel[b-vosajmfg0z] {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-family: "Electrolize", sans-serif;
    letter-spacing: 0.04em;
}
/* /Shared/Components/ScrollNav.razor.rz.scp.css */
.scroll-nav[b-0mx9co4nly] {
    position: fixed;
    top: 0;
    left: 0;
    width: 3.5em;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem;
    z-index: 10000;
}

.scroll-nav ul[b-0mx9co4nly] {
    list-style: none;
    padding: 0.5em;
    margin: 0;
    display: inline-block;
    width: 10em;
}

.scroll-nav-item[b-0mx9co4nly] {
    margin: 0.4rem 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1em;
    font-family: "Electrolize", sans-serif;
    transition: font-size 0.3s ease-in-out;
}

/* Icon */
.scroll-nav-item i[b-0mx9co4nly] {
    color: rgb(164, 68, 236);
    background-color: var(--ngs-light);
    text-align: center;
    width: 2.1rem;
    height: 2rem;
    padding: 0.2em;
    border-radius: 0.2em;
    box-shadow: 0 0 2px rgba(var(--ngs-dark-rgb), 0.5);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
}

/* Label — hidden by default */
.scroll-nav-item .label[b-0mx9co4nly] {
    margin-left: 0.8rem;
    padding: 0 0.4em;
    border-radius: 0.2em;
    white-space: nowrap;
    color: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}

/* Active state — bigger icon */
.scroll-nav-item.active i[b-0mx9co4nly] {
    font-size: 1.8rem;
    width: 3rem;
    height: 2.8rem;
}

/* Hover state */
.scroll-nav-item:hover[b-0mx9co4nly] {
    font-size: 1.15em;
}

.scroll-nav-item:hover .label[b-0mx9co4nly] {
    background-color: #fff;
    color: rgb(var(--ngs-dark-rgb)) !important;
    position: relative;
    z-index: 101;
    box-shadow: 0 0 5px rgba(var(--ngs-dark-rgb), 0.5);
}

.scroll-nav-item:hover .label[b-0mx9co4nly]::before {
    content: "";
    position: absolute;
    top: 0.25em;
    left: -0.3em;
    z-index: 100;
    width: 1em;
    height: 1em;
    clip-path: polygon(0 0, 50% 0, 0 50%);
    transform: rotate(-45deg);
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Language toggle separator */
.lang-toggle[b-0mx9co4nly] {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.lang-toggle i[b-0mx9co4nly] {
    color: var(--ngs-secondary);
}
/* /Shared/Components/SectionDots.razor.rz.scp.css */
.section-dots[b-kl2y0tmeiz] {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    align-items: flex-end;
    gap: 0.9rem;
    z-index: 8000;
}

/* ── Single dot wrapper ────────────────────────────── */

.dot-item[b-kl2y0tmeiz] {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* ── Dot circle ────────────────────────────────────── */

.dot[b-kl2y0tmeiz] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.dot-item:hover .dot[b-kl2y0tmeiz] {
    background: rgba(255, 255, 255, 0.65);
    transform: scale(1.3);
}

.dot-item.active .dot[b-kl2y0tmeiz] {
    width: 12px;
    height: 12px;
    background: var(--ngs-primary);
    border-color: var(--ngs-primary);
    box-shadow:
        0 0 0 3px rgba(var(--ngs-primary-rgb), 0.25),
        0 0 12px rgba(var(--ngs-primary-rgb), 0.5);
}

/* ── Tooltip label ─────────────────────────────────── */

.dot-label[b-kl2y0tmeiz] {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);

    font-family: "Electrolize", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    color: #fff;

    background: rgba(6, 6, 18, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.35rem;
    padding: 0.25rem 0.65rem;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-50%) translateX(6px);
}

.dot-item:hover .dot-label[b-kl2y0tmeiz] {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Active dot also shows label (optional — comment out to hide) */
.dot-item.active .dot-label[b-kl2y0tmeiz] {
    opacity: 0.7;
    color: rgba(var(--ngs-primary-rgb), 1);
    border-color: rgba(var(--ngs-primary-rgb), 0.3);
}
/* /Shared/Components/Tile.razor.rz.scp.css */
.tile[b-2ewlj7ti6y] {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    box-shadow: var(--glass-shadow);
    margin: 1.5rem;
    padding: 3.5rem 4.5rem;
    color: var(--text-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    user-select: none;
}

.tile:hover[b-2ewlj7ti6y] {
    background: var(--glass-bg-hover);
    transform: translateY(-0.25rem);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.tile-title[b-2ewlj7ti6y] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

/* Gradient header text */
.tile-header[b-2ewlj7ti6y] {
    margin-bottom: 1.25rem;
}

.tile-content[b-2ewlj7ti6y] {
    margin: 0 0.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.tile-content p[b-2ewlj7ti6y] { margin-bottom: 1rem; }
.tile-content p:last-child[b-2ewlj7ti6y] { margin-bottom: 0; }

@media (max-width: 768px) {
    .tile[b-2ewlj7ti6y] {
        padding: 2.5rem 2.5rem;
        margin: 0.75rem;
    }
}

@media (max-width: 560px) {
    .tile[b-2ewlj7ti6y] {
        padding: 2rem 1.5rem;
        margin: 0.5rem;
    }
}
/* /Shared/Components/TopNavBar.razor.rz.scp.css */
/* ── Fixed glass navbar ────────────────────────────── */

.top-navbar[b-l3n6vtrtvq] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-h);
    z-index: 9000;

    background: rgba(6, 6, 16, 0.72);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    display: flex;
    align-items: center;
}

.navbar-inner[b-l3n6vtrtvq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 2rem;
}

/* ── Brand ─────────────────────────────────────────── */

.brand-btn[b-l3n6vtrtvq] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    line-height: 1;
    font-family: "Tektur", serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 1.15rem;
    user-select: none;
}

.brand-name[b-l3n6vtrtvq] {
    background: var(--ngs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-accent[b-l3n6vtrtvq] {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
}

/* ── Nav links ─────────────────────────────────────── */

.nav-links[b-l3n6vtrtvq] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li[b-l3n6vtrtvq] {
    font-family: "Electrolize", sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.4rem 0.9rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    user-select: none;
}

.nav-links li:hover[b-l3n6vtrtvq] {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

/* Language toggle */
.lang-toggle[b-l3n6vtrtvq] {
    color: var(--ngs-secondary) !important;
    border: 1px solid rgba(113, 164, 241, 0.35) !important;
    margin-left: 0.5rem;
    font-size: 0.8rem !important;
    font-weight: 600;
}

.lang-toggle:hover[b-l3n6vtrtvq] {
    background: rgba(113, 164, 241, 0.12) !important;
    border-color: rgba(113, 164, 241, 0.6) !important;
}

/* ── Mobile: hide nav links, keep brand + lang toggle ── */

@media (max-width: 768px) {
    .navbar-inner[b-l3n6vtrtvq] {
        padding: 0 1.25rem;
    }

    .nav-links li:not(.lang-toggle)[b-l3n6vtrtvq] {
        display: none;
    }

    .lang-toggle[b-l3n6vtrtvq] {
        margin-left: 0 !important;
    }
}
/* /Shared/Layouts/MainLayout.razor.rz.scp.css */
.page[b-2h58x8sosm] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-2h58x8sosm] {
    flex: 1;
}

.sidebar[b-2h58x8sosm] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-2h58x8sosm] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-2h58x8sosm]  a, .top-row[b-2h58x8sosm]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-2h58x8sosm]  a:hover, .top-row[b-2h58x8sosm]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-2h58x8sosm]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-2h58x8sosm] {
        justify-content: space-between;
    }

    .top-row[b-2h58x8sosm]  a, .top-row[b-2h58x8sosm]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-2h58x8sosm] {
        flex-direction: row;
    }

    .sidebar[b-2h58x8sosm] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-2h58x8sosm] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-2h58x8sosm]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-2h58x8sosm], article[b-2h58x8sosm] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-2h58x8sosm] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-2h58x8sosm] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Shared/NotFound.razor.rz.scp.css */
.nf-wrap[b-urveimuove] {
    min-height: calc(100vh - var(--navbar-h, 60px));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(109, 40, 217, 0.08) 0%, transparent 65%),
        var(--bg-primary, #0a0a0f);
}

.nf-content[b-urveimuove] {
    max-width: 520px;
}

.nf-code[b-urveimuove] {
    font-size: clamp(6rem, 20vw, 9rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: var(--ngs-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Tektur', sans-serif;
}

.nf-title[b-urveimuove] {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
}

.nf-desc[b-urveimuove] {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.nf-btn[b-urveimuove] {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    background: var(--ngs-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.nf-btn:hover[b-urveimuove] {
    opacity: 0.85;
    transform: translateY(-2px);
    color: #fff;
}
/* /Shared/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-wqvi0b4kvn],
.components-reconnect-repeated-attempt-visible[b-wqvi0b4kvn],
.components-reconnect-failed-visible[b-wqvi0b4kvn],
.components-pause-visible[b-wqvi0b4kvn],
.components-resume-failed-visible[b-wqvi0b4kvn],
.components-rejoining-animation[b-wqvi0b4kvn] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-wqvi0b4kvn],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-wqvi0b4kvn],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-wqvi0b4kvn],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-wqvi0b4kvn],
#components-reconnect-modal.components-reconnect-retrying[b-wqvi0b4kvn],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-wqvi0b4kvn],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-wqvi0b4kvn],
#components-reconnect-modal.components-reconnect-failed[b-wqvi0b4kvn],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-wqvi0b4kvn] {
    display: block;
}


#components-reconnect-modal[b-wqvi0b4kvn] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-wqvi0b4kvn 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-wqvi0b4kvn 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-wqvi0b4kvn 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-wqvi0b4kvn]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-wqvi0b4kvn 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-wqvi0b4kvn {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-wqvi0b4kvn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-wqvi0b4kvn {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-wqvi0b4kvn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-wqvi0b4kvn] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-wqvi0b4kvn] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-wqvi0b4kvn] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-wqvi0b4kvn] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-wqvi0b4kvn] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-wqvi0b4kvn] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-wqvi0b4kvn 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-wqvi0b4kvn] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-wqvi0b4kvn {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
