/* Global Styles */
:root {
    --primary: #2B2D31;
    --secondary: #5865F2;
    --accent: #EB459E;
    --text: #FFFFFF;
    --background: #1E1F22;
    --card-bg: #313338;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: var(--primary);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 6rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.button {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background-color: var(--secondary);
    color: var(--text);
}

.button-secondary {
    background-color: var(--accent);
    color: var(--text);
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background-color: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent);
}

/* Commands Page Styles */
.commands-container {
    max-width: 1200px;
    margin: 7rem auto 2rem;
    padding: 0 2rem;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.command-category {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
}

.command-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.command-item {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ Page Styles */
.faq-container {
    max-width: 800px;
    margin: 7rem auto 2rem;
    padding: 0 2rem;
}

.faq-item {
    background-color: var(--card-bg);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--primary);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
} 

/* Commands Page Additional Styles */
.commands-header {
    margin-bottom: 2rem;
    text-align: center;
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    border: 2px solid transparent;
    border-radius: 25px;
    background-color: var(--card-bg);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s;
}

.search-box::before {
    content: '🔍';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.7;
}

.search-box input:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: rgba(88, 101, 242, 0.1);
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: var(--text);
    opacity: 0.7;
    font-style: italic;
    grid-column: 1 / -1;
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-top: 1rem;
}

/* Smooth transitions for search results */
.command-item {
    transition: all 0.3s ease;
}

.command-category {
    transition: all 0.3s ease;
}

.command-category h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.usage {
    display: block;
    font-family: monospace;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    border-radius: 5px;
    margin-top: 0.5rem;
}

/* FAQ Page Additional Styles */
.faq-list {
    margin-top: 2rem;
}

.arrow {
    transition: transform 0.3s;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.faq-answer code {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
}

.faq-answer a {
    color: var(--secondary);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Statistics Section */
.stats {
    padding: 4rem 2rem;
    background-color: var(--card-bg);
    margin: 2rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.2rem;
    color: var(--text);
    opacity: 0.8;
}

/* Responsive stats */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
} 

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }
} 

/* Command Item Enhancements */
.command-examples {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-size: 0.9rem;
}

.command-examples code {
    display: block;
    padding: 0.3rem;
    font-family: monospace;
    color: var(--accent);
}

.permission {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--secondary);
    font-style: italic;
}

.command-item {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.command-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.command-item h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.command-item:last-child {
    border-bottom: none;
} 

/* Privacy Policy Styles */
.privacy-container {
    max-width: 800px;
    margin: 7rem auto 2rem;
    padding: 0 2rem;
    color: var(--text);
}

.privacy-container h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.last-updated {
    text-align: center;
    color: var(--accent);
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-section {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.policy-section h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.policy-section code {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
}

.policy-section a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.policy-section a:hover {
    color: var(--accent);
    text-decoration: underline;
} 