:root {
    --primary-color: #43b581;
    --primary-glow: rgba(67, 181, 129, 0.3);
    --accent-color: #7289da;
    --bg-dark: #0a0f0a;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background: linear-gradient(rgba(10, 15, 10, 0.493), rgba(10, 15, 10, 0.575)), 
                url('https://lynobot.wordpress.com/wp-content/uploads/2026/01/banner.png');
    background-size: cover;
    background-attachment: fixed;
    color: #f0f0f0;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-logo { font-size: 1.5rem; font-weight: bold; color: var(--primary-color); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 25px; margin: 0; }
.nav-links a { text-decoration: none; color: #ccc; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: white; }

.nav-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 18px;
    border-radius: 20px;
}

.container { padding: 150px 20px 50px; text-align: center; max-width: 1100px; margin: 0 auto; }

.bot-avatar img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(67, 181, 129, 0.4);
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; margin-bottom: 10px; }
.tagline { font-size: 1.2rem; color: #aaa; margin-bottom: 30px; }

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    font-size: 1rem;
    margin: 5px;
    text-decoration: none;
    display: inline-block;
}
.btn-primary { background: var(--primary-color); color: white; }
.btn-outline { background: transparent; border: 2px solid white; color: white; }
.btn:hover { transform: scale(1.05); box-shadow: 0 0 20px var(--primary-glow); }

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.section-title { 
    color: #ffffff;       
    font-size: 2.5rem;      
    font-weight: 800;     
    text-transform: uppercase;  
    letter-spacing: 3px;       
    margin: 80px 0 40px;  
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2); 
    width: 100%;  
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0), 0 0 20px var(--primary-glow);
}

.feat-card i { font-size: 2.5rem; margin-bottom: 15px; }
.icon-gold { color: #ffd700; }
.icon-red { color: #ff4757; }
.icon-blue { color: #1e90ff; }
.icon-pink { color: #ff6b81; }

.glass-panel {
    background: rgba(0, 0, 0, 0.4);
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.cmd-item {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
}

.cmd-item code { color: var(--primary-color); font-weight: bold; }

footer {
    margin-top: 100px;
    padding: 60px 40px;
    border-top: 1px solid var(--glass-border);
    color: #666;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.server-slider-container { 
    margin-top: 80px; 
    width: 100%; 
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.slider {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    background: transparent;
}

.slide-track { 
    display: flex; 
    width: calc(290px * 8); 
    animation: scroll 20s linear infinite; 
}

.server-card {
    width: 260px;
    min-width: 260px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    margin: 0 15px; 
    border: 1px solid var(--glass-border);
    transition: 0.3s ease;
}

.server-card img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.sv-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.sv-info span {
    font-weight: bold;
    font-size: 0.95rem;
    color: white;
}

.sv-info small {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.slide-track { 
    display: flex; 
    width: calc(290px * 8); 
    animation: scroll 25s linear infinite; 
}

.slider-title { 
    color: #ffffff; 
    font-size: 2.0rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 10px; 
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0); 
}

@keyframes scroll {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(calc(-290px * 4)); 
    }
}

.slider:hover .slide-track {
    animation-play-state: paused;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    padding: 30px;
    position: relative;
}

.step-num {
    width: 40px;
    height: 40px;
    background: #43b581;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(67, 181, 129, 0.5);
}

.powerful-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    text-align: left;
}

.p-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 4px solid #43b581;
    transition: 0.3s;
}

.p-card:hover {
    background: rgba(255, 255, 255, 0.06);
    padding-left: 35px;
}

.p-card i { font-size: 1.5rem; color: #43b581; }

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;  
    font-size: 1.2rem;     
    font-weight: bold;
    color: var(--primary-color);
}

.nav-logo img {
    width: 40px;        
    height: 40px;
    border-radius: 50%;   
    margin-bottom: 5px;   
    object-fit: cover;
}

.stats-standalone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 40px; 
    max-width: 600px; 
}

.stats-img-clean {
    width: 100%; 
    height: auto;
    filter: drop-shadow(0 0 20px rgba(67, 181, 130, 0));
    transition: transform 0.4s ease;
}

.stats-img-clean:hover {
    transform: scale(1.05); 
}

.tagline-vote {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.vote-action {
    text-align: center;
    margin-top: 20px;
}

.voto-limpio-section {
    background: transparent !important; 
    border: none !important;       
    box-shadow: none !important;    
    padding: 60px 20px;
    text-align: center;
}

.stats-standalone-container {
    background: transparent !important;
    border: none !important;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 600px; 
}

.stats-img-clean {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(67, 181, 130, 0));
    border: none !important;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    color: #ffffff; 
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-glow);
}

.separator {
    color: #ffffff;
    font-size: 0.8rem;
    user-select: none; 
}

.footer-copy {
    color: #43b581; 
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.9;
}

footer {
    padding-bottom: 40px; 
}

