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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #0b0e14;
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #161b22;
    border-bottom: 1px solid #30363d;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon {
    width: 32px;
    height: 32px;
    object-fit: contain; /* Ensures logo doesn't stretch */
}

.nav-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
}

.docs-btn {
    background-color: #238636;
    color: white;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.docs-btn:hover {
    opacity: 0.85;
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.center-content {
    text-align: center;
    max-width: 600px;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #94a3b8;
}

.discord-container {
    margin-top: 2.5rem;
}

footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #484f58;
    border-top: 1px solid #30363d;
}