:root {
    --bg-color: #020408;
    --text-main: #f0f6fc;
    --text-muted: #8b949e;
    --accent-coral: #ff4d4d;
    --accent-blue: #00ffff;
    --card-bg: rgba(22, 27, 34, 0.4);
    --card-border: rgba(48, 54, 61, 0.5);
    --border-radius: 12px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Vignette Glow effect around screen */
.glow-border {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 120px rgba(0, 255, 255, 0.15),
                inset 0 0 40px rgba(0, 255, 255, 0.05);
    z-index: 100;
}

/* Star field effect */
.star-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 4px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 3px);
    background-size: 550px 550px, 350px 350px;
    background-position: 0 0, 40px 60px;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
    animation: drift 100s linear infinite;
}

@keyframes drift {
    0% { background-position: 0px 0px, 40px 60px; }
    100% { background-position: 550px 550px, 390px 410px; }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 1; /* Keeps content above background */
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 80px;
}

.hero-logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.main-hero-img {
    width: 100%;
    max-width: 500px; /* Reduced from 900px to act more like a logo and less like a huge banner */
    height: auto;
    object-fit: contain;
    /* Soften the edges heavily and use screen blend to completely eliminate the box effect */
    mix-blend-mode: screen;
    mask-image: radial-gradient(60% 60% at 50% 50%, black 50%, transparent 100%);
    -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, black 50%, transparent 100%);
    filter: drop-shadow(0 0 50px rgba(0, 255, 255, 0.15));
}

.gradient-text {
    background: linear-gradient(90deg, #ff4d4d, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    color: var(--accent-coral);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem; /* Made significantly larger */
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 24px;
}

.description {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

/* Badge Section */
.badge-container {
    display: inline-flex;
    align-items: center;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    padding: 6px 16px 6px 8px;
    gap: 12px;
    transition: transform 0.2s, border-color 0.2s;
}

.badge-container:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.new-badge {
    background-color: var(--accent-coral);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Actions */
.hero-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.github-btn {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
}

.github-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.focus-section, .quick-start, .steps-section {
    margin-bottom: 80px;
}

/* Grid layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.2);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

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

/* Terminal & Code Blocks */
.terminal-container {
    background-color: #0d1117;
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.terminal-header {
    background-color: #161b22;
    padding: 0 16px;
    border-bottom: 1px solid var(--card-border);
}

.terminal-tabs {
    display: flex;
    gap: 16px;
}

.tab {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 12px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    border-bottom: 2px solid transparent;
}

.tab.active {
    color: var(--text-main);
    border-bottom-color: var(--accent-coral);
}

.terminal-body {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.terminal-body.hidden {
    display: none;
}

.terminal-body pre {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    color: #e6edf3;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
    flex-grow: 1;
}

.copy-btn {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.copy-btn:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-card {
    display: flex;
    gap: 24px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 24px;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: border-color 0.2s;
}

.step-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.step-num {
    background-color: rgba(0, 255, 255, 0.05);
    color: var(--accent-blue);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.step-content pre {
    font-family: 'JetBrains Mono', monospace;
    background-color: #0d1117;
    padding: 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #e6edf3;
    border: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .logo-title { font-size: 3rem; }
    .step-card { flex-direction: column; align-items: flex-start; gap: 16px; }
    .terminal-body { flex-direction: column; align-items: stretch; }
}
