@font-face {
    font-family: 'Agrandir';
    src: url(../assets/fonts/Agrandir-Regular.otf);
}

@font-face {
    font-family: 'Agrandirlight';
    src: url(../assets/fonts/Agrandir-Narrow.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Agrandir', 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8138e2, #279aeb);
}

/* Gradient backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #ff5eeb 0%, #8138e2 50%, #279aeb 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #ff5eeb 0%, #8138e2 50%, #279aeb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff5eeb;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
}

.hamburger-icon {
    position: relative;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.hamburger-icon svg {
    position: absolute;
    top: 0; left: 0;
    width: 32px; height: 32px;
    transition: opacity 0.2s;
    cursor: pointer;
}

.hamburger-icon .icon-menu { opacity: 1; }
.hamburger.active .icon-menu { opacity: 0; }
.hamburger-icon .icon-close { opacity: 0; }
.hamburger.active .icon-close { opacity: 1; }

/* Hero Section */
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 94, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(129, 56, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(39, 154, 235, 0.1) 0%, transparent 50%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    z-index: 1;
    position: relative;
    top: 90px;
    padding-bottom: 150px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.hero-icon {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-icon-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 94, 235, 0.1), rgba(129, 56, 226, 0.1), rgba(39, 154, 235, 0.1));
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-icon-bg::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(255, 94, 235, 0.05), rgba(129, 56, 226, 0.05), rgba(39, 154, 235, 0.05));
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite 1s;
}

.hero-icon-main {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 200px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 94, 235, 0.3));
    transition: all 0.3s ease;
    border-radius: 20px;
}

.hero-icon-main:hover {
    filter: drop-shadow(0 0 30px rgba(255, 94, 235, 0.5)) drop-shadow(0 0 15px rgba(129, 56, 226, 0.3));
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-align: left;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
    text-align: left;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin: 2rem 0;
    animation: fadeInUp 1s ease 0.3s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff5eeb;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 94, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #8138e2;
}

.btn-secondary:hover {
    background: #8138e2;
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff5eeb, #8138e2, #279aeb);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #8138e2, #279aeb);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #279aeb, #ff5eeb);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #ff5eeb, #279aeb);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #8138e2, #ff5eeb);
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #279aeb, #8138e2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background: rgba(0, 0, 0, 0.95);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff5eeb;
}

/* Commands Section */
.commands {
    background: rgba(0, 0, 0, 0.9);
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.command-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.command-card.featured {
    border: 2px solid rgba(255, 94, 235, 0.3);
    background: rgba(255, 94, 235, 0.05);
}

.command-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff5eeb, #8138e2, #279aeb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.command-card:hover::before {
    opacity: 1;
}

.command-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 94, 235, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 94, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.command-name {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-weight: 700;
    color: #ff5eeb;
    font-size: 1.2rem;
    background: rgba(255, 94, 235, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 94, 235, 0.2);
}

.command-badge {
    padding: 0.3rem 0.8rem 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    bottom: 1rem;
}

.command-badge.popular {
    background: transparent;
    border: 2px solid #ff5eeb;
    color: #ff5eeb;
}
.command-badge.new {
    background: transparent;
    border: 2px solid #279aeb;
    color: #279aeb;
}
.command-badge.updated {
    background: transparent;
    border: 2px solid #00d4aa;
    color: #00d4aa;
}
.command-badge.premium {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
}

.command-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.command-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.command-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.usage-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.usage-count i {
    color: #ff5eeb;
    margin-bottom: 0.3rem;
}

.copy-command {
    background: rgba(255, 94, 235, 0.1);
    border: 1px solid rgba(255, 94, 235, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    color: #ff5eeb;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
}

.copy-command:hover {
    background: rgba(255, 94, 235, 0.2);
    transform: scale(1.1);
}

.copy-command.copied {
    background: rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.5);
    color: #00d4aa;
}

/* Quick Start Section */
.quick-start-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-start-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quick-start-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ff5eeb;
}

.quick-start-header p {
    opacity: 0.8;
    font-size: 1.1rem;
}

.quick-start-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.quick-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
}

.quick-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 94, 235, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.quick-card h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.quick-card code {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.8rem;
    color: #ff5eeb;
    margin: 0.5rem 0;
    border: 1px solid rgba(255, 94, 235, 0.2);
}

.quick-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Filtering and Search */
.command-card.hidden {
    display: none;
}

.command-card.filtered-out {
    opacity: 0.3;
    transform: scale(0.95);
    pointer-events: none;
}

.commands-controls {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.command-search {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.command-search i {
    position: absolute;
    left: 1.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    z-index: 1;
}

.command-search input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.command-search input:focus {
    outline: none;
    border-color: #ff5eeb;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 94, 235, 0.1);
}

.command-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.command-header {
    width: 100%;
    margin-bottom: 1.5rem;
}

.command-categories {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.category-btn:hover {
    border-color: rgba(255, 94, 235, 0.5);
    color: #ff5eeb;
}

.category-btn.active {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category-btn.active::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
}

/* Use Cases Section - Enhanced */
.use-cases {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 94, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(129, 56, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    cursor: pointer;
    transform-style: preserve-3d;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 94, 235, 0.1) 0%, 
        rgba(129, 56, 226, 0.05) 50%, 
        rgba(39, 154, 235, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: rgba(255, 94, 235, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 94, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.use-case-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 94, 235, 0.03) 0%, 
        rgba(129, 56, 226, 0.02) 50%, 
        rgba(39, 154, 235, 0.03) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.use-case-card:hover .use-case-background {
    background: linear-gradient(135deg, 
        rgba(255, 94, 235, 0.08) 0%, 
        rgba(129, 56, 226, 0.06) 50%, 
        rgba(39, 154, 235, 0.08) 100%);
}

.use-case-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.use-case-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(255, 94, 235, 0.2), rgba(129, 56, 226, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ff5eeb;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.use-case-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.use-case-card:hover .use-case-icon::before {
    transform: translateX(100%);
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 94, 235, 0.3), rgba(129, 56, 226, 0.3));
    box-shadow: 0 10px 25px rgba(255, 94, 235, 0.2);
}

.use-case-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 94, 235, 0.2), rgba(129, 56, 226, 0.2));
    border: 1px solid rgba(255, 94, 235, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff5eeb;
    margin-bottom: 1rem;
    align-self: flex-start;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-badge {
    background: linear-gradient(135deg, rgba(255, 94, 235, 0.3), rgba(129, 56, 226, 0.3));
    border-color: rgba(255, 94, 235, 0.5);
    transform: scale(1.05);
}

.use-case-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
    transition: color 0.3s ease;
}

.use-case-card:hover h3 {
    color: #ff5eeb;
}

.use-case-card p {
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    transition: opacity 0.3s ease;
}

.use-case-card:hover p {
    opacity: 1;
}

.use-case-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.use-case-card:hover .feature-tag {
    background: rgba(255, 94, 235, 0.1);
    border-color: rgba(255, 94, 235, 0.2);
    color: #ff5eeb;
    transform: translateY(-2px);
}

.use-case-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.use-case-stats .stat-item {
    text-align: center;
    flex: 1;
}

.use-case-stats .stat-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff5eeb;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.use-case-stats .stat-label {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-stats .stat-value {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 94, 235, 0.5);
}

.use-case-card:hover .use-case-stats .stat-label {
    opacity: 1;
    color: #ff5eeb;
}

/* Category Filter Buttons */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    border-color: rgba(255, 94, 235, 0.5);
    color: #ff5eeb;
    /* transform: translateY(-2px); */
    box-shadow: 0 5px 15px rgba(255, 94, 235, 0.2);
}

.filter-btn.active {
    position: relative;
    overflow: hidden;
    background: none; /* Remove direct background */
    border: none;
    color: #ffffff;
    /* transform: translateY(-2px); */
    box-shadow: 0 5px 20px rgba(255, 94, 235, 0.3);
    z-index: 1;
}

.filter-btn.active::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
}

/* Card Category Animation */
.use-case-card[data-category] {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.use-case-card.filtered-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Responsive Design for Use Cases */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-case-content {
        padding: 2rem;
    }
    
    .category-filters {
        margin-top: 3rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .use-case-card:hover {
        transform: translateY(-10px);
    }

    .commands-controls {
        gap: 1.5rem;
    }
    
    .command-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .command-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .command-name {
        font-size: 1rem;
    }
    
    .command-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .quick-start-cards {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.pricing {
    background: rgba(0, 0, 0, 0.95);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff5eeb, #8138e2, #279aeb);
    z-index: -1;
    margin: -2px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #ff5eeb;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    opacity: 0.9;
}

.pricing-features li::before {
    content: '✓';
    color: #ff5eeb;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq {
    background: rgba(0, 0, 0, 0.9);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background: rgba(255, 94, 235, 0.3);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(255, 94, 235, 0.4);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #ff5eeb 0%, #8138e2 50%, #279aeb 100%);
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #ff5eeb;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    display: table;
}

.footer-section a:hover {
    opacity: 1;
    color: #ff5eeb;
    transform: translateX(0px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff5eeb, #8138e2);
    transform: translateY(0px);
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-icon {
        flex: 0 0 auto;
        margin-bottom: 2rem;
    }
    
    .hero-icon-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .hero-icon-main {
        width: 150px;
        height: 150px;
    }
    
    .hero h1 {
        text-align: center;
    }
    
    .hero p {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-icon-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .hero-icon-main {
        width: 120px;
        height: 120px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .features-grid,
    .commands-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-padding {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        gap: 1rem;
        margin-bottom: 8rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-content {
        padding: 1.5rem;
    }
    
    .use-case-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .use-case-card h3 {
        font-size: 1.3rem;
    }
    
    .category-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    
    .quick-card {
        padding: 1.2rem;
    }

    .hero {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }

    .feature-card,
    .command-card,
    .use-case-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    footer {
        margin-left: 0.8rem;
    }
}