.btn-reddit-outline {
    background-color: transparent;
    border: 2px solid #7689c9;
    color: #FF4500;
    font-size: 1.9rem;
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 12px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-reddit-outline:hover {
    color: #FF4500;
    transform: translateY(-2px);
}

.btn-instagram-outline {
    background-color: transparent;
    border: 2px solid #7689c9;
    font-size: 1.9rem;
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    color: transparent;
    text-align: center;
}

.btn-instagram-outline:hover {
    transform: translateY(-2px);
}

.gradient-text {
    background-image: linear-gradient(90deg, #f58529, #dd2a7b, #8134af, #515bd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.btn-instagram-outline i {
    background-image: linear-gradient(90deg, #f58529, #dd2a7b, #8134af, #515bd4);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.glassy-button {
    position: relative;
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(255, 193, 7, 0.3);
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.glassy-button:hover {
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.6);
}

.glassy-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.3) 70%,
        transparent 100%
    );
    transform: rotate(25deg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.glassy-button:hover::before {
    animation: shine 1.5s ease-in-out forwards;
    opacity: 1;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }
    100% {
        transform: translateX(100%) rotate(25deg);
    }
}