 /* Custom header styles */
.waitlist-button {
    background: linear-gradient(to right, #1a1a1a, #333333);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.waitlist-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.waitlist-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #22C55E, #16A34A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.waitlist-button span {
    position: relative;
    z-index: 1;
}

.nav-link {
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #22C55E;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}