.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

a.btn::after {
    content: none;
}
.btn-primary {
    background: var(--accent-primary);
    color: #09090b;
}
.btn-primary:hover {
    background: #b794fc;
    transform: translateY(-1px);
}
.btn-primary:active {
    transform: translateY(0);
}
.btn-secondary {
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}
.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: rgba(255, 255, 255, 0.1);
}
.btn-white {
    background: var(--text-primary);
    color: var(--bg-dark);
}
.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}
.btn-large {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    font-weight: 600;
}
.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: var(--radius-md);
}
a.btn {
    display: inline-flex;
}
a.btn-large {
    display: flex;
}