/* Unified styles.css (generated) */

:root {
  --bg-main: #050816;
        --bg-elevated: #0b1020;
        --bg-elevated-soft: #0f172a;
        --accent: #7f5af0;
        --accent-soft: rgba(127, 90, 240, 0.4);
        --accent-strong: #a855f7;
        --border-soft: rgba(148, 163, 184, 0.25);
        --text-main: #e5e7eb;
        --text-muted: #9ca3af;
        --danger: #f97373;
        --success: #4ade80;
        --radius-lg: 18px;
        --radius-xl: 24px;
        --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.8);
        --max-width: 1240px;
        --transition-fast: 0.18s ease-out;
}

* {
  box-sizing: border-box;
        margin: 0;
        padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        background:
          radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.12), transparent 55%),
          radial-gradient(circle at 90% 0%, rgba(168, 85, 247, 0.25), transparent 55%),
          radial-gradient(circle at 50% 80%, rgba(248, 250, 252, 0.05), transparent 60%),
          var(--bg-main);
        color: var(--text-main);
        min-height: 100vh;
}

a {
  color: inherit;
        text-decoration: none;
}

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

.social-bar {
  position: fixed;
        top: 50%;
        left: 18px;
        transform: translateY(-50%);
        z-index: 50;
}

.social-bar ul {
  list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
}

.social-bar a {
  width: 42px;
        height: 42px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.4);
        display: grid;
        place-items: center;
        background: rgba(15, 23, 42, 0.9);
        backdrop-filter: blur(10px);
        transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.social-bar a:hover {
  transform: translateX(2px) translateY(-2px) scale(1.03);
        border-color: var(--accent);
        background: rgba(15, 23, 42, 0.95);
        box-shadow: 0 10px 30px rgba(127, 90, 240, 0.4);
}

.social-bar svg {
  width: 20px;
        height: 20px;
        fill: #e5e7eb;
}

.site-header {
  position: sticky;
        top: 0;
        z-index: 40;
        backdrop-filter: blur(18px);
        background: linear-gradient(to bottom, rgba(5, 6, 23, 0.95), rgba(5, 6, 23, 0.85), transparent);
        border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.nav-inner {
  max-width: var(--max-width);
        margin: 0 auto;
        padding: 12px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
}

.brand {
  display: flex;
        align-items: center;
        gap: 10px;
}

.brand-logo {
  width: 42px;
        height: 42px;
        border-radius: 12px;
        border: 1px solid rgba(148, 163, 184, 0.6);
        background: radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.4), transparent 55%),
                    radial-gradient(circle at 80% 100%, rgba(129, 140, 248, 0.7), transparent 55%),
                    #020617;
        display: grid;
        place-items: center;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.9);
        font-weight: 700;
        letter-spacing: 0.1em;
        font-size: 13px;
        color: #e5e7eb;
}

.brand-text {
  display: flex;
        flex-direction: column;
        gap: 2px;
}

.brand-title {
  font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #f9fafb;
}

.brand-subtitle {
  font-size: 12px;
        color: var(--text-muted);
}

.nav-links {
  display: flex;
        align-items: center;
        gap: 24px;
}

.nav-links a {
  font-size: 14px;
        font-weight: 500;
        color: var(--text-muted);
        position: relative;
        padding: 4px 0;
        text-transform: uppercase;
        letter-spacing: 0.12em;
}

.nav-links a::after {
  content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--accent), var(--accent-strong));
        transition: width 0.2s ease-out;
}

.nav-links a:hover {
  color: #e5e7eb;
}

.nav-links a.nav-active {
  color: #f9fafb;
}

.nav-links a.nav-active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
        align-items: center;
        gap: 12px;
}

.status-pill {
  display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 10px;
        border-radius: 999px;
        border: 1px solid rgba(34, 197, 94, 0.5);
        background: rgba(22, 163, 74, 0.12);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: #bbf7d0;
}

.status-dot {
  width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--success);
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.28);
}

.status-off {
  width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--danger);
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.28);
}

.btn-account-top {
  border-radius: 999px;
        padding: 8px 18px;
        font-size: 13px;
        border: 1px solid rgba(148, 163, 184, 0.5);
        background: radial-gradient(circle at 30% 0%, rgba(56, 189, 248, 0.2), transparent 50%),
                    #020617;
        color: #e5e7eb;
        font-weight: 500;
        cursor: pointer;
        transition: background var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.btn-account-top:hover {
  border-color: var(--accent);
        box-shadow: 0 12px 30px rgba(15, 23, 42, 1);
        transform: translateY(-1px);
}

.nav-toggle {
  display: none;
        width: 38px;
        height: 38px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.5);
        background: rgba(15, 23, 42, 0.9);
        align-items: center;
        justify-content: center;
        cursor: pointer;
}

.nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after {
  content: "";
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #e5e7eb;
        transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(6px);
}

.nav-toggle.open span {
  transform: rotate(45deg);
}

.nav-toggle.open span::before {
  transform: rotate(-90deg);
}

.nav-toggle.open span::after {
  opacity: 0;
        transform: translateY(0);
}

.hero {
  max-width: var(--max-width);
        margin: 16px auto 0 auto;
        padding: 18px 20px 24px;
}

.hero-badge {
  display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 4px 10px 4px 4px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.4);
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(8px);
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 10px;
}

.badge-pill {
  padding: 3px 8px;
        border-radius: 999px;
        background: radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.8), transparent 60%), rgba(15, 23, 42, 1);
        font-size: 10px;
        color: #e5e7eb;
        font-weight: 600;
}

.hero-tags {
  display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 18px;
}

.tag {
  font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        padding: 4px 10px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.5);
        background: rgba(15, 23, 42, 0.9);
        color: #e5e7eb;
}

.hero-cta {
  display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 18px;
}

.btn-primary,
    .btn-ghost {
  border-radius: 999px;
        padding: 9px 18px;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        border: 1px solid transparent;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  border-color: transparent;
        background: radial-gradient(circle at 25% 0%, rgba(56, 189, 248, 0.5), transparent 55%),
                    radial-gradient(circle at 75% 100%, rgba(129, 140, 248, 0.8), transparent 55%),
                    linear-gradient(90deg, var(--accent), var(--accent-strong));
        color: #f9fafb;
        box-shadow: 0 14px 35px rgba(79, 70, 229, 0.65);
}

.btn-primary:hover {
  transform: translateY(-1px);
        box-shadow: 0 18px 40px rgba(79, 70, 229, 0.85);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.6);
        background: rgba(15, 23, 42, 0.9);
        color: #e5e7eb;
}

.btn-ghost:hover {
  border-color: var(--accent);
        background: rgba(15, 23, 42, 0.98);
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.95);
        transform: translateY(-1px);
}

.hero-meta span {
  display: inline-flex;
        align-items: center;
        gap: 6px;
}

.hero-meta-dot {
  width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(127, 90, 240, 0.3);
}

.hero-right {
  display: flex;
        flex-direction: column;
        gap: 12px;
}

.countdown-card {
  border-radius: var(--radius-xl);
        border: 1px solid rgba(148, 163, 184, 0.4);
        background:
          radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.15), transparent 60%),
          radial-gradient(circle at 80% 120%, rgba(127, 90, 240, 0.35), transparent 60%),
          rgba(15, 23, 42, 0.98);
        padding: 16px 16px 18px;
        box-shadow: var(--shadow-soft);
        position: relative;
        overflow: hidden;
}

.countdown-card::before {
  content: "";
        position: absolute;
        inset: -30%;
        background-image: radial-gradient(circle at 20% 0%, rgba(244, 244, 245, 0.08), transparent 55%);
        mix-blend-mode: screen;
        opacity: 0.7;
        pointer-events: none;
}

.countdown-header {
  position: relative;
        z-index: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
}

.countdown-title {
  font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: #f9fafb;
}

.countdown-badge {
  font-size: 11px;
        padding: 3px 8px;
        border-radius: 999px;
        border: 1px solid rgba(234, 179, 8, 0.7);
        color: #facc15;
        background: rgba(15, 23, 42, 0.9);
}

.countdown-subtitle {
  position: relative;
        z-index: 1;
        font-size: 12px;
        color: var(--text-muted);
        margin-bottom: 10px;
}

.countdown {
  position: relative;
        z-index: 1;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
}

.countdown-item {
  flex: 1;
        min-width: 64px;
        border-radius: 14px;
        border: 1px solid rgba(148, 163, 184, 0.5);
        background: rgba(15, 23, 42, 0.92);
        text-align: center;
        padding: 8px 4px;
}

.countdown-value {
  font-size: 18px;
        font-weight: 600;
        color: #f9fafb;
        margin-bottom: 2px;
}

.countdown-label {
  font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: var(--text-muted);
}

.features-grid {
  display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
}

.feature-card {
  border-radius: var(--radius-lg);
        border: 1px solid rgba(148, 163, 184, 0.45);
        background:
          radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.1), transparent 60%),
          rgba(15, 23, 42, 0.96);
        padding: 12px 12px 13px;
        position: relative;
        overflow: hidden;
}

.feature-card::before {
  content: "";
        position: absolute;
        inset: -30%;
        background-image: radial-gradient(circle at 80% 0%, rgba(127, 90, 240, 0.16), transparent 55%);
        opacity: 0.9;
        pointer-events: none;
}

.feature-inner {
  position: relative;
        z-index: 1;
}

.feature-tag {
  font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: var(--text-muted);
        margin-bottom: 3px;
}

.feature-title {
  font-size: 14px;
        font-weight: 600;
        margin-bottom: 4px;
}

.feature-text {
  font-size: 12px;
        color: var(--text-muted);
        margin-bottom: 4px;
}

.feature-highlight {
  font-size: 11px;
        color: #e5e7eb;
}

.feature-highlight mark {
  background: none;
        color: #facc15;
        font-weight: 600;
}

.section-two-cols {
  max-width: var(--max-width);
        margin: 4px auto 0 auto;
        padding: 0 20px 26px;
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 20px;
}

.card-block {
  border-radius: var(--radius-xl);
        background: rgba(15, 23, 42, 0.96);
        border: 1px solid rgba(148, 163, 184, 0.35);
        box-shadow: var(--shadow-soft);
        padding: 16px 16px 18px;
}

.card-title {
  font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        margin-bottom: 6px;
}

.card-text {
  font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 10px;
}

.card-list {
  list-style: none;
        font-size: 12px;
        color: var(--text-muted);
        display: flex;
        flex-direction: column;
        gap: 5px;
}

.card-list li::before {
  content: "• ";
        color: var(--accent);
}

.pill-row {
  display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 8px;
}

.pill {
  font-size: 11px;
        padding: 3px 8px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.5);
        color: #e5e7eb;
        background: rgba(15, 23, 42, 0.9);
}

.site-footer {
  border-top: 1px solid rgba(30, 64, 175, 0.7);
        margin-top: 18px;
        padding: 14px 20px 18px;
        background: radial-gradient(circle at 50% 0%, rgba(30, 64, 175, 0.4), transparent 60%), #020617;
}

.footer-inner {
  max-width: var(--max-width);
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        font-size: 12px;
        color: var(--text-muted);
}

.footer-links {
  display: flex;
        flex-wrap: wrap;
        gap: 12px;
}

.footer-links a {
  text-transform: uppercase;
        letter-spacing: 0.16em;
        font-size: 11px;
        color: var(--text-muted);
}

.footer-links a:hover {
  color: #e5e7eb;
}

.footer-lang {
  display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 10px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.5);
        background: rgba(15, 23, 42, 0.98);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
}

.footer-lang img {
  width: 16px;
        height: 16px;
        border-radius: 999px;
        object-fit: cover;
}

.hero-inner {
  display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 26px;
        align-items: center;
}

.hero-title {
  font-size: clamp(30px, 3.1vw, 36px);
        line-height: 1.1;
        margin-bottom: 10px;
}

.hero-title span {
  background: linear-gradient(120deg, #e5e7eb, #fbbf24, #a855f7);
        -webkit-background-clip: text;
        color: transparent;
}

.hero-subtitle {
  font-size: 15px;
        color: var(--text-muted);
        max-width: 580px;
        margin-bottom: 16px;
}

.hero-meta {
  display: flex;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 12px;
        color: var(--text-muted);
}

.hero-card {
  border-radius: var(--radius-xl);
        border: 1px solid rgba(148, 163, 184, 0.3);
        background:
          radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.15), transparent 60%),
          radial-gradient(circle at 80% 120%, rgba(127, 90, 240, 0.4), transparent 60%),
          rgba(15, 23, 42, 0.98);
        padding: 16px 16px 18px;
        box-shadow: var(--shadow-soft);
        position: relative;
        overflow: hidden;
}

.hero-card::before {
  content: "";
        position: absolute;
        inset: -30%;
        background-image: radial-gradient(circle at 20% 0%, rgba(244, 244, 245, 0.07), transparent 55%);
        mix-blend-mode: screen;
        opacity: 0.6;
        pointer-events: none;
}

.hero-card-header {
  display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 10px;
}

.pill-small {
  font-size: 11px;
        padding: 4px 10px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.5);
        background: rgba(15, 23, 42, 0.9);
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #e5e7eb;
}

.hero-card-grid {
  margin-top: 10px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        font-size: 12px;
}

.hero-stat {
  border-radius: 12px;
        background: rgba(15, 23, 42, 0.88);
        border: 1px solid rgba(148, 163, 184, 0.35);
        padding: 8px 10px;
}

.hero-stat-label {
  font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: var(--text-muted);
        margin-bottom: 3px;
}

.hero-stat-value {
  font-size: 13px;
        font-weight: 600;
}

.hero-stat-value mark {
  background: transparent;
        color: #fde68a;
}

.hero-card-footer {
  margin-top: 12px;
        font-size: 11px;
        color: var(--text-muted);
        display: flex;
        justify-content: space-between;
        gap: 8px;
        flex-wrap: wrap;
}

.hero-card-footer strong {
  color: #e5e7eb;
        font-weight: 500;
}

.page-layout {
  max-width: var(--max-width);
        margin: 6px auto 0 auto;
        padding: 0 20px 30px;
        display: grid;
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 24px;
}

.sidebar {
  position: sticky;
        top: 84px;
        align-self: flex-start;
        border-radius: var(--radius-lg);
        background: rgba(15, 23, 42, 0.96);
        border: 1px solid rgba(148, 163, 184, 0.32);
        box-shadow: var(--shadow-soft);
        padding: 14px 12px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
}

.sidebar-title {
  font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: var(--text-muted);
        margin-bottom: 8px;
        padding-inline: 8px;
}

.sidebar-nav {
  list-style: none;
        display: flex;
        flex-direction: column;
        gap: 6px;
}

.sidebar-group {
  border-radius: 12px;
        padding: 6px 8px;
        transition: background var(--transition-fast);
}

.sidebar-group:hover {
  background: rgba(15, 23, 42, 0.96);
}

.sidebar-link-main {
  display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 6px;
        padding: 4px 6px;
        border-radius: 9px;
        font-size: 12px;
        font-weight: 500;
        color: var(--text-muted);
        cursor: pointer;
        transition: color var(--transition-fast), background var(--transition-fast);
}

.sidebar-link-main span.label {
  display: inline-flex;
        align-items: center;
        gap: 6px;
}

.sidebar-link-main span.dot {
  width: 7px;
        height: 7px;
        border-radius: 999px;
        background: rgba(148, 163, 184, 0.7);
}

.sidebar-link-main .chevron {
  font-size: 10px;
        opacity: 0.7;
}

.sidebar-link-main.active {
  background: linear-gradient(90deg, rgba(127, 90, 240, 0.2), rgba(56, 189, 248, 0.12));
        color: #e5e7eb;
}

.sidebar-link-main.active span.dot {
  background: var(--accent);
        box-shadow: 0 0 0 3px rgba(127, 90, 240, 0.4);
}

.sidebar-sub {
  list-style: none;
        margin-top: 4px;
        padding-left: 14px;
        display: flex;
        flex-direction: column;
        gap: 4px;
}

.sidebar-sub a {
  font-size: 11px;
        padding: 3px 6px;
        border-radius: 9px;
        color: var(--text-muted);
        display: block;
        transition: background var(--transition-fast), color var(--transition-fast);
}

.sidebar-sub a:hover {
  background: rgba(15, 23, 42, 0.95);
        color: #e5e7eb;
}

.sidebar-sub a.sub-active {
  background: rgba(15, 23, 42, 0.95);
        color: #e5e7eb;
}

.content {
  border-radius: var(--radius-xl);
        background: rgba(15, 23, 42, 0.96);
        border: 1px solid rgba(148, 163, 184, 0.35);
        box-shadow: var(--shadow-soft);
        padding: 18px 18px 22px;
}

.section:last-of-type {
  border-bottom: none;
}

.section-title span {
  background: linear-gradient(90deg, #e5e7eb, #a855f7);
        -webkit-background-clip: text;
        color: transparent;
}

.section-tag {
  font-size: 11px;
        padding: 3px 8px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.4);
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.14em;
}

.section-body {
  font-size: 14px;
        color: var(--text-muted);
}

.section-body p {
  margin-bottom: 8px;
}

.section-body mark {
  background: transparent;
        color: #fde68a;
        font-weight: 500;
}

.section-body strong {
  color: #e5e7eb;
        font-weight: 500;
}

.grid-two {
  display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 14px;
        margin-top: 8px;
}

.info-table {
  width: 100%;
        border-collapse: collapse;
        margin-top: 8px;
        font-size: 13px;
        background: rgba(15, 23, 42, 0.98);
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid rgba(30, 64, 175, 0.65);
}

.info-table tbody tr:nth-child(odd) {
  background: rgba(15, 23, 42, 0.98);
}

.info-table tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.92);
}

.info-table td {
  padding: 7px 11px;
        border-bottom: 1px solid rgba(30, 64, 175, 0.5);
        vertical-align: top;
}

.info-table tr:last-child td {
  border-bottom: none;
}

.info-table td:first-child {
  width: 40%;
        font-weight: 500;
        color: #e5e7eb;
}

.info-table td:last-child {
  color: var(--text-muted);
}

.img-frame {
  margin-top: 8px;
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid rgba(30, 64, 175, 0.7);
}

.big-table-wrapper {
  margin-top: 10px;
        border-radius: 16px;
        border: 1px solid rgba(30, 64, 175, 0.7);
        overflow: hidden;
        background: rgba(15, 23, 42, 0.96);
}

.big-table {
  width: 100%;
        border-collapse: collapse;
        font-size: 13px;
}

.big-table th,
    .big-table td {
  padding: 8px 10px;
        border-bottom: 1px solid rgba(30, 64, 175, 0.5);
        vertical-align: top;
        text-align: left;
}

.big-table th {
  text-transform: uppercase;
        letter-spacing: 0.12em;
        font-size: 11px;
        color: var(--text-muted);
        background: rgba(15, 23, 42, 0.98);
}

.big-table tr:nth-child(odd) {
  background: rgba(15, 23, 42, 0.95);
}

.big-table tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.9);
}

.big-table tr:last-child td {
  border-bottom: none;
}

.big-table .itemname {
  color: #e5e7eb;
        font-weight: 500;
}

.hero-card-title {
  font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: #f9fafb;
        margin-bottom: 6px;
}

.hero-card-sub {
  font-size: 12px;
        color: var(--text-muted);
        margin-bottom: 10px;
}

.hero-card-list {
  list-style: none;
        font-size: 12px;
        color: var(--text-muted);
        display: flex;
        flex-direction: column;
        gap: 4px;
}

.hero-card-list li::before {
  content: "• ";
        color: var(--accent);
}

.page-layout-downloads {
  max-width: var(--max-width);
        margin: 6px auto 0 auto;
        padding: 0 20px 30px;
        display: grid;
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
        gap: 24px;
}

.downloads-main {
  border-radius: var(--radius-xl);
        background: rgba(15, 23, 42, 0.96);
        border: 1px solid rgba(148, 163, 184, 0.35);
        box-shadow: var(--shadow-soft);
        padding: 18px 18px 20px;
}

.downloads-side {
  border-radius: var(--radius-xl);
        background: rgba(15, 23, 42, 0.96);
        border: 1px solid rgba(148, 163, 184, 0.35);
        box-shadow: var(--shadow-soft);
        padding: 18px 18px 20px;
}

.downloads-grid {
  display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
}

.download-card {
  border-radius: 18px;
        border: 1px solid rgba(148, 163, 184, 0.45);
        background:
          radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.1), transparent 60%),
          rgba(15, 23, 42, 0.96);
        padding: 14px 13px 14px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: relative;
        overflow: hidden;
}

.download-card::before {
  content: "";
        position: absolute;
        inset: -40%;
        background-image: radial-gradient(circle at 80% 0%, rgba(127, 90, 240, 0.18), transparent 55%);
        opacity: 0.8;
        pointer-events: none;
}

.download-card-inner {
  position: relative;
        z-index: 1;
}

.download-label {
  font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: var(--text-muted);
        margin-bottom: 2px;
}

.download-name {
  font-size: 14px;
        font-weight: 600;
        margin-bottom: 4px;
}

.download-provider {
  font-size: 12px;
        color: var(--text-muted);
        margin-bottom: 4px;
}

.download-meta {
  font-size: 11px;
        color: var(--text-muted);
        margin-bottom: 8px;
}

.badge-mirror {
  display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        padding: 3px 8px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.5);
        background: rgba(15, 23, 42, 0.9);
        margin-bottom: 6px;
}

.badge-mirror span.dot {
  width: 8px;
        height: 8px;
        border-radius: 999px;
        background: var(--accent);
}

.btn-download {
  border-radius: 999px;
        padding: 8px 14px;
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        border: 1px solid transparent;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background:
          radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.35), transparent 55%),
          linear-gradient(90deg, var(--accent), var(--accent-strong));
        color: #f9fafb;
        box-shadow: 0 10px 26px rgba(79, 70, 229, 0.7);
        transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
  	  width: 180px;
  	  justify-content: center;
  	  white-space: nowrap;
}

.btn-download:hover {
  transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(79, 70, 229, 0.9);
}

.btn-download svg {
  width: 14px;
        height: 14px;
        fill: currentColor;
}

.badge-mini {
  display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 3px 8px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.4);
        background: rgba(15, 23, 42, 0.96);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-muted);
        margin-bottom: 6px;
}

.side-title {
  font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        margin-bottom: 6px;
}

.side-text {
  font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 10px;
}

.side-list {
  list-style: none;
        font-size: 12px;
        color: var(--text-muted);
        display: flex;
        flex-direction: column;
        gap: 5px;
}

.side-list li::before {
  content: "• ";
        color: var(--accent);
}

.side-box {
  margin-top: 12px;
        border-radius: 14px;
        border: 1px dashed rgba(148, 163, 184, 0.5);
        background: rgba(15, 23, 42, 0.9);
        padding: 10px 12px;
        font-size: 12px;
        color: var(--text-muted);
}

.side-highlight {
  margin-top: 10px;
        border-radius: 14px;
        border: 1px solid rgba(56, 189, 248, 0.7);
        background: radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.18), transparent 60%),
                    rgba(15, 23, 42, 0.98);
        padding: 10px 12px;
        font-size: 12px;
        color: #e0f2fe;
}

.side-steps {
  margin-top: 10px;
        font-size: 12px;
        color: var(--text-muted);
        display: flex;
        flex-direction: column;
        gap: 4px;
}

.side-steps span.step-label {
  font-weight: 500;
        color: #e5e7eb;
}

.page-layout-donations {
  max-width: var(--max-width);
        margin: 6px auto 0 auto;
        padding: 0 20px 30px;
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
        gap: 24px;
}

.donations-main {
  border-radius: var(--radius-xl);
        background: rgba(15, 23, 42, 0.96);
        border: 1px solid rgba(148, 163, 184, 0.35);
        box-shadow: var(--shadow-soft);
        padding: 18px 18px 20px;
}

.donations-side {
  border-radius: var(--radius-xl);
        background: rgba(15, 23, 42, 0.96);
        border: 1px solid rgba(148, 163, 184, 0.35);
        box-shadow: var(--shadow-soft);
        padding: 18px 18px 20px;
}

.textarea-field {
  border-radius: 14px;
  	  min-height: 70px;
  	  resize: vertical;
}

.form-title {
  font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-bottom: 4px;
}

.form-subtitle {
  font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 14px;
}

.donation-card {
  border-radius: 16px;
        border: 1px solid rgba(148, 163, 184, 0.45);
        background: radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.12), transparent 55%),
                    rgba(15, 23, 42, 0.96);
        padding: 16px 14px 18px;
}

.form-header h3 {
  font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        margin-bottom: 4px;
}

.form-header p {
  font-size: 12px;
        color: var(--text-muted);
        margin-bottom: 10px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 4px;
        color: #e5e7eb;
}

.form-group small {
  display: block;
        font-size: 11px;
        color: var(--text-muted);
        margin-top: 2px;
}

.input-field,
    .select-field {
  width: 100%;
        border-radius: 999px;
        padding: 8px 12px;
        border: 1px solid rgba(148, 163, 184, 0.6);
        background: rgba(15, 23, 42, 0.95);
        color: #e5e7eb;
        font-size: 13px;
        outline: none;
        transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out, background 0.16s ease-out;
}

.input-field::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.input-field:focus,
    .select-field:focus {
  border-color: var(--accent);
        box-shadow: 0 0 0 1px rgba(127, 90, 240, 0.6);
        background: rgba(15, 23, 42, 0.98);
}

.input-field.error,
    .select-field.error {
  border-color: var(--danger);
        box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.6);
}

.select-field {
  appearance: none;
        background-image:
          linear-gradient(45deg, transparent 50%, #9ca3af 50%),
          linear-gradient(135deg, #9ca3af 50%, transparent 50%);
        background-position:
          calc(100% - 16px) 11px,
          calc(100% - 11px) 11px;
        background-size: 6px 6px, 6px 6px;
        background-repeat: no-repeat;
        cursor: pointer;
}

.form-row-2 {
  display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
}

.btn-primary.full {
  width: 100%;
        justify-content: center;
        margin-top: 4px;
}

.form-message {
  margin-top: 6px;
        font-size: 12px;
        min-height: 16px;
}

.form-message.error {
  color: var(--danger);
}

.form-message.ok {
  color: var(--success);
}

.hint {
  font-size: 11px;
        color: var(--text-muted);
        margin-top: 6px;
}

.swal2-popup {
  background: #020617 !important;
        border-radius: 1.5rem !important;
        border: 1px solid #1f2933 !important;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9) !important;
        color: #e5e7eb !important;
        padding: 2.5rem 2.75rem !important;
        font-family: "Montserrat", system-ui, sans-serif;
}

.swal2-title {
  font-size: 1.3rem !important;
        font-weight: 700 !important;
        color: #f9fafb !important;
        margin-bottom: 0.75rem !important;
}

.swal2-html-container {
  font-size: 0.9rem !important;
        color: #9ca3af !important;
        margin-top: 0 !important;
}

.swal2-confirm {
  border-radius: 9999px !important;
        background: linear-gradient(to right, #f59e0b, #fb923c) !important;
        color: #020617 !important;
        font-weight: 600 !important;
        padding: 0.55rem 2.2rem !important;
        box-shadow: 0 0 25px rgba(248, 181, 0, 0.6) !important;
        border: none !important;
}

.swal2-confirm:hover {
  filter: brightness(1.05) !important;
}

.swal2-actions {
  margin-top: 1.7rem !important;
}

.swal2-icon.swal2-error {
  border-color: #f97316 !important;
        color: #f97316 !important;
}

.swal2-icon.swal2-warning {
  border-color: #facc15 !important;
        color: #facc15 !important;
}

.swal2-icon.swal2-success {
  border-color: #22c55e !important;
        color: #22c55e !important;
}

.swal2-backdrop-show {
  background: rgba(0, 0, 0, 0.85) !important;
}

.page-layout-accounts {
  max-width: var(--max-width);
        margin: 6px auto 0 auto;
        padding: 0 20px 30px;
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
        gap: 24px;
}

.accounts-main {
  border-radius: var(--radius-xl);
        background: rgba(15, 23, 42, 0.96);
        border: 1px solid rgba(148, 163, 184, 0.35);
        box-shadow: var(--shadow-soft);
        padding: 18px 18px 20px;
}

.accounts-side {
  border-radius: var(--radius-xl);
        background: rgba(15, 23, 42, 0.96);
        border: 1px solid rgba(148, 163, 184, 0.35);
        box-shadow: var(--shadow-soft);
        padding: 18px 18px 20px;
}

.form-grid {
  display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
}

.form-card {
  border-radius: 16px;
        border: 1px solid rgba(148, 163, 184, 0.4);
        background: radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.1), transparent 55%), rgba(15, 23, 42, 0.96);
        padding: 14px 14px 16px;
}

.input-field {
  width: 100%;
        border-radius: 999px;
        padding: 8px 12px;
        border: 1px solid rgba(148, 163, 184, 0.6);
        background: rgba(15, 23, 42, 0.95);
        color: #e5e7eb;
        font-size: 13px;
        outline: none;
        transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out, background 0.16s ease-out;
}

.input-field:focus {
  border-color: var(--accent);
        box-shadow: 0 0 0 1px rgba(127, 90, 240, 0.6);
        background: rgba(15, 23, 42, 0.98);
}

.input-field.error {
  border-color: var(--danger);
        box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.6);
}

.checkbox-label {
  display: flex;
  	  align-items: flex-start;
  	  gap: 8px;
  	  font-size: 12px;
  	  color: var(--text-muted);
}

.checkbox-label input {
  margin-top: 2px;
}

@media (max-width: 1000px) {

  .page-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .sidebar {
    position: static;
            max-height: none;
  }

}


@media (max-width: 640px) {

  .hero {
    padding-inline: 14px;
  }

  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-two-cols {
    padding-inline: 14px;
  }

  .site-footer {
    padding-inline: 14px;
  }

  .page-layout {
    padding-inline: 14px;
  }

  .page-layout-downloads {
    padding-inline: 14px;
  }

  .downloads-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-layout-donations {
    padding-inline: 14px;
  }

  .page-layout-accounts {
    padding-inline: 14px;
  }

}


@media (max-width: 800px) {

  .grid-two {
    grid-template-columns: minmax(0, 1fr);
  }

}


@media (max-width: 900px) {

  .social-bar {
    display: none;
  }

  .nav-inner {
    padding-inline: 14px;
  }

  .nav-links {
    position: fixed;
            inset: 58px 14px auto 14px;
            padding: 14px;
            border-radius: 16px;
            background: rgba(15, 23, 42, 0.98);
            border: 1px solid rgba(148, 163, 184, 0.35);
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
            flex-direction: column;
            align-items: flex-start;
            transform-origin: top center;
            transform: scaleY(0.6);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.16s ease-out, transform 0.16s ease-out;
  }

  .nav-links.open {
    opacity: 1;
            pointer-events: auto;
            transform: scaleY(1);
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

}


@media (max-width: 980px) {

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-two-cols {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-layout-downloads {
    grid-template-columns: minmax(0, 1fr);
  }

  .downloads-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-layout-donations {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-layout-accounts {
    grid-template-columns: minmax(0, 1fr);
  }

}


@media (min-width: 800px) {

  .form-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

}


/* Utilities (replacing former inline styles) */
.btn-sm { padding: 6px 14px; font-size: 12px; }

.u-mt-4 { margin-top: 4px; }
.u-mt-6 { margin-top: 6px; }
.u-mt-8 { margin-top: 8px; }
.u-mt-10 { margin-top: 10px; }
.u-mt-12 { margin-top: 12px; }

.u-mb-4 { margin-bottom: 4px; }
.u-mb-6 { margin-bottom: 6px; }

.u-my-4 { margin-top: 4px; margin-bottom: 4px; }
.u-m-10-0-4 { margin: 10px 0 4px; }

.u-row-10 { display: flex; align-items: center; gap: 10px; }


/* Page-scoped overrides (to preserve per-page layouts) */

body.page-features { --bg-main: #000000; }

body.page-home .hero-inner {
  display: grid;
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
        gap: 28px;
        align-items: center;
}

body.page-home .hero-title {
  font-size: clamp(30px, 3.3vw, 38px);
        line-height: 1.1;
        margin-bottom: 10px;
}

body.page-home .hero-title span {
  background: linear-gradient(120deg, #e5e7eb, #facc15, #a855f7);
        -webkit-background-clip: text;
        color: transparent;
}

body.page-home .hero-subtitle {
  font-size: 15px;
        color: var(--text-muted);
        max-width: 620px;
        margin-bottom: 16px;
}

body.page-home .hero-meta {
  display: flex;
        flex-wrap: wrap;
        gap: 12px;
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 4px;
}

body.page-features .hero-card-title { margin-bottom: 0; }

body.page-features .hero-card-sub { margin-bottom: 0; }

body.page-accounts .form-group { margin-bottom: 8px; }

body.page-donaciones .side-highlight {
  margin-top: 10px;
        border-radius: 14px;
        border: 1px solid rgba(234, 179, 8, 0.7);
        background: radial-gradient(circle at 10% 0%, rgba(250, 204, 21, 0.16), transparent 60%),
                    rgba(15, 23, 42, 0.98);
        padding: 10px 12px;
        font-size: 12px;
        color: #facc15;
}

body.page-home .section {
  max-width: var(--max-width);
        margin: 6px auto 0 auto;
        padding: 0 20px 26px;
}

body.page-features .section {
  padding: 18px 4px 10px;
        border-bottom: 1px solid rgba(30, 64, 175, 0.55);
        border-image: linear-gradient(90deg, rgba(129, 140, 248, 0.1), rgba(129, 140, 248, 0.7), rgba(129, 140, 248, 0.1)) 1;
}

body.page-home .section-header {
  display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 12px;
        margin-bottom: 14px;
}

body.page-features .section-header {
  display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 8px;
}

body.page-home .section-title {
  font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
}

body.page-features .section-title {
  font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
}

body.page-play .section-title {
  font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-bottom: 4px;
}

body.page-home .section-subtitle {
  font-size: 13px;
        color: var(--text-muted);
}

body.page-play .section-subtitle {
  font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 14px;
}


@media (max-width: 640px) {

  body.page-home .section {
    padding-inline: 14px;
  }

}
