.star-button {
    display: inline-block;
    background: white; /* gold */
    color: #333;
    padding: 12px 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.star-button::before {
    content: "★";
    margin-right: 8px;
    color: #ff6f00;
    font-size: 1.3em;
}

.star-button:hover {
    background-color: #ffcc00;
    color: #000;
    transform: scale(1.05);
}