body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #181a20;
    color: #e4e6eb;
    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #23242a;
    padding: 1rem 2rem;
    border-bottom: 1px solid #232946;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #3fa7d6;
}

.nav-links button,
.nav-links .discord-btn {
    margin-left: 1rem;
    padding: 0.5rem 1.1rem;
    border: 1px solid #232946;
    border-radius: 6px;
    background: #23242a;
    color: #e4e6eb;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border 0.15s;
}

.nav-links button:hover,
.nav-links .discord-btn:hover {
    background: #282a36;
    color: #3fa7d6;
    border: 1px solid #3fa7d6;
}

.discord-btn {
    background: #232946;
    color: #3fa7d6;
    font-weight: bold;
}

#content {
    max-width: 600px;
    margin: 2rem auto;
    background: #23242a;
    border-radius: 10px;
    border: 1px solid #232946;
    box-shadow: none;
    padding: 2rem 1.5rem;
    min-height: 300px;
}

.stock-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stock-item {
    background: #232946;
    border-radius: 6px;
    padding: 1rem;
    border: 1px solid #282a36;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stock-item-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #3fa7d6;
}

.stock-item-desc {
    color: #e4e6eb;
    font-size: 1rem;
    margin-left: 1.2rem;
    flex: 1;
}

.socials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.socials-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
    background: #232946;
    border-radius: 6px;
    padding: 0.8rem 1rem;
    border: 1px solid #282a36;
}

.social-label {
    color: #3fa7d6;
    font-weight: bold;
    margin-right: 0.5rem;
}

.socials-list a {
    color: #e4e6eb;
    text-decoration: underline;
    transition: color 0.15s;
}

.socials-list a:hover {
    color: #3fa7d6;
}
