:root {
    --primary-color: #7289da;
    --secondary-color: #2c2f33;
    --background-color: #23272a;
    --text-color: #ffffff;
    --accent-color: #5865f2;
    --card-bg: #2c2f33;
    --hover-color: #5865f2;
    --gradient-start: #7289da;
    --gradient-end: #5865f2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #1a1c1e;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: rgba(26, 28, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(114, 137, 218, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.menu a:hover {
    background: rgba(114, 137, 218, 0.1);
    color: var(--primary-color);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.1) 0%, rgba(88, 101, 242, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(114, 137, 218, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-out;
    position: relative;
    z-index: 1;
}

.bot-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(114, 137, 218, 0.3);
    transition: transform 0.3s;
    border: 3px solid var(--primary-color);
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(114, 137, 218, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b9bbbe;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.secondary-btn {
    display: inline-block;
    background: rgba(114, 137, 218, 0.1);
    color: var(--text-color);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(114, 137, 218, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.secondary-btn:hover {
    background: rgba(114, 137, 218, 0.2);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.menu a i {
    margin-right: 0.5rem;
}

.command-category h3 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.faq-item h3 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.contact-info h3 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-section h3 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-section a i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.submit-btn i {
    margin-right: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(44, 47, 51, 0.5);
    transition: all 0.3s;
    text-decoration: none;
    overflow: hidden;
    padding: 5px;
}

.social-links a img {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    object-fit: cover;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-links a:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .bot-logo {
        width: 150px;
        height: 150px;
    }
    
    .features-grid,
    .commands-grid,
    .faq-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }
.feature-card:nth-child(4) { animation-delay: 0.6s; }
.feature-card:nth-child(5) { animation-delay: 0.8s; }
.feature-card:nth-child(6) { animation-delay: 1s; }

.features {
    padding: 6rem 2rem;
    background: #1a1c1e;
    position: relative;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 3px;
}

.feature-card {
    background: rgba(44, 47, 51, 0.5);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(114, 137, 218, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.2);
    border-color: var(--primary-color);
    background: rgba(44, 47, 51, 0.8);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: #b9bbbe;
    line-height: 1.6;
}

.commands {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.command-category {
    background: var(--bg-primary);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(114, 137, 218, 0.1);
}

.command-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(114, 137, 218, 0.1);
}

.command-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.command-category h3 i {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.command-count {
    background: var(--bg-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.command-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.command-category li {
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(114, 137, 218, 0.1);
}

.command-category li:hover {
    background: var(--bg-hover);
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.command-category code {
    background: var(--bg-primary);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    color: var(--primary-color);
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    border: 1px solid rgba(114, 137, 218, 0.2);
}

.commands-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-item .total-commands {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-item span:last-child {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .commands {
        padding: 2rem 1rem;
    }

    .commands-grid {
        grid-template-columns: 1fr;
    }

    .command-category {
        padding: 1.5rem;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .command-category h3 {
        font-size: 1.3rem;
    }

    .command-category li {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .commands-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
    }
}

.faq {
    padding: 6rem 2rem;
    background: #1a1c1e;
    position: relative;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(44, 47, 51, 0.5);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(114, 137, 218, 0.1);
    backdrop-filter: blur(10px);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #b9bbbe;
    line-height: 1.6;
}

.contact {
    padding: 6rem 2rem;
    background: #1a1c1e;
    position: relative;
    min-height: 100vh;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.contact-info {
    background: rgba(44, 47, 51, 0.5);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(114, 137, 218, 0.1);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(35, 39, 42, 0.5);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    border: 1px solid rgba(114, 137, 218, 0.1);
}

.info-item:hover {
    transform: translateX(10px);
    background: rgba(114, 137, 218, 0.1);
    border-color: var(--primary-color);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(114, 137, 218, 0.1);
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s;
}

.info-item:hover i {
    transform: scale(1.1);
}

.info-item p {
    color: #b9bbbe;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    background: rgba(44, 47, 51, 0.5);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(114, 137, 218, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #b9bbbe;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(35, 39, 42, 0.5);
    padding: 1rem;
    border: 1px solid rgba(114, 137, 218, 0.1);
    border-radius: 12px;
    color: var(--text-color);
    transition: all 0.3s;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(114, 137, 218, 0.2);
    background: rgba(35, 39, 42, 0.8);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-color);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.3);
}

.submit-btn i {
    transition: transform 0.3s;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        position: static;
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .info-item {
        padding: 1rem;
    }

    .info-item i {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
}

footer {
    background: #1a1c1e;
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #b9bbbe;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #b9bbbe;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(114, 137, 218, 0.1);
    color: #b9bbbe;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1c1e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease-out 2s forwards;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.loader-text {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    animation: fadeInOut 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeInOut {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}

.page-header {
    height: 40vh;
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.1) 0%, rgba(88, 101, 242, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(114, 137, 218, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.header-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-content p {
    font-size: 1.2rem;
    color: #b9bbbe;
}

.discover-btn {
    display: inline-block;
    background: rgba(114, 137, 218, 0.1);
    color: var(--text-color);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(114, 137, 218, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 1rem;
}

.discover-btn:hover {
    background: rgba(114, 137, 218, 0.2);
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.feature-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.feature-link:hover {
    transform: translateX(5px);
}

.feature-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.feature-link:hover i {
    transform: translateX(5px);
}

.menu a.active {
    background: rgba(114, 137, 218, 0.1);
    color: var(--primary-color);
}

.logo a {
    text-decoration: none;
}

.invite-btn {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-color);
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(114, 137, 218, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.invite-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.4);
    background: linear-gradient(45deg, var(--gradient-end), var(--gradient-start));
}

.invite-btn i {
    font-size: 1.2rem;
}
