/* Header Styles */
.header {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ADE80;
}

.logo img {
    width: 24px;
    height: 24px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4ADE80;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.discord-btn, .profile-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    color: #5865f2;
    cursor: pointer;
    transition: background 0.3s ease;
}

.discord-btn:hover, .profile-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.profile-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(45deg, #5865f2, #4ADE80);
}