/* Neon Button Design */
#app-btn, .entry-content a[href*="my-account"] {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    /*display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;*/
    padding: 1.4rem 2.8rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(59, 130, 246, 0.9));
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(139, 92, 246, 0.4),
        0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.7s both;
    border: none;
}

#app-btn::before, .entry-content a[href*="my-account"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

#app-btn:hover, .entry-content a[href*="my-account"]:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 40px rgba(139, 92, 246, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.95), rgba(139, 92, 246, 0.95));
}

#app-btn:hover::before, .entry-content a[href*="my-account"]:hover::before {
    left: 100%;
}

/* Button Pulse Effect */
#app-btn::after, .entry-content a[href*="my-account"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#app-btn:hover::after, .entry-content a[href*="my-account"]:hover::after {
    width: 500px;
    height: 500px;
    opacity: 0;
}