* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

.stars {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
}

.floating-logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 80px;
    height: 80px;
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

nav {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    margin-top: 60px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.hero {
    position: relative;
    z-index: 5;
    text-align: left;
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: #aaa;
}

.hero p {
    font-size: 18px;
    color: #aaa;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.floating-badges {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #aaa;
    animation: floatCurve 4s ease-in-out infinite;
}

.badge:nth-child(2) {
    animation-delay: 1s;
}

.badge:nth-child(3) {
    animation-delay: 2s;
}

.badge:nth-child(4) {
    animation-delay: 3s;
}

@keyframes floatCurve {
    0% { 
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    25% { 
        transform: translateY(-20px) translateX(-10px);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) translateX(10px);
        opacity: 1;
    }
    75% { 
        transform: translateY(-25px) translateX(5px);
        opacity: 0.8;
    }
    100% { 
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: #000000;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stats {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 50px;
    margin-top: 100px;
}

.stats p {
    font-size: 18px;
    color: #aaa;
}

.stats strong {
    color: white;
    font-weight: 700;
}

.counter-number {
    display: inline-block;
}

.community-section {
    position: relative;
    z-index: 5;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.community-wrapper {
    display: flex;
    gap: 20px;
    animation: wave 8s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-10px) translateY(-5px);
    }
    50% {
        transform: translateX(10px) translateY(5px);
    }
    75% {
        transform: translateX(-5px) translateY(-3px);
    }
}

.community-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    flex-shrink: 0;
}

.community-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.community-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-badge {
    width: 20px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.community-info p {
    color: #aaa;
    font-size: 14px;
}

.integrations-section {
    position: relative;
    z-index: 5;
    padding: 80px 50px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.integrations-header {
    margin-bottom: 50px;
}

.integrations-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    opacity: 0.7;
}

.integrations-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.integrations-header p {
    font-size: 16px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.platform-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #ff0000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.platform-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.platform-card p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

.commands-section {
    position: relative;
    z-index: 5;
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.commands-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.commands-header h2 {
    font-size: 36px;
    font-weight: 700;
}

.search-container {
    position: relative;
    margin-left: auto;
}

.search-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 12px 40px 12px 20px;
    color: white;
    font-size: 14px;
    width: 300px;
    outline: none;
    transition: all 0.3s;
}

.search-input::placeholder {
    color: #666;
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.command-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.command-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 10px 20px;
    color: #aaa;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.command-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.command-tab.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.command-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.command-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

.command-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.command-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #aaa;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 12px;
    transition: all 0.3s;
    margin-left: auto;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.command-description {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.5;
}

.command-arguments {
    margin-top: 15px;
}

.command-arguments h4 {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.argument-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.argument-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 13px;
    color: #aaa;
    font-style: italic;
}

.permission-badge {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 13px;
    color: #aaa;
}

.features-section {
    position: relative;
    z-index: 5;
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.feature-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
}

.feature-item p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-badges {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }

    .hero h1 {
        font-size: 40px;
    }

    nav {
        padding: 20px 20px;
    }

    .buttons {
        flex-direction: column;
    }

    .commands-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-container {
        margin-left: 0;
        width: 100%;
    }

    .search-input {
        width: 100%;
    }

    .community-wrapper {
        flex-direction: column;
    }

    .floating-logo {
        width: 60px;
        height: 60px;
    }
}