@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #0d1117;
    --bg-card: #161b22;
    --text-primary: #c9d1d9;
    --text-muted: #8b949e;
    --accent: #2f81f7;
    --accent-hover: #58a6ff;
    --border: #30363d;
    --font-mono: 'Fira Code', monospace;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-hover);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 60px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
}

.brand img {
    height: 32px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links li a:hover, .nav-links li a.active {
    color: #fff;
}

/* Typography */
h1, h2, h3 {
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
}

.page-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-image img {
    width: 100%;
    display: block;
}

/* Terminals */
.terminal {
    background: #000;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #a5d6ff;
    overflow-x: auto;
    margin: 20px 0;
}

/* Grid layout for features and tools */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0 80px 0;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.btn-download {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-download:hover {
    background: var(--accent-hover);
    color: #fff;
}

/* Tool List */
.tool-list {
    margin-top: 20px;
}

.tool-item {
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
}

.tool-item:last-child {
    border-bottom: none;
}

.tool-name {
    font-family: var(--font-mono);
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
}

.tool-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Documentation Content */
.doc-section {
    margin-bottom: 60px;
}

.doc-section h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.doc-section p {
    margin-bottom: 16px;
}

ul.bullet-list {
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

ul.bullet-list li {
    margin-bottom: 8px;
}

/* Releases */
.release {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
}

.release-version {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    background: #1f6feb;
    color: #fff;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    margin-top: 80px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
