:root {
    --primary: #58A6FF;
    --secondary: #238636;
    --bg-dark: #0D1117;
    --glass: rgba(22, 27, 34, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #CDD9E5;
    --text-bright: #FFFFFF;
}

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

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

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    color: var(--text-bright);
}

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.3;
    animation: move 20s infinite alternate;
}

.blob-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; right: -100px; }
.blob-2 { width: 300px; height: 300px; background: var(--secondary); bottom: -50px; left: -50px; animation-delay: -5s; }
.blob-3 { width: 250px; height: 250px; background: #8957e5; top: 40%; right: 20%; animation-delay: -10s; }

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 100px) scale(1.2); }
}

/* Navbar */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 10%;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo { font-size: 1.8rem; font-weight: 800; letter-spacing: 1px; }
.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Hero */
.hero { padding: 80px 10% 40px; text-align: center; max-width: 1200px; margin: 0 auto; }
.badges { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.badges img { height: 28px; }
.gradient-text { font-size: 4.5rem; font-weight: 800; background: linear-gradient(90deg, #fff, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.3rem; margin-bottom: 1rem; }
.author-credit { font-size: 0.9rem; color: var(--text-main); opacity: 0.6; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary, .btn-secondary, .btn-small { padding: 0.8rem 1.8rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-primary { background: var(--primary); color: white; }
.btn-secondary { border: 1px solid var(--glass-border); color: white; background: var(--glass); }
.btn-small { padding: 0.5rem 1.2rem; background: var(--secondary); color: white; }

/* Sections */
.content-section { padding: 40px 10%; max-width: 1200px; margin: 0 auto; }
.glass { background: var(--glass); backdrop-filter: blur(15px); border: 1px solid var(--glass-border); border-radius: 16px; padding: 2rem; }
.card-main h2 { margin-bottom: 1rem; font-size: 2rem; }
blockquote { border-left: 4px solid var(--primary); padding-left: 1.5rem; margin: 1.5rem 0; font-style: italic; color: var(--text-bright); }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; padding: 40px 10%; max-width: 1200px; margin: 0 auto; }
.feature-card { padding: 2rem; }
.feature-card h3 { margin-bottom: 1rem; font-size: 1.4rem; color: var(--primary); }
.feature-card ul { list-style: none; }
.feature-card li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.feature-card li::before { content: "•"; color: var(--primary); margin-right: 8px; font-weight: bold; }

/* Table */
.table-wrapper { overflow-x: auto; margin-top: 1.5rem; }
table { width: 100%; border-collapse: collapse; min-width: 500px; }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--glass-border); }
th { color: var(--primary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* Lists */
.install-list { padding-left: 1.5rem; margin: 1.5rem 0; }
.install-list li { margin-bottom: 1rem; color: var(--text-bright); }
.requirements { margin-top: 1.5rem; font-size: 0.9rem; padding: 1rem; background: rgba(255,255,255,0.03); border-radius: 8px; }

/* Architecture Box */
.arch-box { background: #010409; padding: 1.5rem; border-radius: 12px; font-family: monospace; color: #79c0ff; overflow-x: auto; margin-top: 1.5rem; border: 1px solid var(--glass-border); }

/* License Grid */
.license-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.license-box { background: rgba(255,255,255,0.03); padding: 1.5rem; border-radius: 12px; border: 1px solid var(--glass-border); }
.license-box h4 { margin-bottom: 1rem; }
.license-box ul { list-style: none; font-size: 0.9rem; }
.license-footer { margin-top: 1rem; font-size: 0.9rem; opacity: 0.7; }

/* Footer */
footer { padding: 60px 10%; text-align: center; border-top: 1px solid var(--glass-border); background: var(--glass); }
.socials { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; }
.socials a { color: var(--text-main); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.socials a:hover { color: var(--primary); }

@media (max-width: 768px) {
    .gradient-text { font-size: 2.8rem; }
    .hero { padding: 60px 5%; }
    .nav-links { display: none; }
    .license-grid { grid-template-columns: 1fr; }
}
