:root {
    --bg-color: #0a0a0f;
    --text-color: #ffffff;
    --primary-color: #8B5CF6;
    /* Purple */
    --secondary-color: #EC4899;
    /* Pink */
    --accent-color: #F472B6;
    /* Light pink */
    --glass-bg: rgba(139, 92, 246, 0.1);
    --glass-border: rgba(236, 72, 153, 0.2);
    --font-main: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    text-transform: uppercase;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.neon-text {
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

/* Navigation */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 15px 30px;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    position: relative;
    padding: 5px 0;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    transition: all var(--transition-speed);
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

/* Features */
.feature-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.icon-glow {
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Stats */
.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    margin-top: 80px;
    padding: 40px 0 20px;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-logo h2 {
    margin-bottom: 10px;
}

.footer-logo p {
    text-transform: uppercase;
}

.link-group h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.link-group a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.link-group a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float {
    animation: float 6s ease-in-out infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Background Particles */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0f 100%);
}

/* Command Page Styles */
.page-header {
    padding: 120px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 30px auto 0;
}

.search-container input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-speed);
    text-transform: uppercase;
}

.search-container input::placeholder {
    text-transform: uppercase;
}

.search-container input:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
}

.search-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.category-block {
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-block:hover {
    transform: translateY(-5px);
}

.category-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-header i {
    font-size: 1.5rem;
}

.gradient-bg-1 {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), transparent);
    border-left: 4px solid var(--primary-color);
}

.gradient-bg-2 {
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.2), transparent);
    border-left: 4px solid var(--secondary-color);
}

.gradient-bg-3 {
    background: linear-gradient(90deg, rgba(244, 114, 182, 0.2), transparent);
    border-left: 4px solid var(--accent-color);
}

.command-list {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.command-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.command-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cmd-name {
    display: block;
    font-family: monospace;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.cmd-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* Premium Page Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.pricing-card {
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.5);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.perks-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.perks-list li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

```css

/* Command Page Styles */
.page-header {
    padding: 120px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 30px auto 0;
}

.search-container input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-speed);
    text-transform: uppercase;
}

.search-container input::placeholder {
    text-transform: uppercase;
}

.search-container input:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
}

.search-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.category-block {
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-block:hover {
    transform: translateY(-5px);
}

.category-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-header i {
    font-size: 1.5rem;
}

.gradient-bg-1 {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), transparent);
    border-left: 4px solid var(--primary-color);
}

.gradient-bg-2 {
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.2), transparent);
    border-left: 4px solid var(--secondary-color);
}

.gradient-bg-3 {
    background: linear-gradient(90deg, rgba(244, 114, 182, 0.2), transparent);
    border-left: 4px solid var(--accent-color);
}

.command-list {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.command-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.command-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cmd-name {
    display: block;
    font-family: monospace;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.cmd-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* Premium Page Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.pricing-card {
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.5);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.perks-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.perks-list li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.perks-list li i {
    color: var(--secondary-color);
}

.perks-list li.disabled {
    color: rgba(255, 255, 255, 0.3);
}

.perks-list li.disabled i {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        display: block;
        font-size: 0.9rem;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.3rem;
        cursor: pointer;
    }

    nav {
        top: 10px;
        padding: 12px 20px;
        width: 95%;
    }

    .container {
        padding: 0 16px;
    }

    /* Typography Scaling */
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    /* Hero Section */
    .hero {
        padding-top: 90px;
        min-height: auto;
        display: block;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    /* Feature Cards - Vertical with Gap */
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .feature-card {
        padding: 25px;
        margin-bottom: 0;
    }

    /* Stats - Horizontal Layout */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        text-align: center;
        padding-bottom: 40px;
    }

    .stat-item h3 {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .stat-item p {
        font-size: 0.7rem;
    }

    /* Footer - Horizontal & Compact */
    footer {
        margin-top: 30px;
        padding: 20px 0 15px;
    }

    .footer-content {
        display: flex;
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .footer-logo {
        flex: 0 0 auto;
    }

    .footer-logo h2 {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .footer-logo p {
        font-size: 0.6rem;
        opacity: 0.7;
    }

    .footer-links {
        display: flex;
        flex-direction: row;
        gap: 15px;
        flex: 1;
        justify-content: flex-end;
    }

    .link-group {
        text-align: left;
    }

    .link-group h4 {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .link-group a {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }

    .footer-bottom {
        margin-top: 15px;
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 0.65rem;
    }

    /* Other Pages */
    .page-header {
        padding: 100px 0 30px;
    }

    .command-list {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }

    .nav-links {
        display: flex;
        gap: 30px;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 50px;
        padding: 100px 20px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        text-align: center;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-links {
        display: flex;
        gap: 50px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .stat-item h3 {
        font-size: 1.2rem;
    }

    .features-grid {
        gap: 25px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-logo h2 {
        font-size: 0.9rem;
    }

    .footer-logo p {
        font-size: 0.55rem;
    }

    .link-group h4 {
        font-size: 0.65rem;
    }

    .link-group a {
        font-size: 0.6rem;
    }

    .footer-bottom p {
        font-size: 0.6rem;
    }
}

```