
.button-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}


.shiny-button {
    position: relative;
    padding: 0.3rem 1.5rem;
    background: #0f0f17;
    color: #e0e0e0;
    border: 1px solid rgba(233, 244, 246, 0.2);
    border-radius: 0.2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 25px rgba(0, 188, 212, 0.05);
    box-shadow: inset 0 1px 3px rgba(2, 20, 100, 0.05);
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    animation: infinite 2s ease-in-out;
}

.shiny-button:hover {
    transform: scale(1.05);
    background: #222338;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
}

.shiny-button .icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in-out;
    opacity: 0.7;
}

.shiny-button:hover .icon {
    transform: translate(10px, -50%);
    opacity: 1;
}

.shiny-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(0, 188, 212, 0.15), transparent);
    transition: left 0.4s ease;
}

.shiny-button:hover::before {
    left: 100%;
}

/* Variant accent borders if needed */
.shiny-button.accent {
    border-color: rgba(0, 188, 212, 0.4);
}