/* 按鈕樣式 */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #fff;
    background-color: #aa3cff;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(170, 60, 255, 0.3);
}

.hero-btn-primary:hover {
    background-color: rgba(170, 60, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(170, 60, 255, 0.4);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #fff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn-secondary:hover {
    background-color: rgba(45, 45, 45, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}