:root {
  --bg-1: #001928;
  --bg-2: #001c1c;
  --accent-green: #27fba6;
  --accent-pink: #FF3E68;
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .7);
  --glass: rgba(255, 255, 255, .06);
  --glass-strong: rgba(255, 255, 255, .12);
  --border: rgba(255, 255, 255, .14);
  --radius: 16px;
  --radius-sm: 12px;
  --container-max: 1120px
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(0, 255, 123, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(255, 4, 58, 0.12), transparent 60%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2));
  background-attachment: fixed;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all .2s ease
}

button {
  font: inherit
}

.container {
  width: min(var(--container-max), 100%);
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 47, 42, 0.551);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px
}

.brand-logo {
  height: 56px;
  width: auto
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--glass)
}

.nav-link:hover {
  background: var(--glass-strong);
  transform: translateY(-1px)
}

.main-nav .nav-link i.fa-circle {
  color: var(--accent-pink) !important;
  filter: drop-shadow(0 0 8px rgba(255, 24, 74, 0.6))
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--glass)
}

.icon-link:hover {
  background: var(--glass-strong);
  transform: translateY(-1px)
}
 
.nav-img{width:18px;height:18px;object-fit:contain;margin-right:4px}

main {
  padding-top: 12px
}

.hero {
  padding: 40px 0
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch
}

.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px)
}

.hero-left {
  padding: 20px
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: rgba(255, 255, 255, .08)
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(85, 210, 146, .15), 0 0 14px rgba(85, 210, 146, .6)
}

.status-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted)
}

.hero-title {
  margin: 14px 0 8px 0;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.1
}

.hero-sub {
  margin: 0 0 8px 0;
  color: var(--muted);
  font-weight: 600
}

.hero-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.7
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-weight: 700;
  letter-spacing: .02em;
  transition: all .2s ease;
  will-change: transform
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .08)
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-green) 0%, #1f6b54 100%);
  color: #0c1815;
  border-color: rgba(85, 210, 146, .6);
  box-shadow: 0 8px 24px rgba(85, 210, 146, .25)
}

.btn-primary:hover {
  filter: saturate(110%)
}

.btn-outline {
  background: transparent;
  border-color: rgba(85, 210, 146, .6);
  color: var(--accent-green)
}

.btn-outline:hover {
  background: rgba(85, 210, 146, .12)
}

.hero-right {
  display: flex
}

.media-frame {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius)
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.features {
  padding: 28px 0
}

.features-heading {
  text-align: center;
  margin: 0 0 14px 0;
  font-size: clamp(20px, 3.2vw, 28px)
}

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

.feature-card {
  padding: 18px
}

.feature-icon{
  width:90px;height:90px;object-fit:contain;margin-bottom:10px;filter:drop-shadow(0 4px 10px rgba(0,0,0,.35))
}

.feature-title {
  margin: 0 0 8px 0;
  font-size: 18px
}

.feature-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7
}

.commands {
  padding: 28px 0
}

.commands-heading {
  text-align: center;
  margin: 0 0 14px 0;
  font-size: clamp(20px, 3.2vw, 28px)
}

.table-wrap {
  padding: 10px
}

.cmd-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0
}

.cmd-table thead th {
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  color: var(--muted)
}

.cmd-table tbody td {
  padding: 12px 16px
}

.cmd-table tbody tr+tr td {
  border-top: 1px solid var(--border)
}

.site-footer {
  padding: 24px 0
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.disclaimer {
  font-size: 12px;
  color: var(--muted)
}

.copyright {
  text-align: center;
  color: var(--muted);
  font-size: 12px
}

.skip-anchor {
  position: relative;
  top: -80px
}

::selection {
  background: rgba(85, 210, 146, .3)
}

:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 2px
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 30px
  }

  .btn {
    width: 100%
  }

  .features-grid {
    grid-template-columns: 1fr
  }
}