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

:root {
    --bg-dark: #313338;
    --bg-darker: #2b2d31;
    --bg-card: #2b2d31;
    --bg-header: #1e1f22;
    --text-white: #f2f3f5;
    --text-muted: #b5bac1;
    --text-dim: #949ba4;
    --blurple: #5865f2;
    --blurple-hover: #4752c4;
    --green: #23a559;
    --red: #f23f43;
    --yellow: #f0b95a;
    --link: #00a8fc;
    --border: #3f4147;
}

body {
    font-family: 'gg sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

a {
    color: var(--blurple);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--blurple-hover);
}

.navbar {
    background-color: var(--bg-darker);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 20px;
}

.nav-logo:hover {
    color: var(--text-white);
}

.logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

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

.nav-links a {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text-white);
}

.invite-btn {
    background-color: var(--blurple);
    color: var(--text-white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.invite-btn:hover {
    background-color: var(--blurple-hover);
    color: var(--text-white) !important;
}

.hero {
    background-color: var(--bg-darker);
    padding: 80px 24px;
    text-align: center;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.primary-btn {
    background-color: var(--blurple);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: background-color 0.2s;
}

.primary-btn:hover {
    background-color: var(--blurple-hover);
    color: var(--text-white);
}

.secondary-btn {
    background-color: var(--bg-card);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: background-color 0.2s;
}

.secondary-btn:hover {
    background-color: var(--bg-header);
    color: var(--text-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.info {
    padding: 80px 24px;
    background-color: var(--bg-dark);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center;
}

.info-stats {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.info-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    color: var(--text-muted);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background-color: var(--green);
    border-radius: 50%;
}

.info-command {
    margin-top: 24px;
    font-size: 16px;
    color: var(--text-muted);
}

.info-command code {
    background-color: var(--bg-card);
    color: var(--blurple);
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
}

.info-stats {
    display: flex;
    gap: 24px;
}

.stat {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--blurple);
    font-family: monospace;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
}

.faq {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    padding: 24px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.page-title {
    background-color: var(--bg-darker);
    padding: 60px 24px;
    text-align: center;
}

.page-title h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-title p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 40px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 16px;
}

.content-section ul {
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-section li {
    margin-bottom: 8px;
}

.content-section a {
    color: var(--blurple);
}

.content-section a:hover {
    text-decoration: underline;
}

.cta {
    padding: 100px 24px;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.primary-btn.large {
    padding: 18px 48px;
    font-size: 20px;
}

.footer {
    background-color: var(--bg-darker);
    padding: 48px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 24px;
}

.logo-small {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-links {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-copy {
    color: var(--text-dim);
    font-size: 14px;
}

@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .page-title h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .page-title h1 {
        font-size: 32px;
    }
}