:root {
    --bg-color: #050505;
    --text-color: #e2e8f0;
    --text-muted: #94a3b8;
    --primary: #009cc6;
    /* Azul Bandera Galicia / Andoriña */
    --primary-glow: rgba(0, 156, 198, 0.5);
    --secondary: #334155;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

img {
    max-width: 100%;
    height: auto;
}

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

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
}

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

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.top-left {
    top: -200px;
    left: -200px;
}

.bottom-right {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #ffffff 38%, #009cc6 38%, #009cc6 62%, #ffffff 62%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

/* Glassmorphism utility */
.glass-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85vh;
    padding: 0 5%;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}


.hero-platform {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-platform img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
}

.hero-platform .platform-info {
    display: flex;
    flex-direction: column;
}

.hero-platform .platform-label {
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-platform .platform-ver {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.text-gradient {
    background: linear-gradient(135deg, #009cc6 0%, #005f80 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 156, 198, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-color);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

/* Animación suave de flotación */
@keyframes float {
    0%   { transform: translateY(0px) rotate(-2deg); }
    50%  { transform: translateY(-18px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(-2deg); }
}

@keyframes glow-pulse {
    0%   { filter: drop-shadow(0 0 12px rgba(0, 156, 198, 0.4)); }
    50%  { filter: drop-shadow(0 0 30px rgba(0, 156, 198, 0.8)); }
    100% { filter: drop-shadow(0 0 12px rgba(0, 156, 198, 0.4)); }
}

.mockup-card {
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    animation: float 5s ease-in-out infinite;
}

.mockup-card:hover {
    animation-play-state: paused;
}

.mockup-card img {
    width: 100%;
    max-width: 420px;
    border-radius: 0;
    display: block;
    animation: glow-pulse 5s ease-in-out infinite;
}

/* Features */
.features {
    padding: 5rem 5%;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 156, 198, 0.3);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

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

/* Donate */
.donate {
    padding: 5rem 5%;
    display: flex;
    justify-content: center;
}

.donate-card {
    text-align: center;
    max-width: 700px;
    background: linear-gradient(180deg, rgba(0, 156, 198, 0.05) 0%, rgba(5, 5, 5, 0.8) 100%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 156, 198, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.donate-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(0, 156, 198, 0.1);
}

/* Nav Button Highlight - Keeping it as user liked it */
.nav-btn.nav-donate {
    background: linear-gradient(90deg, #FFDD00, #ff8c00);
    color: #000 !important;
    font-weight: 800;
    border: none;
    box-shadow: 0 0 15px rgba(255, 221, 0, 0.4);
    animation: heartbeat 2.5s infinite;
}

.nav-btn.nav-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 221, 0, 0.6);
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    5% { transform: scale(1.05); }
    10% { transform: scale(1); }
    15% { transform: scale(1.05); }
    20% { transform: scale(1); }
    100% { transform: scale(1); }
}

.donate-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.donate-card p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.donation-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-bmc {
    background: #FFDD00;
    color: #000000;
}

.btn-paypal {
    background: #00457C;
    color: #ffffff;
}

.btn-github {
    background: #24292f;
    color: #ffffff;
}
.btn-github:hover {
    background: #1a1e22;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }

    .cta-group {
        justify-content: center;
    }

    .mockup-card {
        transform: none;
        margin-top: 2rem;
    }

    h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }
}

/* --- New additions for requested features --- */

/* Centered Icons */
.feature-card .icon {
    text-align: center;
    display: block;
}

.feature-card h3, .feature-card p {
    text-align: center;
}

/* Linux Only Banner */
.linux-banner {
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: #38bdf8;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    width: 100%;
}

/* Progress Bars */
.progress-container {
    margin: 1.5rem 0;
}
.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 5px;
}

.progress-fill.in-progress {
    background: #0f172a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: progress-width 5s ease-in-out infinite alternate;
}

@keyframes progress-width {
    from { width: 30%; }
    to { width: 95%; }
}

.progress-fill.in-progress::after {
    content: '1010110101101011010110101';
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    font-weight: 900;
    color: #3b82f6;
    white-space: nowrap;
    top: 50%;
    animation: code-stream 2.5s linear infinite;
    letter-spacing: 2px;
}

@keyframes code-stream {
    0% { left: 100%; transform: translateY(-50%); }
    100% { left: -100%; transform: translateY(-50%); }
}

.progress-fill.loading {
    width: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.15) 10px,
        rgba(255, 255, 255, 0.15) 20px
    );
    background-size: 28px 28px;
    animation: moveStripes 1s linear infinite;
}

@keyframes moveStripes {
    0% { background-position: 0 0; }
    100% { background-position: 28px 0; }
}

/* Roadmap Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto 0;
    padding-left: 2rem;
    border-left: 2px solid rgba(0, 156, 198, 0.2);
}
.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.45rem;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}
.timeline-item.planned::before {
    border-color: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}
.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.timeline-content:hover {
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.15);
}
.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.timeline-header h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
}
.status-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    letter-spacing: 1px;
}
.status-badge.in-progress {
    background: rgba(0, 156, 198, 0.15);
    color: var(--primary);
}
.status-badge.planned {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}
.timeline-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Legal & Join */
.legal-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
}
.legal-footer a {
    color: var(--text-muted);
    text-decoration: underline;
}
.legal-footer a:hover {
    color: var(--primary);
}

/* Progress Testing */
.progress-fill.testing {
    background: linear-gradient(90deg, #f59e0b, #d97706);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}
.progress-fill.testing::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-size: 20px 20px;
    animation: moveStripesTesting 1s linear infinite;
}
@keyframes moveStripesTesting {
    from { background-position: 0 0; }
    to { background-position: 40px 0; }
}

.status-badge.testing {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

/* Feature Card Bug Alert */
.feature-card-bug {
    border-color: rgba(239, 68, 68, 0.5) !important;
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.05) 0%, rgba(5, 5, 5, 0.8) 100%) !important;
}
.bug-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
    border: 1px solid rgba(239, 68, 68, 0.4);
}
.icon-bug svg {
    stroke: #ef4444 !important;
}

.language-switch {
    font-size: 0.85rem;
    margin-left: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
/* --- Auto-extracted Inline Styles --- */
.system-status-banner { background: rgba(14, 165, 233, 0.15); color: #38bdf8; text-align: center; padding: 12px; font-weight: 600; border-bottom: 1px solid rgba(14, 165, 233, 0.3); font-size: 0.9rem; }
.nav-logo-container { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { height: 48px; }
.extra-features-grid { display: none; margin-top: 2rem; }
.feature-toggle-container { display: flex; justify-content: center; margin-top: 3rem; }
.w-100 { width: 100%; }
.pb-0 { padding-bottom: 0; }
.donate-card-wide { width: 100%; max-width: 1100px; text-align: center; margin: 0 auto; }
.join-header { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.fs-2rem { font-size: 2rem; }
.m-0 { margin: 0; }
.join-desc { max-width: 800px; margin: 0 auto 2.5rem; font-size: 1.1rem; line-height: 1.7; }
.beta-badge { background: var(--primary-glow); padding: 1rem 2rem; border-radius: 50px; border: 1px solid var(--primary); margin-bottom: 2.5rem; display: inline-block; }
.flex-center-wrap { justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.btn-wide-280 { width: 100%; max-width: 280px; justify-content: center; }
.btn-wide-220 { width: 100%; max-width: 220px; justify-content: center; }
.donate-card-wide-p3 { width: 100%; max-width: 1100px; text-align: center; margin: 0 auto; padding: 3rem; }
.support-grid-header { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 2rem; }
.support-col-header { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.support-icon-blue { width: 45px; height: 45px; background: var(--primary-glow); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--primary); flex-shrink: 0; }
.support-h3 { font-size: 1.5rem; margin: 0; }
.support-icon-red { width: 45px; height: 45px; background: rgba(244, 63, 94, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid #f43f5e; flex-shrink: 0; }
.fs-1-2rem { font-size: 1.2rem; }
.support-grid-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; align-items: start; }
.support-p-main { margin-bottom: 1.2rem; line-height: 1.7; font-size: 1.05rem; text-align: center; }
.support-p-sub { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; text-align: center; }
.support-list-card { background: rgba(255,255,255,0.02); padding: 1.5rem; border-radius: 12px; border: 1px solid var(--glass-border); }
.support-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.support-list-item { display: flex; gap: 10px; font-size: 0.9rem; align-items: center; justify-content: center; text-align: center; }
.text-primary { color: var(--primary); }
.support-footer { margin-top: 3rem; text-align: center; }
.flex-center-wrap-mb2 { justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-wide-200 { min-width: 200px; justify-content: center; }
.btn-wide-180 { min-width: 180px; justify-content: center; }
.support-thanks { color: var(--text-muted); font-size: 0.85rem; max-width: 600px; margin: 0 auto; }
.footer-disclaimer { font-size: 0.8rem; margin-top: 0.5rem; color: var(--text-muted); max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.4; }
.footer-copyright { font-size: 0.8rem; margin-top: 0.8rem; color: var(--text-muted); }
