* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5900FF;
    --secondary-color: #E0E0E0;
    --accent-color: #B0B0B0;
    --bg-dark: #000000;
    --bg-card: #0A0A0A;
    --bg-card-hover: #141414;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 50%, #B0B0B0 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    background-image: 
        radial-gradient(ellipse at top left, rgba(89, 0, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(89, 0, 255, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(89, 0, 255, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(89, 0, 255, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.navbar {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    background: linear-gradient(135deg, #5900FF 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.logo h1:hover {
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
    font-size: 0.875rem;
    padding: 0.4rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links a i {
    color: var(--text-secondary);
    transition: color 0.2s;
    font-size: 0.8rem;
}

.nav-links a::after {
    display: none;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover i {
    color: var(--text-primary);
}

.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active i {
    color: var(--text-primary);
}

.btn-invite {
    background: rgba(89, 0, 255, 0.1);
    color: var(--primary-color) !important;
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s;
    white-space: nowrap;
    border: 1px solid rgba(89, 0, 255, 0.2);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
    line-height: 1;
}

.btn-invite:hover {
    background: rgba(89, 0, 255, 0.15);
    border-color: rgba(89, 0, 255, 0.3);
    color: var(--primary-color) !important;
}

.btn-invite::after {
    display: none !important;
}

.nav-links a.btn-invite {
    padding: 0.5rem 1.1rem;
    margin-left: 0.75rem;
}


.hero {
    margin-top: 70px;
    padding: 8rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    width: 100%;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #5900FF 0%, #7C3AED 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(89, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6D00FF 0%, #8B4DFF 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(89, 0, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #5900FF;
    background: linear-gradient(135deg, #5900FF 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.5rem;
}


.features {
    padding: 6rem 0;
    background: transparent;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}


.commands {
    padding: 6rem 0;
    background: transparent;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.command-category {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.command-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5900FF, transparent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.command-category:hover::before {
    transform: scaleX(1);
}

.command-category:hover {
    background: rgba(15, 15, 15, 0.8);
    border-color: rgba(89, 0, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(89, 0, 255, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.category-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.command-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.command-category ul {
    list-style: none;
}

.command-category li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(89, 0, 255, 0.1);
    color: var(--text-secondary);
}

.command-category li:last-child {
    border-bottom: none;
}

.command-category code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}


.stats {
    padding: 6rem 0;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}


.footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-section h4 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.35rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.8rem;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    font-size: 0.75rem;
    opacity: 0.7;
}


.page-header {
    margin-top: 70px;
    padding: 4rem 0;
    text-align: center;
    background: transparent;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}


.search-box {
    max-width: 500px;
    margin: 2rem auto 0;
    position: relative;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-card-hover);
}


.quick-features {
    padding: 6rem 0;
    background: transparent;
}

.features-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.preview-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.preview-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.preview-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.preview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.preview-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.preview-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.preview-link:hover {
    color: var(--primary-color);
}


.feature-section {
    padding: 4rem 0;
    background: transparent;
}

.feature-section:nth-child(even) {
    background: transparent;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-icon-large {
    font-size: 4rem;
    color: var(--primary-color);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.feature-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.feature-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}


.commands-page {
    padding: 4rem 0;
    background: transparent;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.category-header h3 {
    font-size: 1.5rem;
    margin: 0;
}


.stats-page {
    padding: 4rem 0;
    background: transparent;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}

@media (max-width: 1400px) {
    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
}

.stat-card-large {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 100px;
    height: auto;
}

.stat-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5900FF, transparent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.stat-card-large:hover::before {
    transform: scaleX(1);
}

.stat-card-large:hover {
    transform: translateY(-4px);
    background: rgba(15, 15, 15, 0.8);
    border-color: rgba(89, 0, 255, 0.3);
    box-shadow: 0 8px 24px rgba(89, 0, 255, 0.15);
}

.stat-icon-large {
    font-size: 1.7rem;
    color: #5900FF;
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(89, 0, 255, 0.1);
    border: 1px solid rgba(89, 0, 255, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-large:hover .stat-icon-large {
    background: rgba(89, 0, 255, 0.2);
    border-color: rgba(89, 0, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(89, 0, 255, 0.2);
}

.stat-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
}

.stat-value-large {
    font-size: 1.85rem;
    font-weight: 700;
    color: #5900FF;
    margin-bottom: 0.2rem;
    line-height: 1;
    letter-spacing: -0.1px;
    white-space: nowrap;
    overflow: visible;
    max-width: 100%;
    display: block;
}

.stat-label-large {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
    font-weight: 600;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

.stat-description {
    color: var(--text-secondary);
    font-size: 0.7rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.85;
}

.stats-section {
    margin-top: 4rem;
}

.stats-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}


.stats-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-card-compact {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.stat-card-compact:hover {
    transform: translateY(-3px);
    background: var(--bg-card-hover);
    border-color: var(--primary-color);
}

.stat-icon-compact {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.stat-value-compact {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label-compact {
    color: var(--text-secondary);
    font-size: 0.85rem;
}


.command-stats {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.command-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.command-stat-item:last-child {
    margin-bottom: 0;
}

.command-stat-name {
    min-width: 150px;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.command-stat-name i {
    color: var(--primary-color);
    width: 20px;
}

.command-stat-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.command-stat-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 1s ease;
}

.command-stat-percent {
    min-width: 50px;
    text-align: right;
    color: var(--text-secondary);
    font-weight: 600;
}


.cta {
    padding: 6rem 0;
    background: transparent;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}


.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-links a.active i {
    color: var(--primary-color);
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-card-large {
        flex-direction: column;
        text-align: center;
    }
    
    .command-stat-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .command-stat-bar {
        width: 100%;
    }
}


html {
    scroll-behavior: smooth;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.command-category,
.stat-card {
    animation: fadeIn 0.6s ease-out;
}

