a {
    color: #760ADB;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #F53F5E;
}

.btn-action {
    display: inline-block;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 14px 24px;
    border-radius: 12px;
    color: #760ADB !important;
    font-weight: 600;
    min-width: 280px;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    cursor: pointer;
}

#btn-random-star {
    background: var(--gradient, linear-gradient(135deg, #6366f1 0%, #760ADB 100%));
    color: white !important;
    border: none;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    filter: brightness(1.05);
    color: #F53F5E !important;
}

#btn-random-star:hover {
    color: white !important;
}

@media (max-width: 480px) {
    .btn-action {
        min-width: 100% !important;
        width: 100%;
        font-size: 15px;
        margin-bottom: 10px;
    }
}
