:root {
    --bg: #1a181a; 
    --card-bg: rgba(45, 42, 44, 0.8);
    --border: rgba(212, 203, 209, 0.2);
    --dark: #D4CBD1;
    --text-muted: rgba(163, 148, 165, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.glow {
    position: fixed;
    width: 600px;
    height: 600px;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
    border-radius: 50%;
}
.shadow-1 { top: -200px; left: -100px; background: rgba(163, 148, 165, 0.5); }
.shadow-2 { bottom: -200px; right: -100px; background:rgba(163, 148, 165, 0.5); }

.navbar {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.nav-content {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.logo-icon {
    width: 14px;
    height: 14px;
    background: var(--dark);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(163, 148, 165, 0.5);
}

.menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 25px;
    opacity: 0.7;
    transition: 0.3s;
}

.menu a:hover { opacity: 1; }

.btn-nav {
    background: var(--dark);
    color: #1a181a;
    border: none;
    padding: 8px 18px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
}

.hero {
    padding: 200px 20px 100px;
    text-align: center;
}

.badge {
    background: rgba(212, 203, 209, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--border);
}

h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 800;
    letter-spacing: -3px;
    margin: 20px 0;
}

.hero-desc {
    max-width: 550px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.btn-main {
    background: var(--dark);
    color: #1a181a;
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-main:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }

.btn-alt {
    background: transparent;
    border: 1px solid var(--border);
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 700;
    margin-left: 10px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    color: var(--dark);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px 100px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.f-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 32px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.f-card:hover {
    background: rgba(163, 148, 165, 0.1);
    border-color: rgba(255,255,255,0.4);
}

.f-icon {
    width: 50px;
    height: 50px;
    background: rgba(163, 148, 165, 0.5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.nav-content {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    padding: 10px 24px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.logo-container {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(163, 148, 165, 0.5);
}

.bot-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.stats-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 40px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid var(--border);
}

.stat-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-group h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
}

.stat-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.stat-label i {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}


.stat-sep {
    width: 1px;
    height: 30px;
    background: var(--border);
}

@media (max-width: 768px) {
    .stats-bar {
        flex-direction: column;
        border-radius: 30px;
        gap: 20px;
        padding: 30px;
    }
    .stat-sep {
        width: 40px;
        height: 1px;
    }
}

.commands-preview {
    padding: 100px 20px;
    background: transparent;
}

.commands-header {
    text-align: center;
    margin-bottom: 50px;
}

.commands-header p {
    color: var(--text-muted);
    opacity: 0.6;
}

.command-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.cmd-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cmd-card:hover {
    background: rgba(163, 148, 165, 0.1);
    border-color: rgba(163, 148, 165, 0.4);
    transform: translateY(-5px);
}

.cmd-icon {
    width: 50px;
    height: 50px;
    background: rgba(163, 148, 165, 0.5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4CBD1;
}

.cmd-content code {
    display: inline-block;
    background: transparent;
    color: #D4CBD1; 
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cmd-content p {
    font-size: 0.85rem;
    color:rgba(163, 148, 165, 0.5);
    line-height: 1.4;
}

.cmd-tag {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.3;
    font-weight: 800;
}

.dashboard-preview {
    background: transparent; 
    padding: 100px 5%;
    position: relative;
    z-index: 1;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background:rgba(163, 148, 165, 0);
    padding: 30px;
    border-radius: 40px;
}

.dash-card {
    background: var(--card-bg); 
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border);
    
    border-radius: 32px;
    padding: 30px;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.dash-card:hover {
    background: rgba(163, 148, 165, 0.1);
    border-color: rgba(163, 148, 165, 0.5);
    transform: translateY(-5px);
}

.q-item, .mini-box, .hub-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.progress-fill, .status-pill, .hub-num {
    background: #D4CBD1 !important;
    color: #1a1a1c !important;
}

.card-icon-small {
    background:rgba(163, 148, 165, 0.5);
    color: #D4CBD1;
}

.music-card { 
    grid-column: span 2; 
}

.mod-card {
    grid-column: span 1;
}

.levels-card, .stats-mini-card, .community-card {
    grid-column: span 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.now-playing {
    display: flex;
    gap: 15px;
}

.album-art {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
}

.track-info h4 { font-size: 1.1rem; font-weight: 700; }
.track-info p { font-size: 0.9rem; opacity: 0.5; }

.status-pill {
    background: rgba(163, 148, 165, 0.5);
    color: #D4CBD1; 
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.progress-area { margin: 20px 0; }

.progress-bar {
    height: 6px;
    background: #000000;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
}

.progress-fill {
    width: 65%;
    height: 100%;
    background: #D4CBD1;
    border-radius: 10px;
}

.progress-knob {
    position: absolute;
    left: 65%;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid #D4CBD1;
    border-radius: 50%;
    transform: translateX(-50%);
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.4;
    margin-top: 10px;
}

.queue-label { font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; opacity: 0.8; }
.queue-list { display: flex; gap: 12px; }

.q-item {
    background: #111;
    padding: 10px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.q-item img { width: 32px; height: 32px; border-radius: 6px; }
.q-text { font-size: 0.8rem; line-height: 1.2; }
.q-text strong { display: block; }
.q-text span { opacity: 0.5; }

.card-icon-small {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #D4CBD1;
}

.dash-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card-desc { font-size: 0.9rem; opacity: 0.5; margin-bottom: 20px; line-height: 1.4; }

.stat-mini-grid {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.mini-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 18px;
    flex: 1;
}

.mini-box strong { display: block; font-size: 1.1rem; }
.mini-box span { font-size: 0.75rem; opacity: 0.4; }

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin: 15px 0;
}

.bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: height 0.3s ease;
}

.bar:hover { background: #a394a5; }

.hub-list { display: flex; flex-direction: column; gap: 10px; }

.hub-item {
    background: #111;
    padding: 12px 16px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hub-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: #a394a5;
    background: #1c1c1e;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hub-item strong { font-size: 0.85rem; display: block; }
.hub-item p { font-size: 0.75rem; opacity: 0.4; }

@media (max-width: 1024px) {
    .grid-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-container { grid-template-columns: 1fr; }
    .music-card { grid-column: span 1; }
    .queue-list { flex-direction: column; }
}


body {
    background-color: var(--bg);
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.glow {
    position: fixed;
    width: 80vw;  
    height: 80vw;
    filter: blur(120px); 
    z-index: -1;   
    opacity: 0.4;
    border-radius: 50%;
    pointer-events: none;
}

.shadow-1 { 
    top: -10%; 
    left: -10%; 
    background: rgba(163, 148, 165, 0.2); 
    animation: move1 20s infinite alternate ease-in-out;
}

.shadow-2 { 
    bottom: -10%; 
    right: -10%; 
    background: rgba(212, 203, 209, 0.1); 
    animation: move2 25s infinite alternate ease-in-out;
}

@keyframes move1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20%, 15%) rotate(90deg); }
    100% { transform: translate(-10%, 25%) rotate(180deg); }
}

@keyframes move2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-25%, -20%); }
    100% { transform: translate(15%, -30%); }
}

.switch-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #D4CBD1;
}

.switch {
    position: relative;
    display: inline-block;
    width: 34px; 
    height: 18px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1); 
    transition: .3s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #a394a5;
}

input:checked + .slider:before {
    transform: translateX(16px);
}

.switch:hover .slider {
    background-color: rgba(255,255,255,0.2);
}
input:checked:hover + .slider {
    background-color: #b5a7b7;
}

.main-footer {
    margin: 150px 20px 20px 20px; 
    background: linear-gradient(to top, rgba(20, 18, 20, 0.95), rgba(26, 24, 26, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid var(--border); 
    border-radius: 40px; 
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%; 
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-muted), transparent);
    opacity: 0.3;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding: 0 30px;
}

.brand-description {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(212, 203, 209, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    background: var(--dark);
    color: #1a181a;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 800;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-column a:hover {
    color: var(--dark);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 80px;
    padding: 30px 30px 0;
    border-top: 1px solid rgba(212, 203, 209, 0.05);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.heart-icon {
    width: 16px;
    height: 16px;
    color: #ff4757;
    fill: #ff4757;
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .brand-description { margin: 20px auto; }
    .social-links { justify-content: center; }
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }
}

.premium-page {
    justify-content: center;
}

.premium-hero {
    text-align: center;
    padding: 140px 20px 60px;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-premium {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.price-card {
    background: rgba(45, 42, 44, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 50px 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 1px solid #FFD700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #1a181a;
    padding: 6px 15px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 900;
}

.features-list {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.features-list li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.features-list li i {
    width: 18px;
    color: #FFD700;
}

.terms-page {
    display: flex;
    flex-direction: column;
}

.terms-container {
    max-width: 850px;
    margin: 140px auto 100px;
    padding: 0 20px;
}

.terms-header {
    text-align: center;
    margin-bottom: 60px;
}

.terms-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.terms-content {
    background: rgba(45, 42, 44, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 60px;
}

.terms-section {
    margin-bottom: 50px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.section-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 203, 209, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--dark);
}

.terms-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.terms-section p {
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .terms-content {
        padding: 30px;
        border-radius: 30px;
    }
}


.error-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.error-container {
    max-width: 600px;
    width: 100%;
}

.error-glass {
    background: rgba(45, 42, 44, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 60px 40px;
}

.error-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 203, 209, 0.05);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--dark);
}

.error-icon i {
    width: 40px;
    height: 40px;
    animation: float 3s ease-in-out infinite;
}

.error-code {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-glass h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.error-glass p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 480px) {
    .error-actions {
        flex-direction: column;
    }
    .error-code {
        font-size: 4rem;
    }
}

.docs-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.docs-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    max-width: 1400px;
    margin: 120px auto 60px;
    gap: 60px;
    padding: 0 40px;
    width: 100%;
}

.docs-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.search-wrapper {
    background: rgba(212, 203, 209, 0.05);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.search-wrapper input {
    background: none;
    border: none;
    color: #fff;
    outline: none;
    width: 100%;
    font-size: 0.9rem;
}

.search-wrapper kbd {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: sans-serif;
}

.sidebar-group h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.sidebar-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sidebar-group a:hover, .sidebar-group a.active {
    color: #fff;
    transform: translateX(5px);
}

.sidebar-group a.active {
    font-weight: 800;
}

.docs-article {
    background: rgba(45, 42, 44, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 60px;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--dark);
    margin-top: 20px;
}


.step-container {
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    opacity: 0.2;
}

.step-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card {
    background: rgba(121, 192, 255, 0.05);
    border-left: 4px solid #79c0ff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.info-icon i {
    color: #79c0ff;
}

.command-box {
    background: #000;
    border: 1px solid var(--border);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.command-box code {
    color: #4ade80;
    font-family: 'Courier New', Courier, monospace;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
}

.copy-btn:hover {
    color: #fff;
}

@media (max-width: 968px) {
    .docs-layout {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .docs-sidebar {
        display: none;
    }
    .docs-article {
        padding: 40px 25px;
    }
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.help-box {
    background: linear-gradient(135deg, rgba(212, 203, 209, 0.05) 0%, rgba(212, 203, 209, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: all 0.3s ease;
}

.help-box:hover {
    border-color: rgba(212, 203, 209, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.help-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.help-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 203, 209, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.help-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.help-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.btn-support {
    background: #fff;
    color: #1a181a;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-support:hover {
    background: var(--dark);
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .help-box {
        flex-direction: column;
        text-align: center;
    }
    .help-content {
        flex-direction: column;
    }
    .btn-support {
        width: 100%;
        justify-content: center;
    }
}

.status-page {
    display: flex;
    flex-direction: column;
}

.status-container {
    max-width: 900px;
    margin: 140px auto 100px;
    padding: 0 20px;
    width: 100%;
}

.status-header {
    text-align: center;
    margin-bottom: 60px;
}

.overall-status {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

.overall-status.online { background: rgba(74, 222, 128, 0.1); color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.2); }
.status-tag.online { color: #4ade80; background: rgba(74, 222, 128, 0.1); border-radius: 8px; padding: 4px 12px; font-size: 0.8rem; }
.status-tag.maintenance { color: #fbbf24; background: rgba(251, 191, 36, 0.1); border-radius: 8px; padding: 4px 12px; font-size: 0.8rem; }

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #4ade80;
    border-radius: 20px;
    left: 0;
    top: 0;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0; }
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.status-card {
    background: rgba(45, 42, 44, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.latency { font-size: 0.8rem; color: var(--text-muted); font-family: monospace; }

.incident-history {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid var(--border);
}

.incident-item {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.incident-item:last-child { border-bottom: none; }
.incident-date { font-weight: 800; color: var(--text-muted); font-size: 0.9rem; min-width: 100px; }
.incident-details p { color: var(--text-muted); font-size: 0.9rem; margin-top: 5px; }

@media (max-width: 600px) {
    .status-grid { grid-template-columns: 1fr; }
    .incident-item { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {

    /* HERO */
    .hero {
        padding: 140px 16px 80px;
    }

    h1 {
        letter-spacing: -2px;
    }

    .hero-desc {
        font-size: 1rem;
    }

    /* BOTONES */
    .btn-main,
    .btn-alt {
        width: 100%;
        padding: 14px 20px;
    }

    .btn-alt {
        margin-left: 0;
        margin-top: 10px;
    }

    /* NAVBAR */
    .nav-content {
        gap: 16px;
        padding: 10px 16px;
        border-radius: 18px;
    }

    .menu {
        display: none; /* solo oculta links, no rompe nada */
    }

    /* CARDS GENERALES */
    .f-card,
    .cmd-card,
    .dash-card,
    .price-card,
    .terms-content,
    .docs-article,
    .error-glass {
        padding: 24px;
        border-radius: 24px;
    }

    /* STATS BAR */
    .stats-bar {
        padding: 20px;
        border-radius: 24px;
    }

    /* FOOTER */
    .main-footer {
        padding: 80px 0 30px;
        border-radius: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
